結果

問題 No.182 新規性の虜
ユーザー qazqaz
提出日時 2017-05-28 15:24:09
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 69 ms / 5,000 ms
コード長 173 bytes
コンパイル時間 657 ms
コンパイル使用メモリ 10,676 KB
実行使用メモリ 23,640 KB
最終ジャッジ日時 2023-08-27 15:15:37
合計ジャッジ時間 2,666 ms
ジャッジサーバーID
(参考情報)
judge11 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 16 ms
8,516 KB
testcase_01 AC 16 ms
8,548 KB
testcase_02 AC 17 ms
8,520 KB
testcase_03 AC 17 ms
8,404 KB
testcase_04 AC 17 ms
8,612 KB
testcase_05 AC 16 ms
8,536 KB
testcase_06 AC 16 ms
8,408 KB
testcase_07 AC 17 ms
8,568 KB
testcase_08 AC 45 ms
17,068 KB
testcase_09 AC 61 ms
19,088 KB
testcase_10 AC 55 ms
18,792 KB
testcase_11 AC 50 ms
16,492 KB
testcase_12 AC 31 ms
13,128 KB
testcase_13 AC 17 ms
8,568 KB
testcase_14 AC 17 ms
8,492 KB
testcase_15 AC 16 ms
8,424 KB
testcase_16 AC 16 ms
8,388 KB
testcase_17 AC 16 ms
8,524 KB
testcase_18 AC 44 ms
16,796 KB
testcase_19 AC 37 ms
14,400 KB
testcase_20 AC 30 ms
11,988 KB
testcase_21 AC 49 ms
17,860 KB
testcase_22 AC 33 ms
13,156 KB
testcase_23 AC 18 ms
8,576 KB
testcase_24 AC 69 ms
23,640 KB
testcase_25 AC 37 ms
10,344 KB
testcase_26 AC 22 ms
10,028 KB
testcase_27 AC 16 ms
8,572 KB
evil01.txt AC 66 ms
23,496 KB
evil02.txt AC 73 ms
23,648 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter
N = int(input())
a = list(map(int, input().split()))
c = Counter(a)
ans = 0
for i in c.values():
    if i == 1 :
        ans += 1
print(ans)
0