結果

問題 No.182 新規性の虜
ユーザー tabataba
提出日時 2016-04-13 21:19:55
言語 Python2
(2.7.18)
結果
AC  
実行時間 87 ms / 5,000 ms
コード長 128 bytes
コンパイル時間 358 ms
コンパイル使用メモリ 6,636 KB
実行使用メモリ 19,352 KB
最終ジャッジ日時 2023-08-27 10:36:31
合計ジャッジ時間 2,455 ms
ジャッジサーバーID
(参考情報)
judge11 / judge13
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 12 ms
6,200 KB
testcase_01 AC 11 ms
6,064 KB
testcase_02 AC 11 ms
6,068 KB
testcase_03 AC 12 ms
6,040 KB
testcase_04 AC 12 ms
5,988 KB
testcase_05 AC 11 ms
6,092 KB
testcase_06 AC 11 ms
6,004 KB
testcase_07 AC 11 ms
5,924 KB
testcase_08 AC 56 ms
11,500 KB
testcase_09 AC 84 ms
13,144 KB
testcase_10 AC 77 ms
12,248 KB
testcase_11 AC 65 ms
11,912 KB
testcase_12 AC 34 ms
10,736 KB
testcase_13 AC 12 ms
6,008 KB
testcase_14 AC 11 ms
6,040 KB
testcase_15 AC 12 ms
6,040 KB
testcase_16 AC 11 ms
5,952 KB
testcase_17 AC 11 ms
6,092 KB
testcase_18 AC 61 ms
12,276 KB
testcase_19 AC 47 ms
10,340 KB
testcase_20 AC 34 ms
8,712 KB
testcase_21 AC 70 ms
13,288 KB
testcase_22 AC 40 ms
9,408 KB
testcase_23 AC 11 ms
6,064 KB
testcase_24 AC 87 ms
19,352 KB
testcase_25 AC 63 ms
7,516 KB
testcase_26 AC 20 ms
7,328 KB
testcase_27 AC 11 ms
5,952 KB
evil01.txt AC 94 ms
19,208 KB
evil02.txt AC 97 ms
19,300 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=input()
b={}
for i in map(int,raw_input().split()):
	if i in b:
		b[i]+=1
	else:
		b[i]=1
print len([i for i in b if b[i]==1])
0