結果

問題 No.182 新規性の虜
ユーザー _k_a_n_i__k_a_n_i_
提出日時 2015-04-23 18:58:54
言語 Java
(openjdk 23)
結果
AC  
実行時間 758 ms / 5,000 ms
コード長 1,026 bytes
コンパイル時間 3,249 ms
コンパイル使用メモリ 75,124 KB
実行使用メモリ 53,508 KB
最終ジャッジ日時 2024-12-26 19:06:29
合計ジャッジ時間 15,330 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 137 ms
39,840 KB
testcase_01 AC 150 ms
41,272 KB
testcase_02 AC 128 ms
41,220 KB
testcase_03 AC 133 ms
41,160 KB
testcase_04 AC 141 ms
40,976 KB
testcase_05 AC 142 ms
41,192 KB
testcase_06 AC 120 ms
40,032 KB
testcase_07 AC 143 ms
40,908 KB
testcase_08 AC 611 ms
51,184 KB
testcase_09 AC 758 ms
52,848 KB
testcase_10 AC 718 ms
52,312 KB
testcase_11 AC 671 ms
51,684 KB
testcase_12 AC 435 ms
48,960 KB
testcase_13 AC 136 ms
41,116 KB
testcase_14 AC 131 ms
40,624 KB
testcase_15 AC 129 ms
40,996 KB
testcase_16 AC 136 ms
41,244 KB
testcase_17 AC 138 ms
41,264 KB
testcase_18 AC 608 ms
48,360 KB
testcase_19 AC 529 ms
48,412 KB
testcase_20 AC 457 ms
48,216 KB
testcase_21 AC 662 ms
48,664 KB
testcase_22 AC 495 ms
48,600 KB
testcase_23 AC 137 ms
41,148 KB
testcase_24 AC 624 ms
53,508 KB
testcase_25 AC 570 ms
47,896 KB
testcase_26 AC 312 ms
47,536 KB
testcase_27 AC 135 ms
41,300 KB
evil01.txt AC 684 ms
54,668 KB
evil02.txt AC 685 ms
55,012 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