結果

問題 No.182 新規性の虜
ユーザー spaciaspacia
提出日時 2015-12-20 12:51:47
言語 Java21
(openjdk 21)
結果
AC  
実行時間 235 ms / 5,000 ms
コード長 715 bytes
コンパイル時間 2,325 ms
コンパイル使用メモリ 75,568 KB
実行使用メモリ 52,964 KB
最終ジャッジ日時 2024-06-08 03:23:32
合計ジャッジ時間 7,081 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
36,484 KB
testcase_01 AC 51 ms
36,768 KB
testcase_02 AC 51 ms
36,792 KB
testcase_03 AC 49 ms
36,784 KB
testcase_04 AC 48 ms
36,848 KB
testcase_05 AC 49 ms
36,772 KB
testcase_06 AC 50 ms
36,464 KB
testcase_07 AC 52 ms
36,472 KB
testcase_08 AC 195 ms
49,560 KB
testcase_09 AC 235 ms
52,964 KB
testcase_10 AC 231 ms
52,576 KB
testcase_11 AC 200 ms
48,948 KB
testcase_12 AC 142 ms
44,852 KB
testcase_13 AC 50 ms
36,908 KB
testcase_14 AC 50 ms
36,936 KB
testcase_15 AC 53 ms
36,960 KB
testcase_16 AC 50 ms
36,936 KB
testcase_17 AC 50 ms
36,908 KB
testcase_18 AC 197 ms
46,352 KB
testcase_19 AC 179 ms
46,728 KB
testcase_20 AC 143 ms
42,048 KB
testcase_21 AC 215 ms
49,424 KB
testcase_22 AC 152 ms
45,192 KB
testcase_23 AC 51 ms
36,940 KB
testcase_24 AC 235 ms
52,380 KB
testcase_25 AC 186 ms
50,548 KB
testcase_26 AC 115 ms
40,204 KB
testcase_27 AC 52 ms
36,472 KB
evil01.txt AC 288 ms
55,500 KB
evil02.txt AC 280 ms
55,604 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;
import java.math.*;

class Main182 {
	
	public static void out (Object out) {
		System.out.println(out);
	}
	
	public static void main (String[] args) throws IOException {
		BufferedReader br = 
			new BufferedReader(new InputStreamReader(System.in));
		
		int ans = 0;
		int n = Integer.parseInt(br.readLine());
		String[] line = br.readLine().split(" ");
		HashMap<String, Integer> map = new HashMap<String, Integer>();
		
		for (int i = 0; i < n; i++) {
			if (map.containsKey(line[i])) {
				map.put(line[i], map.get(line[i]) + 1);
			} else {
				map.put(line[i], 1);
			}
		}
		for (String key : map.keySet()) {
			if (map.get(key) == 1) ans++;
		}
		
		out(ans);
		
	}
}
0