結果

問題 No.2036 Max Middle
ユーザー ntudantuda
提出日時 2022-08-16 11:56:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 105 ms / 2,000 ms
コード長 268 bytes
コンパイル時間 223 ms
コンパイル使用メモリ 82,340 KB
実行使用メモリ 108,664 KB
最終ジャッジ日時 2024-10-03 03:47:17
合計ジャッジ時間 3,280 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,224 KB
testcase_01 AC 35 ms
51,756 KB
testcase_02 AC 35 ms
51,968 KB
testcase_03 AC 35 ms
51,584 KB
testcase_04 AC 36 ms
51,328 KB
testcase_05 AC 35 ms
51,712 KB
testcase_06 AC 35 ms
52,096 KB
testcase_07 AC 35 ms
51,968 KB
testcase_08 AC 71 ms
88,576 KB
testcase_09 AC 94 ms
106,008 KB
testcase_10 AC 102 ms
101,504 KB
testcase_11 AC 92 ms
108,416 KB
testcase_12 AC 91 ms
106,008 KB
testcase_13 AC 105 ms
102,376 KB
testcase_14 AC 46 ms
61,568 KB
testcase_15 AC 43 ms
60,544 KB
testcase_16 AC 102 ms
102,056 KB
testcase_17 AC 81 ms
100,736 KB
testcase_18 AC 82 ms
104,320 KB
testcase_19 AC 87 ms
106,444 KB
testcase_20 AC 92 ms
108,664 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int, input().split()))
B = [0] * N

for i in range(1, N):
    B[i] = B[i - 1] + 1 - 2 * (A[i - 1] > A[i])

xb = (B[0] - B[-1] + N) // 2
c = 0
ans = 0
for i in range(1, N):
    c += 1 - 2 * (i <= xb)
    ans += (B[i] - c)

print(ans // 2)
0