結果

問題 No.182 新規性の虜
ユーザー hkawa117hkawa117
提出日時 2015-09-10 01:11:08
言語 Python2
(2.7.18)
結果
AC  
実行時間 64 ms / 5,000 ms
コード長 207 bytes
コンパイル時間 49 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 24,432 KB
最終ジャッジ日時 2024-06-08 03:15:32
合計ジャッジ時間 1,783 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 10 ms
6,144 KB
testcase_01 AC 9 ms
6,144 KB
testcase_02 AC 10 ms
6,272 KB
testcase_03 AC 10 ms
6,272 KB
testcase_04 AC 10 ms
6,144 KB
testcase_05 AC 10 ms
6,272 KB
testcase_06 AC 10 ms
6,144 KB
testcase_07 AC 10 ms
6,272 KB
testcase_08 AC 37 ms
14,560 KB
testcase_09 AC 53 ms
17,436 KB
testcase_10 AC 46 ms
16,560 KB
testcase_11 AC 40 ms
15,464 KB
testcase_12 AC 25 ms
12,524 KB
testcase_13 AC 10 ms
6,144 KB
testcase_14 AC 10 ms
6,144 KB
testcase_15 AC 10 ms
6,016 KB
testcase_16 AC 10 ms
6,016 KB
testcase_17 AC 9 ms
6,272 KB
testcase_18 AC 45 ms
13,680 KB
testcase_19 AC 36 ms
11,864 KB
testcase_20 AC 26 ms
9,984 KB
testcase_21 AC 52 ms
14,464 KB
testcase_22 AC 29 ms
10,684 KB
testcase_23 AC 10 ms
6,144 KB
testcase_24 AC 64 ms
24,432 KB
testcase_25 AC 42 ms
9,984 KB
testcase_26 AC 15 ms
8,064 KB
testcase_27 AC 10 ms
6,016 KB
evil01.txt AC 65 ms
24,976 KB
evil02.txt AC 66 ms
24,980 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(raw_input())
input = raw_input().strip().split()
ans = {}
for i in range(N):
    if ans.has_key(input[i]):
        ans[input[i]] += 1
    else:
        ans[input[i]] = 1

print ans.values().count(1)
0