結果

問題 No.182 新規性の虜
ユーザー kenji_shioyakenji_shioya
提出日時 2016-06-20 22:23:11
言語 Java
(openjdk 23)
結果
AC  
実行時間 736 ms / 5,000 ms
コード長 563 bytes
コンパイル時間 7,730 ms
コンパイル使用メモリ 83,820 KB
実行使用メモリ 53,396 KB
最終ジャッジ日時 2024-12-27 05:06:35
合計ジャッジ時間 15,400 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
41,080 KB
testcase_01 AC 137 ms
41,536 KB
testcase_02 AC 135 ms
41,104 KB
testcase_03 AC 141 ms
41,212 KB
testcase_04 AC 139 ms
40,948 KB
testcase_05 AC 138 ms
41,080 KB
testcase_06 AC 138 ms
41,124 KB
testcase_07 AC 137 ms
41,268 KB
testcase_08 AC 629 ms
51,368 KB
testcase_09 AC 736 ms
53,016 KB
testcase_10 AC 706 ms
52,488 KB
testcase_11 AC 662 ms
51,608 KB
testcase_12 AC 481 ms
49,012 KB
testcase_13 AC 120 ms
41,688 KB
testcase_14 AC 126 ms
41,428 KB
testcase_15 AC 120 ms
41,496 KB
testcase_16 AC 138 ms
41,220 KB
testcase_17 AC 126 ms
40,896 KB
testcase_18 AC 604 ms
48,628 KB
testcase_19 AC 526 ms
48,712 KB
testcase_20 AC 450 ms
48,496 KB
testcase_21 AC 605 ms
48,744 KB
testcase_22 AC 464 ms
48,420 KB
testcase_23 AC 135 ms
41,208 KB
testcase_24 AC 602 ms
53,396 KB
testcase_25 AC 585 ms
48,016 KB
testcase_26 AC 323 ms
47,396 KB
testcase_27 AC 136 ms
41,300 KB
evil01.txt AC 636 ms
54,612 KB
evil02.txt AC 657 ms
55,940 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