結果

問題 No.182 新規性の虜
ユーザー spaciaspacia
提出日時 2015-12-20 12:51:47
言語 Java
(openjdk 23)
結果
AC  
実行時間 305 ms / 5,000 ms
コード長 715 bytes
コンパイル時間 3,188 ms
コンパイル使用メモリ 74,532 KB
実行使用メモリ 52,472 KB
最終ジャッジ日時 2024-12-26 20:00:50
合計ジャッジ時間 8,922 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 57 ms
36,952 KB
testcase_01 AC 56 ms
36,472 KB
testcase_02 AC 56 ms
36,356 KB
testcase_03 AC 52 ms
36,316 KB
testcase_04 AC 55 ms
36,452 KB
testcase_05 AC 55 ms
36,264 KB
testcase_06 AC 54 ms
36,644 KB
testcase_07 AC 54 ms
36,452 KB
testcase_08 AC 228 ms
49,704 KB
testcase_09 AC 305 ms
52,472 KB
testcase_10 AC 285 ms
52,404 KB
testcase_11 AC 261 ms
48,560 KB
testcase_12 AC 166 ms
44,692 KB
testcase_13 AC 54 ms
36,772 KB
testcase_14 AC 56 ms
36,628 KB
testcase_15 AC 57 ms
36,492 KB
testcase_16 AC 54 ms
36,824 KB
testcase_17 AC 56 ms
36,696 KB
testcase_18 AC 225 ms
46,244 KB
testcase_19 AC 201 ms
46,548 KB
testcase_20 AC 156 ms
42,252 KB
testcase_21 AC 248 ms
49,156 KB
testcase_22 AC 180 ms
45,960 KB
testcase_23 AC 56 ms
36,152 KB
testcase_24 AC 271 ms
52,152 KB
testcase_25 AC 213 ms
49,792 KB
testcase_26 AC 120 ms
39,984 KB
testcase_27 AC 52 ms
36,824 KB
evil01.txt AC 329 ms
55,612 KB
evil02.txt AC 316 ms
55,536 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