結果

問題 No.182 新規性の虜
ユーザー kisaragi211kisaragi211
提出日時 2018-01-20 17:00:59
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 57 ms / 5,000 ms
コード長 230 bytes
コンパイル時間 510 ms
コンパイル使用メモリ 10,500 KB
実行使用メモリ 23,620 KB
最終ジャッジ日時 2023-08-27 17:07:21
合計ジャッジ時間 2,163 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 17 ms
8,404 KB
testcase_01 AC 17 ms
8,412 KB
testcase_02 AC 17 ms
8,384 KB
testcase_03 AC 18 ms
8,480 KB
testcase_04 AC 17 ms
8,404 KB
testcase_05 AC 18 ms
8,420 KB
testcase_06 AC 17 ms
8,524 KB
testcase_07 AC 18 ms
8,536 KB
testcase_08 AC 42 ms
17,128 KB
testcase_09 AC 55 ms
18,844 KB
testcase_10 AC 49 ms
18,784 KB
testcase_11 AC 48 ms
17,492 KB
testcase_12 AC 28 ms
13,092 KB
testcase_13 AC 17 ms
8,416 KB
testcase_14 AC 17 ms
8,416 KB
testcase_15 AC 17 ms
8,584 KB
testcase_16 AC 17 ms
8,532 KB
testcase_17 AC 17 ms
8,448 KB
testcase_18 AC 44 ms
16,676 KB
testcase_19 AC 36 ms
14,416 KB
testcase_20 AC 29 ms
11,984 KB
testcase_21 AC 48 ms
17,860 KB
testcase_22 AC 33 ms
13,040 KB
testcase_23 AC 17 ms
8,436 KB
testcase_24 AC 57 ms
23,620 KB
testcase_25 AC 38 ms
10,312 KB
testcase_26 AC 21 ms
10,028 KB
testcase_27 AC 17 ms
8,528 KB
evil01.txt AC 59 ms
23,696 KB
evil02.txt AC 60 ms
23,616 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter


def main():
    N = int(input())
    cnt = Counter(list(map(int, input().split())))
    m = [i for i in cnt.values()]
    print(m.count(1))
        
    
    
if __name__ == '__main__':
    main()
0