結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 92 ms
96,000 KB
testcase_05 AC 41 ms
51,840 KB
testcase_06 AC 77 ms
85,120 KB
testcase_07 AC 92 ms
93,056 KB
testcase_08 AC 90 ms
93,696 KB
testcase_09 AC 41 ms
52,096 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 43 ms
52,096 KB
testcase_21 AC 41 ms
52,096 KB
testcase_22 AC 41 ms
51,712 KB
testcase_23 AC 41 ms
52,352 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