結果

問題 No.182 新規性の虜
ユーザー ksomemoksomemo
提出日時 2017-10-22 15:24:18
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 89 ms / 5,000 ms
コード長 251 bytes
コンパイル時間 240 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 27,040 KB
最終ジャッジ日時 2024-12-27 19:51:01
合計ジャッジ時間 2,801 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
10,368 KB
testcase_01 AC 32 ms
10,368 KB
testcase_02 AC 31 ms
10,496 KB
testcase_03 AC 30 ms
10,368 KB
testcase_04 AC 28 ms
10,368 KB
testcase_05 AC 30 ms
10,368 KB
testcase_06 AC 30 ms
10,368 KB
testcase_07 AC 33 ms
10,368 KB
testcase_08 AC 63 ms
19,768 KB
testcase_09 AC 89 ms
22,556 KB
testcase_10 AC 75 ms
22,136 KB
testcase_11 AC 69 ms
20,008 KB
testcase_12 AC 46 ms
14,876 KB
testcase_13 AC 34 ms
10,496 KB
testcase_14 AC 30 ms
10,368 KB
testcase_15 AC 31 ms
10,368 KB
testcase_16 AC 32 ms
10,368 KB
testcase_17 AC 30 ms
10,368 KB
testcase_18 AC 62 ms
15,540 KB
testcase_19 AC 53 ms
14,248 KB
testcase_20 AC 45 ms
12,928 KB
testcase_21 AC 70 ms
16,036 KB
testcase_22 AC 48 ms
13,492 KB
testcase_23 AC 33 ms
10,368 KB
testcase_24 AC 82 ms
27,040 KB
testcase_25 AC 63 ms
11,716 KB
testcase_26 AC 40 ms
11,904 KB
testcase_27 AC 31 ms
10,368 KB
evil01.txt AC 87 ms
28,868 KB
evil02.txt AC 94 ms
29,004 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