結果

問題 No.1188 レベルX門松列
ユーザー rlangevinrlangevin
提出日時 2023-01-11 22:15:08
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 450 bytes
コンパイル時間 157 ms
コンパイル使用メモリ 82,292 KB
実行使用メモリ 102,416 KB
最終ジャッジ日時 2024-06-02 00:16:41
合計ジャッジ時間 2,821 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 77 ms
96,508 KB
testcase_05 AC 32 ms
52,612 KB
testcase_06 AC 61 ms
86,492 KB
testcase_07 AC 73 ms
94,908 KB
testcase_08 AC 73 ms
93,992 KB
testcase_09 AC 33 ms
54,024 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 33 ms
52,120 KB
testcase_21 AC 33 ms
52,252 KB
testcase_22 AC 33 ms
52,524 KB
testcase_23 AC 33 ms
52,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
B = list(map(int, input().split()))
M, P = [0] * (N - 1), [0] * (N - 1)
for i in range(N - 1):
    if B[i] < B[i + 1]:
        P[i] = 1
    elif B[i] > B[i + 1]:
        M[i] = 1
Mc, Pc = [0] * N, [0] * N
for i in range(N - 1):
    Mc[i + 1] = Mc[i] + M[i]
    Pc[i + 1] = Pc[i] + P[i]
    
ans = 0
for i in range(N):
    v1 = min(Mc[i], Pc[N - 1] - Pc[i])
    v2 = min(Pc[i], Mc[N - 1] - Mc[i])
    ans = max(ans, v1, v2)
print(ans)
0