結果

問題 No.182 新規性の虜
ユーザー osrgy01osrgy01
提出日時 2021-02-06 11:03:00
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 71 ms / 5,000 ms
コード長 124 bytes
コンパイル時間 71 ms
コンパイル使用メモリ 10,700 KB
実行使用メモリ 26,508 KB
最終ジャッジ日時 2023-09-15 15:23:20
合計ジャッジ時間 2,407 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 18 ms
8,564 KB
testcase_01 AC 17 ms
8,424 KB
testcase_02 AC 17 ms
8,484 KB
testcase_03 AC 17 ms
8,436 KB
testcase_04 AC 17 ms
8,608 KB
testcase_05 AC 17 ms
8,504 KB
testcase_06 AC 17 ms
8,564 KB
testcase_07 AC 17 ms
8,460 KB
testcase_08 AC 50 ms
17,896 KB
testcase_09 AC 68 ms
20,784 KB
testcase_10 AC 60 ms
19,712 KB
testcase_11 AC 55 ms
17,968 KB
testcase_12 AC 33 ms
13,000 KB
testcase_13 AC 17 ms
8,440 KB
testcase_14 AC 17 ms
8,444 KB
testcase_15 AC 17 ms
8,440 KB
testcase_16 AC 17 ms
8,492 KB
testcase_17 AC 18 ms
8,408 KB
testcase_18 AC 45 ms
14,632 KB
testcase_19 AC 38 ms
13,024 KB
testcase_20 AC 30 ms
11,408 KB
testcase_21 AC 48 ms
15,136 KB
testcase_22 AC 33 ms
11,988 KB
testcase_23 AC 17 ms
8,572 KB
testcase_24 AC 71 ms
26,508 KB
testcase_25 AC 39 ms
9,480 KB
testcase_26 AC 23 ms
9,996 KB
testcase_27 AC 17 ms
8,560 KB
evil01.txt AC 73 ms
27,208 KB
evil02.txt AC 78 ms
27,000 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter
input();ans=0
for i,j in Counter(map(int,input().split())).items():
    ans+=j==1
print(ans)
0