結果

問題 No.182 新規性の虜
ユーザー zakuro9715zakuro9715
提出日時 2015-10-11 02:11:55
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 81 ms / 5,000 ms
コード長 144 bytes
コンパイル時間 163 ms
コンパイル使用メモリ 10,456 KB
実行使用メモリ 25,976 KB
最終ジャッジ日時 2023-08-27 07:35:20
合計ジャッジ時間 2,577 ms
ジャッジサーバーID
(参考情報)
judge15 / judge14
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 16 ms
7,748 KB
testcase_01 AC 15 ms
7,716 KB
testcase_02 AC 16 ms
7,936 KB
testcase_03 AC 15 ms
7,836 KB
testcase_04 AC 15 ms
7,940 KB
testcase_05 AC 16 ms
7,808 KB
testcase_06 AC 15 ms
7,820 KB
testcase_07 AC 16 ms
7,712 KB
testcase_08 AC 55 ms
17,364 KB
testcase_09 AC 78 ms
20,396 KB
testcase_10 AC 69 ms
19,580 KB
testcase_11 AC 60 ms
17,700 KB
testcase_12 AC 35 ms
12,564 KB
testcase_13 AC 16 ms
7,828 KB
testcase_14 AC 15 ms
7,824 KB
testcase_15 AC 15 ms
7,824 KB
testcase_16 AC 15 ms
7,880 KB
testcase_17 AC 15 ms
7,868 KB
testcase_18 AC 53 ms
14,264 KB
testcase_19 AC 43 ms
12,576 KB
testcase_20 AC 33 ms
10,928 KB
testcase_21 AC 58 ms
14,804 KB
testcase_22 AC 37 ms
11,504 KB
testcase_23 AC 15 ms
7,772 KB
testcase_24 AC 81 ms
25,976 KB
testcase_25 AC 50 ms
9,248 KB
testcase_26 AC 23 ms
9,532 KB
testcase_27 AC 16 ms
7,796 KB
evil01.txt AC 87 ms
26,524 KB
evil02.txt AC 90 ms
26,632 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