結果

問題 No.116 門松列(1)
ユーザー brthyyjpbrthyyjp
提出日時 2020-04-17 14:37:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 38 ms / 5,000 ms
コード長 290 bytes
コンパイル時間 228 ms
コンパイル使用メモリ 82,580 KB
実行使用メモリ 53,480 KB
最終ジャッジ日時 2024-04-14 12:38:12
合計ジャッジ時間 2,156 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,736 KB
testcase_01 AC 38 ms
52,488 KB
testcase_02 AC 38 ms
52,312 KB
testcase_03 AC 37 ms
53,304 KB
testcase_04 AC 38 ms
51,940 KB
testcase_05 AC 37 ms
52,892 KB
testcase_06 AC 38 ms
52,484 KB
testcase_07 AC 38 ms
52,744 KB
testcase_08 AC 38 ms
53,212 KB
testcase_09 AC 38 ms
53,416 KB
testcase_10 AC 38 ms
53,196 KB
testcase_11 AC 38 ms
52,580 KB
testcase_12 AC 37 ms
51,940 KB
testcase_13 AC 38 ms
53,480 KB
testcase_14 AC 37 ms
52,948 KB
testcase_15 AC 38 ms
52,700 KB
testcase_16 AC 38 ms
53,408 KB
testcase_17 AC 38 ms
53,160 KB
testcase_18 AC 37 ms
52,788 KB
testcase_19 AC 38 ms
53,184 KB
testcase_20 AC 38 ms
52,136 KB
testcase_21 AC 38 ms
52,616 KB
testcase_22 AC 37 ms
52,744 KB
testcase_23 AC 38 ms
52,152 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
A = list(map(int, input().split()))

ans = 0
for i in range(n-2):
    if A[i] == A[i+1] or A[i+1] == A[i+2] or A[i+2] == A[i]:
        continue
    if A[i] < A[i+1] and A[i+1] > A[i+2]:
        ans += 1
    if A[i] > A[i+1] and A[i+1] < A[i+2]:
        ans += 1
print(ans)
0