結果

問題 No.182 新規性の虜
ユーザー 村上史弥村上史弥
提出日時 2022-12-02 08:24:45
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 86 ms / 5,000 ms
コード長 161 bytes
コンパイル時間 271 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 25,272 KB
最終ジャッジ日時 2024-10-09 11:35:25
合計ジャッジ時間 2,811 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,496 KB
testcase_01 AC 29 ms
10,624 KB
testcase_02 AC 29 ms
10,496 KB
testcase_03 AC 29 ms
10,496 KB
testcase_04 AC 29 ms
10,496 KB
testcase_05 AC 29 ms
10,496 KB
testcase_06 AC 29 ms
10,496 KB
testcase_07 AC 28 ms
10,496 KB
testcase_08 AC 63 ms
19,464 KB
testcase_09 AC 84 ms
22,840 KB
testcase_10 AC 74 ms
19,872 KB
testcase_11 AC 68 ms
19,792 KB
testcase_12 AC 49 ms
15,852 KB
testcase_13 AC 31 ms
10,496 KB
testcase_14 AC 31 ms
10,624 KB
testcase_15 AC 31 ms
10,496 KB
testcase_16 AC 31 ms
10,496 KB
testcase_17 AC 30 ms
10,624 KB
testcase_18 AC 67 ms
17,920 KB
testcase_19 AC 58 ms
15,824 KB
testcase_20 AC 45 ms
14,260 KB
testcase_21 AC 71 ms
18,852 KB
testcase_22 AC 50 ms
14,736 KB
testcase_23 AC 30 ms
10,496 KB
testcase_24 AC 86 ms
25,272 KB
testcase_25 AC 59 ms
12,484 KB
testcase_26 AC 36 ms
12,432 KB
testcase_27 AC 30 ms
10,752 KB
evil01.txt AC 90 ms
25,800 KB
evil02.txt AC 94 ms
25,744 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections
N = int(input())
A = list(map(int, input().split()))

B = [k for k, v in collections.Counter(A).items() if v > 1]

print(len(set(A)) - len(B))
0