結果

問題 No.2036 Max Middle
ユーザー mkawa2mkawa2
提出日時 2022-08-12 22:55:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 116 ms / 2,000 ms
コード長 1,026 bytes
コンパイル時間 153 ms
コンパイル使用メモリ 82,196 KB
実行使用メモリ 113,620 KB
最終ジャッジ日時 2024-09-23 03:35:11
合計ジャッジ時間 2,725 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,740 KB
testcase_01 AC 39 ms
53,104 KB
testcase_02 AC 38 ms
53,176 KB
testcase_03 AC 39 ms
52,532 KB
testcase_04 AC 39 ms
54,064 KB
testcase_05 AC 37 ms
53,016 KB
testcase_06 AC 38 ms
52,848 KB
testcase_07 AC 38 ms
53,088 KB
testcase_08 AC 80 ms
91,952 KB
testcase_09 AC 103 ms
105,184 KB
testcase_10 AC 115 ms
105,760 KB
testcase_11 AC 103 ms
113,620 KB
testcase_12 AC 96 ms
111,260 KB
testcase_13 AC 116 ms
106,404 KB
testcase_14 AC 47 ms
62,648 KB
testcase_15 AC 45 ms
62,540 KB
testcase_16 AC 111 ms
106,660 KB
testcase_17 AC 92 ms
106,708 KB
testcase_18 AC 93 ms
109,852 KB
testcase_19 AC 95 ms
111,388 KB
testcase_20 AC 104 ms
112,852 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

# sys.setrecursionlimit(200005)
int1 = lambda x: int(x)-1
pDB = lambda *x: print(*x, end="\n", file=sys.stderr)
p2D = lambda x: print(*x, sep="\n", end="\n\n", file=sys.stderr)
def II(): return int(sys.stdin.readline())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LI1(): return list(map(int1, sys.stdin.readline().split()))
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
def SI(): return sys.stdin.readline().rstrip()
dij = [(0, 1), (-1, 0), (0, -1), (1, 0)]
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)]
inf = (1 << 63)-1
# inf = (1 << 31)-1
# md = 10**9+7
md = 998244353

def cal(aa):
    res = [0]*n
    for i in range(1, n):
        if aa[i-1] < aa[i]:
            res[i] = res[i-1]+1
        else:
            res[i] = res[i-1]
    return res

n = II()
aa = LI()
ll = cal(aa[:])
rr = cal(aa[::-1])[::-1]

ans = 0
for l, r in zip(ll, rr):
    ans += min(l, r)

print(ans)
0