結果

問題 No.116 門松列(1)
ユーザー GrayCoder
提出日時 2017-10-08 17:27:02
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 305 bytes
コンパイル時間 430 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-11-17 05:42:18
合計ジャッジ時間 2,202 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2 WA * 1
other AC * 12 WA * 9
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    N = int(input())
    A = tuple(map(int, input().split()))

    ans = 0
    for i in range(N - 2):
        max_ = max(A[i], A[i+1], A[i+2])
        min_ = min(A[i], A[i+1], A[i+2])
        if A[i+1] == min_ or A[i+1] == max_ and A[i] != A[i+2]:
            ans += 1

    print(ans)

main()
0