結果

問題 No.182 新規性の虜
ユーザー ksomemoksomemo
提出日時 2017-10-22 15:24:18
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 70 ms / 5,000 ms
コード長 251 bytes
コンパイル時間 79 ms
コンパイル使用メモリ 12,288 KB
実行使用メモリ 27,232 KB
最終ジャッジ日時 2024-06-08 12:32:04
合計ジャッジ時間 2,307 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 24 ms
10,368 KB
testcase_01 AC 25 ms
10,368 KB
testcase_02 AC 25 ms
10,368 KB
testcase_03 AC 25 ms
10,496 KB
testcase_04 AC 24 ms
10,368 KB
testcase_05 AC 25 ms
10,496 KB
testcase_06 AC 24 ms
10,496 KB
testcase_07 AC 24 ms
10,368 KB
testcase_08 AC 50 ms
19,892 KB
testcase_09 AC 66 ms
22,808 KB
testcase_10 AC 58 ms
21,932 KB
testcase_11 AC 59 ms
20,012 KB
testcase_12 AC 39 ms
15,136 KB
testcase_13 AC 27 ms
10,496 KB
testcase_14 AC 25 ms
10,496 KB
testcase_15 AC 25 ms
10,368 KB
testcase_16 AC 26 ms
10,496 KB
testcase_17 AC 25 ms
10,368 KB
testcase_18 AC 51 ms
15,536 KB
testcase_19 AC 43 ms
14,120 KB
testcase_20 AC 37 ms
12,928 KB
testcase_21 AC 56 ms
15,780 KB
testcase_22 AC 41 ms
13,240 KB
testcase_23 AC 25 ms
10,368 KB
testcase_24 AC 70 ms
27,232 KB
testcase_25 AC 48 ms
11,716 KB
testcase_26 AC 30 ms
12,032 KB
testcase_27 AC 25 ms
10,368 KB
evil01.txt AC 74 ms
29,124 KB
evil02.txt AC 74 ms
28,872 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter


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

    c = Counter(A)
    ans = sum(1
              for n in c.values()
              if n == 1)

    print(ans)

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