結果

問題 No.182 新規性の虜
ユーザー hkawa117hkawa117
提出日時 2015-09-10 01:11:08
言語 Python2
(2.7.18)
結果
AC  
実行時間 64 ms / 5,000 ms
コード長 207 bytes
コンパイル時間 554 ms
コンパイル使用メモリ 6,508 KB
実行使用メモリ 23,736 KB
最終ジャッジ日時 2023-08-27 07:31:28
合計ジャッジ時間 2,816 ms
ジャッジサーバーID
(参考情報)
judge11 / judge13
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 11 ms
5,844 KB
testcase_01 AC 11 ms
5,892 KB
testcase_02 AC 11 ms
6,004 KB
testcase_03 AC 11 ms
5,944 KB
testcase_04 AC 11 ms
5,964 KB
testcase_05 AC 10 ms
5,920 KB
testcase_06 AC 11 ms
5,848 KB
testcase_07 AC 11 ms
5,844 KB
testcase_08 AC 39 ms
14,372 KB
testcase_09 AC 54 ms
17,316 KB
testcase_10 AC 47 ms
15,936 KB
testcase_11 AC 43 ms
15,108 KB
testcase_12 AC 26 ms
11,988 KB
testcase_13 AC 11 ms
5,952 KB
testcase_14 AC 11 ms
6,012 KB
testcase_15 AC 10 ms
5,848 KB
testcase_16 AC 10 ms
6,028 KB
testcase_17 AC 10 ms
5,964 KB
testcase_18 AC 46 ms
13,160 KB
testcase_19 AC 36 ms
11,276 KB
testcase_20 AC 26 ms
9,412 KB
testcase_21 AC 52 ms
14,016 KB
testcase_22 AC 31 ms
10,364 KB
testcase_23 AC 11 ms
6,004 KB
testcase_24 AC 64 ms
23,736 KB
testcase_25 AC 43 ms
9,688 KB
testcase_26 AC 16 ms
7,916 KB
testcase_27 AC 11 ms
6,008 KB
evil01.txt AC 66 ms
24,732 KB
evil02.txt AC 65 ms
24,812 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