結果

問題 No.182 新規性の虜
ユーザー TatsuDXTatsuDX
提出日時 2016-09-09 00:22:14
言語 Java
(openjdk 23)
結果
AC  
実行時間 716 ms / 5,000 ms
コード長 498 bytes
コンパイル時間 6,471 ms
コンパイル使用メモリ 75,488 KB
実行使用メモリ 54,532 KB
最終ジャッジ日時 2024-12-27 08:34:47
合計ジャッジ時間 15,947 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
41,216 KB
testcase_01 AC 132 ms
41,216 KB
testcase_02 AC 132 ms
40,892 KB
testcase_03 AC 125 ms
40,828 KB
testcase_04 AC 134 ms
41,052 KB
testcase_05 AC 140 ms
41,112 KB
testcase_06 AC 136 ms
40,876 KB
testcase_07 AC 137 ms
41,448 KB
testcase_08 AC 601 ms
51,024 KB
testcase_09 AC 716 ms
52,552 KB
testcase_10 AC 703 ms
52,092 KB
testcase_11 AC 649 ms
51,640 KB
testcase_12 AC 441 ms
49,112 KB
testcase_13 AC 131 ms
41,292 KB
testcase_14 AC 138 ms
41,412 KB
testcase_15 AC 134 ms
40,880 KB
testcase_16 AC 145 ms
41,192 KB
testcase_17 AC 141 ms
41,248 KB
testcase_18 AC 636 ms
49,020 KB
testcase_19 AC 505 ms
48,768 KB
testcase_20 AC 446 ms
48,636 KB
testcase_21 AC 597 ms
48,764 KB
testcase_22 AC 456 ms
48,796 KB
testcase_23 AC 133 ms
41,200 KB
testcase_24 AC 581 ms
54,532 KB
testcase_25 AC 594 ms
47,652 KB
testcase_26 AC 318 ms
47,416 KB
testcase_27 AC 131 ms
40,932 KB
evil01.txt AC 643 ms
55,636 KB
evil02.txt AC 636 ms
54,880 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