結果

問題 No.182 新規性の虜
ユーザー hiro_metal_corehiro_metal_core
提出日時 2017-12-02 22:42:22
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 155 bytes
コンパイル時間 84 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 33,520 KB
最終ジャッジ日時 2024-11-28 03:53:33
合計ジャッジ時間 82,027 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
28,504 KB
testcase_01 AC 29 ms
33,520 KB
testcase_02 AC 29 ms
15,872 KB
testcase_03 AC 29 ms
29,156 KB
testcase_04 AC 30 ms
28,224 KB
testcase_05 AC 29 ms
26,480 KB
testcase_06 AC 30 ms
28,320 KB
testcase_07 AC 30 ms
26,520 KB
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 AC 29 ms
10,624 KB
testcase_14 AC 31 ms
10,624 KB
testcase_15 AC 29 ms
10,496 KB
testcase_16 AC 29 ms
10,496 KB
testcase_17 AC 28 ms
10,624 KB
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 AC 29 ms
10,624 KB
testcase_24 TLE -
testcase_25 AC 51 ms
12,636 KB
testcase_26 AC 2,047 ms
12,672 KB
testcase_27 AC 29 ms
10,624 KB
evil01.txt TLE -
evil02.txt TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

N = input()
A = list(map(int, input().split()))

new_num = 0

a_set = set(A)

for a in a_set:
    if A.count(a) == 1:
        new_num += 1

print(new_num)
0