結果

問題 No.182 新規性の虜
ユーザー kenji_shioyakenji_shioya
提出日時 2016-06-20 22:23:11
言語 Java21
(openjdk 21)
結果
AC  
実行時間 647 ms / 5,000 ms
コード長 563 bytes
コンパイル時間 6,573 ms
コンパイル使用メモリ 74,656 KB
実行使用メモリ 54,792 KB
最終ジャッジ日時 2024-06-08 07:12:01
合計ジャッジ時間 14,366 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
41,304 KB
testcase_01 AC 112 ms
40,964 KB
testcase_02 AC 120 ms
41,396 KB
testcase_03 AC 123 ms
41,464 KB
testcase_04 AC 112 ms
41,372 KB
testcase_05 AC 123 ms
41,228 KB
testcase_06 AC 104 ms
41,272 KB
testcase_07 AC 125 ms
41,240 KB
testcase_08 AC 524 ms
51,428 KB
testcase_09 AC 647 ms
53,032 KB
testcase_10 AC 629 ms
52,488 KB
testcase_11 AC 584 ms
51,960 KB
testcase_12 AC 421 ms
49,296 KB
testcase_13 AC 124 ms
41,252 KB
testcase_14 AC 128 ms
41,256 KB
testcase_15 AC 112 ms
41,284 KB
testcase_16 AC 124 ms
41,412 KB
testcase_17 AC 121 ms
41,520 KB
testcase_18 AC 519 ms
48,760 KB
testcase_19 AC 464 ms
48,632 KB
testcase_20 AC 371 ms
48,544 KB
testcase_21 AC 629 ms
48,716 KB
testcase_22 AC 432 ms
48,740 KB
testcase_23 AC 119 ms
41,008 KB
testcase_24 AC 520 ms
54,792 KB
testcase_25 AC 499 ms
47,800 KB
testcase_26 AC 271 ms
47,664 KB
testcase_27 AC 112 ms
41,228 KB
evil01.txt AC 595 ms
55,244 KB
evil02.txt AC 621 ms
54,976 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Exercise102{
  public static void main (String[] args){

    Scanner sc = new Scanner(System.in);

    int n = sc.nextInt();
    HashMap<Integer, Boolean> map = new HashMap<Integer, Boolean>();
    for(int i = 0; i < n; i++){
      int x = sc.nextInt();
      if(map.containsKey(x)){
        map.put(x, false);
      }else{
        map.put(x, true);
      }
    }
    int count = 0;
    for(Map.Entry<Integer, Boolean> e:map.entrySet()){
      if(e.getValue()){
        count++;
      }
    }
    System.out.println(count);
  }
}
0