結果

問題 No.182 新規性の虜
ユーザー yun_appyun_app
提出日時 2016-05-12 12:53:32
言語 Java21
(openjdk 21)
結果
AC  
実行時間 286 ms / 5,000 ms
コード長 950 bytes
コンパイル時間 2,573 ms
コンパイル使用メモリ 75,364 KB
実行使用メモリ 55,480 KB
最終ジャッジ日時 2024-06-08 06:53:09
合計ジャッジ時間 7,201 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
36,556 KB
testcase_01 AC 47 ms
36,992 KB
testcase_02 AC 48 ms
36,844 KB
testcase_03 AC 46 ms
36,732 KB
testcase_04 AC 47 ms
37,260 KB
testcase_05 AC 47 ms
36,900 KB
testcase_06 AC 48 ms
36,564 KB
testcase_07 AC 46 ms
36,564 KB
testcase_08 AC 221 ms
49,672 KB
testcase_09 AC 286 ms
55,292 KB
testcase_10 AC 250 ms
51,964 KB
testcase_11 AC 249 ms
51,712 KB
testcase_12 AC 168 ms
45,528 KB
testcase_13 AC 46 ms
37,068 KB
testcase_14 AC 46 ms
36,992 KB
testcase_15 AC 47 ms
37,032 KB
testcase_16 AC 47 ms
36,564 KB
testcase_17 AC 47 ms
36,920 KB
testcase_18 AC 206 ms
48,736 KB
testcase_19 AC 170 ms
46,632 KB
testcase_20 AC 148 ms
45,788 KB
testcase_21 AC 204 ms
49,120 KB
testcase_22 AC 151 ms
45,080 KB
testcase_23 AC 47 ms
37,028 KB
testcase_24 AC 271 ms
55,480 KB
testcase_25 AC 175 ms
47,028 KB
testcase_26 AC 119 ms
40,904 KB
testcase_27 AC 47 ms
36,936 KB
evil01.txt AC 297 ms
55,712 KB
evil02.txt AC 306 ms
56,064 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/* package whatever; // don't place package name! */

import java.util.*;
import java.lang.*;
import java.io.*;

/* Name of the class has to be "Main" only if the class is public. */
class Ideone
{
    public static void main (String[] args) throws java.lang.Exception
    {
        // your code goes here
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        int n = Integer.parseInt(br.readLine());
        String[] lines = br.readLine().split(" ");
        HashMap<Integer,Integer> map = new HashMap<Integer,Integer>();
        for(String st:lines){
            int num = Integer.parseInt(st);
            if(map.containsKey(num)){
                map.put(num,2);
            }else{
                map.put(num,1);
            }
        }
        int ans = 0;
        for(int m:map.keySet()){
            if(map.get(m)==1){
                ++ans;
            }
        }
        System.out.println(ans);
    }
}
0