結果

問題 No.182 新規性の虜
ユーザー GrayCoderGrayCoder
提出日時 2017-10-09 08:12:51
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 69 ms / 5,000 ms
コード長 247 bytes
コンパイル時間 76 ms
コンパイル使用メモリ 12,288 KB
実行使用メモリ 25,076 KB
最終ジャッジ日時 2024-06-08 12:27:21
合計ジャッジ時間 2,331 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,368 KB
testcase_01 AC 27 ms
10,496 KB
testcase_02 AC 26 ms
10,496 KB
testcase_03 AC 25 ms
10,496 KB
testcase_04 AC 25 ms
10,368 KB
testcase_05 AC 27 ms
10,496 KB
testcase_06 AC 27 ms
10,496 KB
testcase_07 AC 27 ms
10,624 KB
testcase_08 AC 51 ms
19,420 KB
testcase_09 AC 65 ms
21,092 KB
testcase_10 AC 59 ms
19,932 KB
testcase_11 AC 58 ms
19,740 KB
testcase_12 AC 39 ms
15,276 KB
testcase_13 AC 25 ms
10,496 KB
testcase_14 AC 25 ms
10,624 KB
testcase_15 AC 24 ms
10,496 KB
testcase_16 AC 24 ms
10,496 KB
testcase_17 AC 26 ms
10,496 KB
testcase_18 AC 57 ms
17,712 KB
testcase_19 AC 47 ms
15,908 KB
testcase_20 AC 38 ms
13,824 KB
testcase_21 AC 60 ms
18,848 KB
testcase_22 AC 42 ms
14,516 KB
testcase_23 AC 26 ms
10,496 KB
testcase_24 AC 69 ms
25,076 KB
testcase_25 AC 51 ms
12,484 KB
testcase_26 AC 29 ms
12,288 KB
testcase_27 AC 24 ms
10,496 KB
evil01.txt AC 74 ms
25,864 KB
evil02.txt AC 73 ms
25,856 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

    num = dict()
    for i in A:
        num[i] = num.get(i, 0) + 1

    ans = 0
    for i in num.values():
        if i == 1:
            ans += 1

    print(ans)

main()
0