結果

問題 No.182 新規性の虜
ユーザー TksiTksi
提出日時 2017-08-10 23:45:00
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 95 ms / 5,000 ms
コード長 181 bytes
コンパイル時間 753 ms
コンパイル使用メモリ 10,480 KB
実行使用メモリ 24,740 KB
最終ジャッジ日時 2023-08-27 16:06:56
合計ジャッジ時間 3,154 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 20 ms
8,368 KB
testcase_01 AC 18 ms
8,456 KB
testcase_02 AC 18 ms
8,428 KB
testcase_03 AC 18 ms
8,508 KB
testcase_04 AC 18 ms
8,380 KB
testcase_05 AC 18 ms
8,384 KB
testcase_06 AC 18 ms
8,460 KB
testcase_07 AC 19 ms
8,568 KB
testcase_08 AC 58 ms
17,104 KB
testcase_09 AC 86 ms
20,576 KB
testcase_10 AC 74 ms
19,596 KB
testcase_11 AC 69 ms
18,388 KB
testcase_12 AC 40 ms
13,000 KB
testcase_13 AC 18 ms
8,396 KB
testcase_14 AC 19 ms
8,384 KB
testcase_15 AC 18 ms
8,528 KB
testcase_16 AC 18 ms
8,376 KB
testcase_17 AC 18 ms
8,396 KB
testcase_18 AC 50 ms
16,840 KB
testcase_19 AC 42 ms
14,240 KB
testcase_20 AC 34 ms
12,100 KB
testcase_21 AC 54 ms
17,812 KB
testcase_22 AC 38 ms
12,952 KB
testcase_23 AC 18 ms
8,452 KB
testcase_24 AC 95 ms
24,740 KB
testcase_25 AC 40 ms
10,196 KB
testcase_26 AC 27 ms
10,212 KB
testcase_27 AC 18 ms
8,460 KB
evil01.txt AC 95 ms
25,100 KB
evil02.txt AC 100 ms
25,176 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter

input()
ans = 0
v = Counter(list(map(int, input().split()))).most_common()
for i in range(len(v)):
    if v[i][1] == 1:
        ans += 1
print(ans)
0