当前位置: 首页 > 工具软件 > horseshoe > 使用案例 >

Codeforces Is your horseshoe on the other hoof?

劳昊明
2023-12-01


题目链接:http://codeforces.com/problemset/problem/228/A



import java.util.HashMap;
import java.util.Map;
import java.util.Scanner;

public class Isyourhorseshoeontheotherhoof {

	public static void main(String[] args) {
		Scanner scanner = new Scanner(System.in);
		Map<Integer, Integer> map = new HashMap<>();
		for(int i = 0; i < 4; i++) {
			map.put(scanner.nextInt(), 1);
		}
		System.out.println(4-map.size());
	}
}


 类似资料:

相关阅读

相关文章

相关问答