結果

問題 No.182 新規性の虜
ユーザー yumechiyumechi
提出日時 2015-06-08 22:34:15
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 121 ms / 5,000 ms
コード長 177 bytes
コンパイル時間 224 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 27,292 KB
最終ジャッジ日時 2024-06-08 03:05:54
合計ジャッジ時間 2,851 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,624 KB
testcase_01 AC 26 ms
10,496 KB
testcase_02 AC 27 ms
10,496 KB
testcase_03 AC 26 ms
10,496 KB
testcase_04 AC 27 ms
10,496 KB
testcase_05 AC 28 ms
10,624 KB
testcase_06 AC 27 ms
10,496 KB
testcase_07 AC 27 ms
10,496 KB
testcase_08 AC 83 ms
20,020 KB
testcase_09 AC 115 ms
22,676 KB
testcase_10 AC 102 ms
22,040 KB
testcase_11 AC 89 ms
20,132 KB
testcase_12 AC 53 ms
15,000 KB
testcase_13 AC 28 ms
10,496 KB
testcase_14 AC 26 ms
10,496 KB
testcase_15 AC 26 ms
10,496 KB
testcase_16 AC 27 ms
10,496 KB
testcase_17 AC 27 ms
10,496 KB
testcase_18 AC 76 ms
15,656 KB
testcase_19 AC 65 ms
14,364 KB
testcase_20 AC 54 ms
12,928 KB
testcase_21 AC 87 ms
16,032 KB
testcase_22 AC 57 ms
13,360 KB
testcase_23 AC 27 ms
10,624 KB
testcase_24 AC 121 ms
27,292 KB
testcase_25 AC 77 ms
11,836 KB
testcase_26 AC 38 ms
12,288 KB
testcase_27 AC 27 ms
10,496 KB
evil01.txt AC 123 ms
29,120 KB
evil02.txt AC 129 ms
29,244 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = input()
d = {}
for c in input().split():
    i = int(c)
    if i not in d:
        d.update({i:1})
    else:
        d[i] += 1
print(sum([1 for i in d.values() if i == 1]))
0