結果

問題 No.182 新規性の虜
ユーザー pluto77pluto77
提出日時 2016-02-26 09:24:55
言語 Python2
(2.7.18)
結果
RE  
実行時間 -
コード長 270 bytes
コンパイル時間 107 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 12,416 KB
最終ジャッジ日時 2024-09-22 13:55:34
合計ジャッジ時間 2,096 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 11 ms
6,812 KB
testcase_01 AC 11 ms
6,940 KB
testcase_02 AC 10 ms
6,940 KB
testcase_03 AC 10 ms
6,940 KB
testcase_04 AC 10 ms
6,940 KB
testcase_05 AC 10 ms
6,940 KB
testcase_06 AC 10 ms
6,940 KB
testcase_07 AC 10 ms
6,940 KB
testcase_08 AC 57 ms
9,728 KB
testcase_09 AC 92 ms
11,904 KB
testcase_10 AC 79 ms
11,008 KB
testcase_11 AC 65 ms
10,240 KB
testcase_12 AC 32 ms
7,936 KB
testcase_13 AC 10 ms
6,940 KB
testcase_14 AC 10 ms
6,940 KB
testcase_15 RE -
testcase_16 AC 10 ms
6,944 KB
testcase_17 AC 10 ms
6,944 KB
testcase_18 AC 65 ms
10,880 KB
testcase_19 AC 49 ms
9,600 KB
testcase_20 AC 34 ms
8,192 KB
testcase_21 AC 74 ms
11,392 KB
testcase_22 AC 40 ms
8,704 KB
testcase_23 RE -
testcase_24 AC 61 ms
12,416 KB
testcase_25 AC 29 ms
7,424 KB
testcase_26 AC 19 ms
6,944 KB
testcase_27 AC 11 ms
6,940 KB
evil01.txt AC 61 ms
12,800 KB
evil02.txt AC 60 ms
12,800 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#coding: utf-8
##yuki_182

import sys

n=int(raw_input())
s=[]
s=raw_input().split()
if len(s)!=n:
 print "error"
 sys.exit()

s.sort()
cnt=0
if s[0]<s[1]:
 cnt=1
if s[-1]!=s[-2]:
 cnt+=1
for i in xrange(len(s)-2):
 if s[i]<s[i+1] and s[i+2]>s[i+1]:
  cnt+=1

print cnt
0