結果

問題 No.182 新規性の虜
ユーザー MitI_7MitI_7
提出日時 2015-10-31 16:34:52
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 82 ms / 5,000 ms
コード長 256 bytes
コンパイル時間 224 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 22,548 KB
最終ジャッジ日時 2024-06-08 03:19:16
合計ジャッジ時間 2,538 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,624 KB
testcase_01 AC 26 ms
10,624 KB
testcase_02 AC 27 ms
10,496 KB
testcase_03 AC 27 ms
10,752 KB
testcase_04 AC 27 ms
10,624 KB
testcase_05 AC 26 ms
10,496 KB
testcase_06 AC 26 ms
10,496 KB
testcase_07 AC 27 ms
10,496 KB
testcase_08 AC 55 ms
17,896 KB
testcase_09 AC 74 ms
20,116 KB
testcase_10 AC 72 ms
19,320 KB
testcase_11 AC 64 ms
18,428 KB
testcase_12 AC 43 ms
13,708 KB
testcase_13 AC 28 ms
10,368 KB
testcase_14 AC 28 ms
10,368 KB
testcase_15 AC 28 ms
10,496 KB
testcase_16 AC 28 ms
10,624 KB
testcase_17 AC 27 ms
10,496 KB
testcase_18 AC 49 ms
15,332 KB
testcase_19 AC 44 ms
14,080 KB
testcase_20 AC 38 ms
12,672 KB
testcase_21 AC 49 ms
15,648 KB
testcase_22 AC 41 ms
13,116 KB
testcase_23 AC 27 ms
10,624 KB
testcase_24 AC 82 ms
22,548 KB
testcase_25 AC 40 ms
11,844 KB
testcase_26 AC 34 ms
11,776 KB
testcase_27 AC 28 ms
10,496 KB
evil01.txt AC 87 ms
25,080 KB
evil02.txt AC 90 ms
25,076 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict


def main():
    n = int(input())
    a = input().split()
    d = defaultdict(int)

    for i in a:
        d[i] += 1

    print(len([k for k, d in d.items() if d == 1]))
    
    
if __name__ == '__main__':
    main()
0