結果

問題 No.182 新規性の虜
ユーザー pluto77pluto77
提出日時 2016-02-07 17:02:39
言語 Python2
(2.7.18)
結果
WA  
実行時間 -
コード長 272 bytes
コンパイル時間 51 ms
コンパイル使用メモリ 6,912 KB
実行使用メモリ 12,416 KB
最終ジャッジ日時 2024-09-21 21:33:30
合計ジャッジ時間 2,285 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 12 ms
6,272 KB
testcase_01 AC 11 ms
6,144 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 11 ms
6,144 KB
testcase_14 WA -
testcase_15 RE -
testcase_16 AC 12 ms
6,272 KB
testcase_17 AC 11 ms
6,144 KB
testcase_18 AC 70 ms
10,752 KB
testcase_19 AC 51 ms
9,472 KB
testcase_20 AC 35 ms
8,192 KB
testcase_21 AC 79 ms
11,392 KB
testcase_22 AC 43 ms
8,832 KB
testcase_23 RE -
testcase_24 WA -
testcase_25 AC 30 ms
7,296 KB
testcase_26 WA -
testcase_27 AC 12 ms
6,272 KB
evil01.txt WA -
evil02.txt WA -
権限があれば一括ダウンロードができます

ソースコード

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(1,len(s)-2):
 if s[i]<s[i+1] and s[i+2]>s[i+1]:
  cnt+=1

print cnt
0