結果

問題 No.182 新規性の虜
ユーザー n_knuun_knuu
提出日時 2015-05-14 15:01:18
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 63 ms / 5,000 ms
コード長 131 bytes
コンパイル時間 148 ms
コンパイル使用メモリ 10,524 KB
実行使用メモリ 25,936 KB
最終ジャッジ日時 2023-08-27 07:16:56
合計ジャッジ時間 2,221 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 13 ms
7,764 KB
testcase_01 AC 14 ms
7,896 KB
testcase_02 AC 14 ms
7,848 KB
testcase_03 AC 15 ms
7,796 KB
testcase_04 AC 14 ms
7,796 KB
testcase_05 AC 13 ms
7,820 KB
testcase_06 AC 13 ms
7,896 KB
testcase_07 AC 13 ms
7,988 KB
testcase_08 AC 43 ms
17,484 KB
testcase_09 AC 61 ms
20,448 KB
testcase_10 AC 54 ms
19,544 KB
testcase_11 AC 47 ms
17,684 KB
testcase_12 AC 29 ms
12,840 KB
testcase_13 AC 14 ms
7,840 KB
testcase_14 AC 14 ms
7,960 KB
testcase_15 AC 14 ms
7,932 KB
testcase_16 AC 13 ms
7,768 KB
testcase_17 AC 13 ms
7,836 KB
testcase_18 AC 48 ms
13,896 KB
testcase_19 AC 39 ms
12,632 KB
testcase_20 AC 29 ms
10,996 KB
testcase_21 AC 53 ms
15,008 KB
testcase_22 AC 33 ms
11,572 KB
testcase_23 AC 15 ms
7,944 KB
testcase_24 AC 63 ms
25,936 KB
testcase_25 AC 46 ms
9,260 KB
testcase_26 AC 19 ms
9,604 KB
testcase_27 AC 14 ms
7,800 KB
evil01.txt AC 66 ms
26,656 KB
evil02.txt AC 73 ms
26,676 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