結果

問題 No.182 新規性の虜
ユーザー yaoshimaxyaoshimax
提出日時 2015-05-09 18:48:57
言語 Python2
(2.7.18)
結果
AC  
実行時間 135 ms / 5,000 ms
コード長 175 bytes
コンパイル時間 1,013 ms
コンパイル使用メモリ 6,784 KB
実行使用メモリ 14,864 KB
最終ジャッジ日時 2024-12-26 19:10:14
合計ジャッジ時間 3,274 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 12 ms
6,144 KB
testcase_01 AC 14 ms
6,144 KB
testcase_02 AC 15 ms
6,016 KB
testcase_03 AC 12 ms
6,144 KB
testcase_04 AC 13 ms
6,144 KB
testcase_05 AC 12 ms
6,016 KB
testcase_06 AC 14 ms
6,144 KB
testcase_07 AC 12 ms
6,144 KB
testcase_08 AC 85 ms
10,504 KB
testcase_09 AC 135 ms
13,344 KB
testcase_10 AC 112 ms
12,464 KB
testcase_11 AC 97 ms
11,244 KB
testcase_12 AC 48 ms
8,300 KB
testcase_13 AC 12 ms
6,016 KB
testcase_14 AC 11 ms
6,016 KB
testcase_15 AC 13 ms
6,016 KB
testcase_16 AC 13 ms
6,144 KB
testcase_17 AC 12 ms
6,016 KB
testcase_18 AC 100 ms
12,396 KB
testcase_19 AC 76 ms
10,460 KB
testcase_20 AC 50 ms
8,832 KB
testcase_21 AC 113 ms
13,372 KB
testcase_22 AC 60 ms
9,600 KB
testcase_23 AC 13 ms
6,016 KB
testcase_24 AC 110 ms
14,864 KB
testcase_25 AC 76 ms
7,808 KB
testcase_26 AC 28 ms
7,040 KB
testcase_27 AC 12 ms
6,016 KB
evil01.txt AC 112 ms
14,800 KB
evil02.txt AC 114 ms
14,612 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(raw_input())
A=map(int,raw_input().split())
A.sort()
ans=0
for i,a in enumerate(A):
    if not ((i>0 and A[i-1]==a) or (i+1<N and A[i+1]==a)) :
        ans+=1
print ans
0