結果

問題 No.1525 Meximum Sum
ユーザー ああいいああいい
提出日時 2022-02-26 13:02:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 86 ms / 2,000 ms
コード長 446 bytes
コンパイル時間 158 ms
コンパイル使用メモリ 82,420 KB
実行使用メモリ 106,600 KB
最終ジャッジ日時 2024-07-04 09:09:00
合計ジャッジ時間 4,076 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,556 KB
testcase_01 AC 34 ms
53,284 KB
testcase_02 AC 35 ms
52,280 KB
testcase_03 AC 35 ms
52,504 KB
testcase_04 AC 36 ms
52,464 KB
testcase_05 AC 35 ms
52,556 KB
testcase_06 AC 36 ms
53,416 KB
testcase_07 AC 35 ms
52,560 KB
testcase_08 AC 65 ms
90,636 KB
testcase_09 AC 72 ms
99,100 KB
testcase_10 AC 50 ms
71,816 KB
testcase_11 AC 58 ms
79,448 KB
testcase_12 AC 72 ms
94,924 KB
testcase_13 AC 83 ms
104,280 KB
testcase_14 AC 82 ms
104,208 KB
testcase_15 AC 81 ms
105,028 KB
testcase_16 AC 82 ms
105,236 KB
testcase_17 AC 82 ms
104,092 KB
testcase_18 AC 82 ms
104,148 KB
testcase_19 AC 81 ms
104,188 KB
testcase_20 AC 81 ms
103,960 KB
testcase_21 AC 86 ms
106,600 KB
testcase_22 AC 81 ms
104,136 KB
testcase_23 AC 81 ms
105,260 KB
testcase_24 AC 82 ms
104,388 KB
testcase_25 AC 84 ms
104,924 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int,input().split()))
d = [0] * N
for i in range(N):
    d[A[i]] = i
left = d[0]
right = d[0]
ans = 0
for i in range(1,N):
    pos = d[i]
    if left <= pos <= right:
        continue
    if pos > right:
        l = left + 1
        r = pos - right
        ans += i *l * r
        right = pos
    elif pos < left:
        l = left - pos
        r = N - right
        ans += i * l * r
        left = pos
print(ans+N)
0