結果

問題 No.182 新規性の虜
ユーザー TatsuDXTatsuDX
提出日時 2016-09-09 00:22:14
言語 Java21
(openjdk 21)
結果
AC  
実行時間 754 ms / 5,000 ms
コード長 498 bytes
コンパイル時間 3,876 ms
コンパイル使用メモリ 74,904 KB
実行使用メモリ 53,816 KB
最終ジャッジ日時 2024-06-08 08:28:08
合計ジャッジ時間 16,043 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 139 ms
41,636 KB
testcase_01 AC 133 ms
41,468 KB
testcase_02 AC 145 ms
41,428 KB
testcase_03 AC 144 ms
41,368 KB
testcase_04 AC 141 ms
41,064 KB
testcase_05 AC 146 ms
41,524 KB
testcase_06 AC 138 ms
40,524 KB
testcase_07 AC 143 ms
41,260 KB
testcase_08 AC 615 ms
51,308 KB
testcase_09 AC 754 ms
52,940 KB
testcase_10 AC 719 ms
52,636 KB
testcase_11 AC 654 ms
51,928 KB
testcase_12 AC 475 ms
49,308 KB
testcase_13 AC 137 ms
41,264 KB
testcase_14 AC 141 ms
41,484 KB
testcase_15 AC 131 ms
41,456 KB
testcase_16 AC 134 ms
41,140 KB
testcase_17 AC 141 ms
41,308 KB
testcase_18 AC 625 ms
49,116 KB
testcase_19 AC 560 ms
49,240 KB
testcase_20 AC 458 ms
49,024 KB
testcase_21 AC 658 ms
49,028 KB
testcase_22 AC 477 ms
49,092 KB
testcase_23 AC 137 ms
41,372 KB
testcase_24 AC 609 ms
53,816 KB
testcase_25 AC 531 ms
47,940 KB
testcase_26 AC 313 ms
47,636 KB
testcase_27 AC 134 ms
41,372 KB
evil01.txt AC 692 ms
55,056 KB
evil02.txt AC 737 ms
55,692 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.HashSet;
import java.util.Scanner;
import java.util.Set;

public class Test {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);

		Set<Integer> set1 = new HashSet<Integer>();
		Set<Integer> set2 = new HashSet<Integer>();
		int n = sc.nextInt(), tmp, cnt = 0;
		for(int i = 0; i < n; i++){
			tmp = sc.nextInt();
			if(!set1.contains(tmp)){
				set1.add(tmp);
			} else {
				set2.add(tmp);
			}
		}
		System.out.println(set1.size()-set2.size());
	}
}
0