結果

問題 No.182 新規性の虜
ユーザー htensaihtensai
提出日時 2020-05-13 10:42:31
言語 Java21
(openjdk 21)
結果
AC  
実行時間 742 ms / 5,000 ms
コード長 471 bytes
コンパイル時間 2,075 ms
コンパイル使用メモリ 75,036 KB
実行使用メモリ 52,912 KB
最終ジャッジ日時 2024-09-14 15:28:39
合計ジャッジ時間 13,969 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
40,940 KB
testcase_01 AC 115 ms
39,788 KB
testcase_02 AC 129 ms
41,160 KB
testcase_03 AC 129 ms
41,268 KB
testcase_04 AC 130 ms
41,008 KB
testcase_05 AC 132 ms
41,148 KB
testcase_06 AC 123 ms
40,124 KB
testcase_07 AC 134 ms
41,240 KB
testcase_08 AC 573 ms
51,152 KB
testcase_09 AC 742 ms
52,912 KB
testcase_10 AC 676 ms
52,392 KB
testcase_11 AC 643 ms
51,820 KB
testcase_12 AC 455 ms
49,284 KB
testcase_13 AC 134 ms
41,036 KB
testcase_14 AC 134 ms
41,236 KB
testcase_15 AC 119 ms
39,972 KB
testcase_16 AC 136 ms
41,168 KB
testcase_17 AC 136 ms
41,208 KB
testcase_18 AC 623 ms
49,080 KB
testcase_19 AC 518 ms
48,988 KB
testcase_20 AC 455 ms
48,756 KB
testcase_21 AC 612 ms
49,184 KB
testcase_22 AC 492 ms
49,000 KB
testcase_23 AC 133 ms
41,208 KB
testcase_24 AC 591 ms
52,324 KB
testcase_25 AC 566 ms
47,916 KB
testcase_26 AC 294 ms
47,636 KB
testcase_27 AC 130 ms
41,268 KB
evil01.txt AC 647 ms
54,712 KB
evil02.txt AC 680 ms
54,804 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main (String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		HashSet<Integer> singles = new HashSet<>();
		HashSet<Integer> doubles = new HashSet<>();
		for (int i = 0; i < n; i++) {
		    int x = sc.nextInt();
		    if (singles.contains(x)) {
		        doubles.add(x);
		    } else {
		        singles.add(x);
		    }
		}
		System.out.println(singles.size() - doubles.size());
	}
}
0