結果

問題 No.116 門松列(1)
ユーザー yuyyuyuyuyyuyu
提出日時 2015-08-04 15:53:49
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 75 ms / 5,000 ms
コード長 189 bytes
コンパイル時間 1,400 ms
コンパイル使用メモリ 76,804 KB
実行使用メモリ 75,808 KB
最終ジャッジ日時 2024-06-25 01:07:15
合計ジャッジ時間 3,983 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 72 ms
75,408 KB
testcase_01 AC 72 ms
75,520 KB
testcase_02 AC 73 ms
75,144 KB
testcase_03 AC 74 ms
75,164 KB
testcase_04 AC 71 ms
75,532 KB
testcase_05 AC 74 ms
75,684 KB
testcase_06 AC 73 ms
75,324 KB
testcase_07 AC 72 ms
75,580 KB
testcase_08 AC 72 ms
75,808 KB
testcase_09 AC 71 ms
75,780 KB
testcase_10 AC 72 ms
75,288 KB
testcase_11 AC 71 ms
75,424 KB
testcase_12 AC 72 ms
75,156 KB
testcase_13 AC 73 ms
75,280 KB
testcase_14 AC 75 ms
75,384 KB
testcase_15 AC 73 ms
75,276 KB
testcase_16 AC 73 ms
75,164 KB
testcase_17 AC 73 ms
75,300 KB
testcase_18 AC 74 ms
75,408 KB
testcase_19 AC 74 ms
75,704 KB
testcase_20 AC 72 ms
75,160 KB
testcase_21 AC 73 ms
75,672 KB
testcase_22 AC 74 ms
75,696 KB
testcase_23 AC 74 ms
75,412 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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