結果

問題 No.182 新規性の虜
ユーザー TakoKurageTakoKurage
提出日時 2020-01-17 09:31:38
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 59 ms / 5,000 ms
コード長 134 bytes
コンパイル時間 99 ms
コンパイル使用メモリ 10,624 KB
実行使用メモリ 22,692 KB
最終ジャッジ日時 2023-09-07 21:11:57
合計ジャッジ時間 3,090 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 17 ms
8,416 KB
testcase_01 AC 17 ms
8,568 KB
testcase_02 AC 17 ms
8,460 KB
testcase_03 AC 17 ms
8,412 KB
testcase_04 AC 17 ms
8,384 KB
testcase_05 AC 17 ms
8,552 KB
testcase_06 AC 17 ms
8,416 KB
testcase_07 AC 18 ms
8,420 KB
testcase_08 AC 44 ms
16,988 KB
testcase_09 AC 56 ms
19,000 KB
testcase_10 AC 50 ms
18,736 KB
testcase_11 AC 45 ms
16,672 KB
testcase_12 AC 28 ms
13,116 KB
testcase_13 AC 17 ms
8,452 KB
testcase_14 AC 16 ms
8,424 KB
testcase_15 AC 16 ms
8,456 KB
testcase_16 AC 17 ms
8,472 KB
testcase_17 AC 17 ms
8,480 KB
testcase_18 AC 43 ms
16,824 KB
testcase_19 AC 36 ms
14,128 KB
testcase_20 AC 28 ms
12,056 KB
testcase_21 AC 46 ms
17,952 KB
testcase_22 AC 32 ms
13,228 KB
testcase_23 AC 17 ms
8,556 KB
testcase_24 AC 59 ms
22,692 KB
testcase_25 AC 39 ms
10,400 KB
testcase_26 AC 21 ms
10,104 KB
testcase_27 AC 16 ms
8,540 KB
evil01.txt AC 61 ms
23,484 KB
evil02.txt AC 63 ms
23,436 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter

N, *A = map(int, open(0).read().split())

C = Counter(A)
print(sum(1 for v in C.values() if v == 1))
0