結果

問題 No.182 新規性の虜
ユーザー n_knuun_knuu
提出日時 2015-05-14 15:01:18
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 106 ms / 5,000 ms
コード長 131 bytes
コンパイル時間 518 ms
コンパイル使用メモリ 12,288 KB
実行使用メモリ 27,160 KB
最終ジャッジ日時 2024-12-26 19:11:01
合計ジャッジ時間 3,358 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
10,496 KB
testcase_01 AC 33 ms
10,368 KB
testcase_02 AC 34 ms
10,496 KB
testcase_03 AC 36 ms
10,496 KB
testcase_04 AC 36 ms
10,496 KB
testcase_05 AC 36 ms
10,368 KB
testcase_06 AC 35 ms
10,368 KB
testcase_07 AC 35 ms
10,368 KB
testcase_08 AC 75 ms
19,888 KB
testcase_09 AC 103 ms
22,676 KB
testcase_10 AC 93 ms
21,760 KB
testcase_11 AC 81 ms
20,004 KB
testcase_12 AC 53 ms
15,008 KB
testcase_13 AC 35 ms
10,496 KB
testcase_14 AC 35 ms
10,368 KB
testcase_15 AC 35 ms
10,368 KB
testcase_16 AC 34 ms
10,368 KB
testcase_17 AC 37 ms
10,368 KB
testcase_18 AC 85 ms
15,400 KB
testcase_19 AC 73 ms
14,248 KB
testcase_20 AC 59 ms
12,800 KB
testcase_21 AC 94 ms
15,968 KB
testcase_22 AC 63 ms
13,364 KB
testcase_23 AC 38 ms
10,496 KB
testcase_24 AC 106 ms
27,160 KB
testcase_25 AC 83 ms
11,716 KB
testcase_26 AC 42 ms
12,032 KB
testcase_27 AC 34 ms
10,496 KB
evil01.txt AC 109 ms
28,884 KB
evil02.txt AC 116 ms
28,996 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
dic = dict()
for a in map(int, input().split()):
    dic[a] = dic.get(a, 0) + 1
print(list(dic.values()).count(1))
0