結果

問題 No.182 新規性の虜
ユーザー ThetaTheta
提出日時 2022-10-24 13:19:28
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 65 ms / 5,000 ms
コード長 243 bytes
コンパイル時間 331 ms
コンパイル使用メモリ 10,600 KB
実行使用メモリ 23,628 KB
最終ジャッジ日時 2023-09-15 12:56:27
合計ジャッジ時間 3,023 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 18 ms
8,456 KB
testcase_01 AC 18 ms
8,504 KB
testcase_02 AC 19 ms
8,540 KB
testcase_03 AC 18 ms
8,584 KB
testcase_04 AC 18 ms
8,404 KB
testcase_05 AC 18 ms
8,440 KB
testcase_06 AC 18 ms
8,440 KB
testcase_07 AC 18 ms
8,604 KB
testcase_08 AC 44 ms
17,072 KB
testcase_09 AC 60 ms
19,032 KB
testcase_10 AC 55 ms
18,848 KB
testcase_11 AC 50 ms
16,472 KB
testcase_12 AC 31 ms
13,012 KB
testcase_13 AC 18 ms
8,440 KB
testcase_14 AC 18 ms
8,496 KB
testcase_15 AC 19 ms
8,412 KB
testcase_16 AC 18 ms
8,540 KB
testcase_17 AC 18 ms
8,552 KB
testcase_18 AC 47 ms
16,764 KB
testcase_19 AC 38 ms
14,308 KB
testcase_20 AC 31 ms
12,088 KB
testcase_21 AC 52 ms
17,880 KB
testcase_22 AC 35 ms
13,144 KB
testcase_23 AC 18 ms
8,436 KB
testcase_24 AC 65 ms
23,628 KB
testcase_25 AC 40 ms
10,368 KB
testcase_26 AC 23 ms
10,256 KB
testcase_27 AC 18 ms
8,404 KB
evil01.txt AC 67 ms
23,540 KB
evil02.txt AC 70 ms
23,664 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter


def main():
    input()
    A = list(map(int, input().split()))

    A_counter = Counter(A)
    print(len(list(filter(lambda count_: count_ == 1, A_counter.values()))))


if __name__ == "__main__":
    main()
0