結果

問題 No.182 新規性の虜
ユーザー takeya_okinotakeya_okino
提出日時 2017-06-25 14:05:55
言語 Java21
(openjdk 21)
結果
AC  
実行時間 793 ms / 5,000 ms
コード長 526 bytes
コンパイル時間 2,426 ms
コンパイル使用メモリ 75,300 KB
実行使用メモリ 54,664 KB
最終ジャッジ日時 2024-06-08 11:12:14
合計ジャッジ時間 14,945 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 137 ms
41,192 KB
testcase_01 AC 144 ms
41,616 KB
testcase_02 AC 142 ms
41,516 KB
testcase_03 AC 138 ms
41,552 KB
testcase_04 AC 135 ms
41,704 KB
testcase_05 AC 143 ms
41,672 KB
testcase_06 AC 139 ms
41,212 KB
testcase_07 AC 140 ms
41,376 KB
testcase_08 AC 603 ms
51,604 KB
testcase_09 AC 793 ms
53,428 KB
testcase_10 AC 787 ms
52,704 KB
testcase_11 AC 672 ms
52,040 KB
testcase_12 AC 460 ms
49,464 KB
testcase_13 AC 134 ms
41,512 KB
testcase_14 AC 142 ms
41,760 KB
testcase_15 AC 140 ms
41,260 KB
testcase_16 AC 141 ms
41,752 KB
testcase_17 AC 146 ms
41,716 KB
testcase_18 AC 652 ms
48,636 KB
testcase_19 AC 539 ms
48,868 KB
testcase_20 AC 464 ms
48,628 KB
testcase_21 AC 625 ms
48,792 KB
testcase_22 AC 474 ms
48,644 KB
testcase_23 AC 138 ms
41,240 KB
testcase_24 AC 630 ms
54,664 KB
testcase_25 AC 600 ms
48,016 KB
testcase_26 AC 328 ms
47,996 KB
testcase_27 AC 134 ms
41,436 KB
evil01.txt AC 695 ms
58,256 KB
evil02.txt AC 734 ms
56,240 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
  public static void main(String[] args) {
    Scanner sc = new Scanner(System.in);
    int N = sc.nextInt();
    HashMap<Integer, Integer> map = new HashMap<Integer, Integer>();
    for(int i = 0; i < N; i++) {
      int a = sc.nextInt();
      if(map.containsKey(a)) {
        map.put(a, map.get(a) + 1);
      } else {
        map.put(a, 1);
      }
    }
    int ans = 0;
    for(int key : map.keySet()) {
      if(map.get(key) == 1) ans++;
    }
    System.out.println(ans);
  }
}
0