結果

問題 No.182 新規性の虜
ユーザー zakuro9715zakuro9715
提出日時 2015-10-11 02:11:55
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 91 ms / 5,000 ms
コード長 144 bytes
コンパイル時間 314 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 27,424 KB
最終ジャッジ日時 2024-06-08 03:18:36
合計ジャッジ時間 2,649 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,496 KB
testcase_01 AC 27 ms
10,624 KB
testcase_02 AC 26 ms
10,496 KB
testcase_03 AC 26 ms
10,496 KB
testcase_04 AC 26 ms
10,496 KB
testcase_05 AC 26 ms
10,368 KB
testcase_06 AC 26 ms
10,496 KB
testcase_07 AC 25 ms
10,496 KB
testcase_08 AC 69 ms
20,012 KB
testcase_09 AC 88 ms
22,880 KB
testcase_10 AC 84 ms
22,008 KB
testcase_11 AC 75 ms
20,260 KB
testcase_12 AC 47 ms
15,124 KB
testcase_13 AC 28 ms
10,496 KB
testcase_14 AC 27 ms
10,496 KB
testcase_15 AC 27 ms
10,624 KB
testcase_16 AC 28 ms
10,624 KB
testcase_17 AC 28 ms
10,624 KB
testcase_18 AC 70 ms
15,656 KB
testcase_19 AC 55 ms
14,228 KB
testcase_20 AC 45 ms
13,184 KB
testcase_21 AC 71 ms
16,020 KB
testcase_22 AC 51 ms
13,484 KB
testcase_23 AC 26 ms
10,496 KB
testcase_24 AC 91 ms
27,424 KB
testcase_25 AC 66 ms
11,836 KB
testcase_26 AC 35 ms
12,160 KB
testcase_27 AC 26 ms
10,368 KB
evil01.txt AC 95 ms
29,116 KB
evil02.txt AC 103 ms
29,112 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

input()
d = {}
for a in map(int, input().split()):
    d[a] = d.get(a, 0) + 1
n = 0
for i in d.values():
    if i == 1:
        n += 1
print(n)
0