結果

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

ソースコード

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