結果

問題 No.182 新規性の虜
ユーザー pluto77pluto77
提出日時 2016-02-26 09:27:14
言語 Python2
(2.7.18)
結果
AC  
実行時間 83 ms / 5,000 ms
コード長 300 bytes
コンパイル時間 474 ms
コンパイル使用メモリ 6,912 KB
実行使用メモリ 12,416 KB
最終ジャッジ日時 2024-06-08 06:04:25
合計ジャッジ時間 2,231 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 9 ms
6,016 KB
testcase_01 AC 9 ms
6,144 KB
testcase_02 AC 9 ms
6,016 KB
testcase_03 AC 9 ms
6,144 KB
testcase_04 AC 9 ms
6,272 KB
testcase_05 AC 9 ms
6,016 KB
testcase_06 AC 9 ms
6,144 KB
testcase_07 AC 9 ms
6,272 KB
testcase_08 AC 51 ms
9,344 KB
testcase_09 AC 83 ms
11,648 KB
testcase_10 AC 74 ms
10,880 KB
testcase_11 AC 60 ms
10,240 KB
testcase_12 AC 29 ms
7,808 KB
testcase_13 AC 10 ms
6,144 KB
testcase_14 AC 9 ms
6,144 KB
testcase_15 AC 9 ms
6,016 KB
testcase_16 AC 9 ms
6,144 KB
testcase_17 AC 9 ms
6,016 KB
testcase_18 AC 61 ms
10,752 KB
testcase_19 AC 46 ms
9,472 KB
testcase_20 AC 31 ms
8,320 KB
testcase_21 AC 66 ms
11,264 KB
testcase_22 AC 36 ms
8,704 KB
testcase_23 AC 10 ms
6,144 KB
testcase_24 AC 53 ms
12,416 KB
testcase_25 AC 26 ms
7,424 KB
testcase_26 AC 17 ms
6,656 KB
testcase_27 AC 10 ms
6,144 KB
evil01.txt AC 57 ms
12,800 KB
evil02.txt AC 55 ms
12,672 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()
if n==1:
 print 1
 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