結果

問題 No.182 新規性の虜
ユーザー _k_a_n_i__k_a_n_i_
提出日時 2015-04-23 18:58:54
言語 Java21
(openjdk 21)
結果
AC  
実行時間 699 ms / 5,000 ms
コード長 1,026 bytes
コンパイル時間 2,497 ms
コンパイル使用メモリ 75,268 KB
実行使用メモリ 54,752 KB
最終ジャッジ日時 2024-06-08 03:01:02
合計ジャッジ時間 13,519 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
40,092 KB
testcase_01 AC 126 ms
41,252 KB
testcase_02 AC 127 ms
41,356 KB
testcase_03 AC 121 ms
40,856 KB
testcase_04 AC 117 ms
40,016 KB
testcase_05 AC 134 ms
41,320 KB
testcase_06 AC 134 ms
41,348 KB
testcase_07 AC 138 ms
41,104 KB
testcase_08 AC 555 ms
51,168 KB
testcase_09 AC 699 ms
53,032 KB
testcase_10 AC 675 ms
52,444 KB
testcase_11 AC 532 ms
50,840 KB
testcase_12 AC 424 ms
49,280 KB
testcase_13 AC 116 ms
39,936 KB
testcase_14 AC 118 ms
40,016 KB
testcase_15 AC 124 ms
40,844 KB
testcase_16 AC 128 ms
41,044 KB
testcase_17 AC 136 ms
41,388 KB
testcase_18 AC 536 ms
48,548 KB
testcase_19 AC 483 ms
48,736 KB
testcase_20 AC 388 ms
48,432 KB
testcase_21 AC 594 ms
48,600 KB
testcase_22 AC 453 ms
48,516 KB
testcase_23 AC 134 ms
41,060 KB
testcase_24 AC 568 ms
54,752 KB
testcase_25 AC 486 ms
47,548 KB
testcase_26 AC 285 ms
47,692 KB
testcase_27 AC 114 ms
39,820 KB
evil01.txt AC 631 ms
55,396 KB
evil02.txt AC 652 ms
55,832 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.HashMap;
import java.util.Map;
import java.util.Scanner;

public class Main
{
    private final static Main main = new Main();

    public static void main(String[] args)
    {
        long l = System.currentTimeMillis();
        main.solve();
        //System.out.println("処理時間:" + (System.currentTimeMillis() - l));
    }

    private void solve()
    {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        Map<Integer, Integer> map = new HashMap<Integer, Integer>();
        for(int i=0; i<n; ++i)
        {
            int in = sc.nextInt();
            if(map.containsKey(in))
            {
                map.put(in, map.get(in)+1);
            }
            else
            {
                map.put(in, 1);
            }
        }
        int ans = 0;
        for(Map.Entry<Integer, Integer> e : map.entrySet())
        {
            if(e.getValue() == 1)
            {
                ++ans;
            }
        }
        System.out.println(ans);
    }
}
0