結果

問題 No.182 新規性の虜
ユーザー roiti46roiti46
提出日時 2015-04-16 23:22:36
言語 Python2
(2.7.18)
結果
RE  
実行時間 -
コード長 192 bytes
コンパイル時間 226 ms
コンパイル使用メモリ 7,072 KB
実行使用メモリ 14,992 KB
最終ジャッジ日時 2024-07-04 15:02:43
合計ジャッジ時間 2,217 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 20 ms
7,040 KB
testcase_01 AC 19 ms
7,040 KB
testcase_02 AC 19 ms
7,168 KB
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
testcase_13 AC 19 ms
7,040 KB
testcase_14 AC 19 ms
7,168 KB
testcase_15 AC 20 ms
7,168 KB
testcase_16 AC 19 ms
7,040 KB
testcase_17 AC 19 ms
7,168 KB
testcase_18 AC 61 ms
12,528 KB
testcase_19 AC 51 ms
10,844 KB
testcase_20 AC 37 ms
8,960 KB
testcase_21 AC 68 ms
13,628 KB
testcase_22 AC 42 ms
9,788 KB
testcase_23 AC 19 ms
7,040 KB
testcase_24 AC 81 ms
14,992 KB
testcase_25 AC 65 ms
8,060 KB
testcase_26 RE -
testcase_27 AC 20 ms
7,040 KB
evil01.txt RE -
evil02.txt RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(raw_input())
A = map(int, raw_input().split())
histo = [0]*100001
for a in A:
    histo[a-1] += 1

ans = 0
for i in xrange(100001):
    if histo[i] == 1:
        ans += 1
print ans    
0