結果

問題 No.1525 Meximum Sum
ユーザー chineristACchineristAC
提出日時 2021-05-30 10:21:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 121 ms / 2,000 ms
コード長 565 bytes
コンパイル時間 176 ms
コンパイル使用メモリ 82,044 KB
実行使用メモリ 107,136 KB
最終ジャッジ日時 2024-11-08 20:46:23
合計ジャッジ時間 3,640 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
55,424 KB
testcase_01 AC 52 ms
55,424 KB
testcase_02 AC 53 ms
55,680 KB
testcase_03 AC 52 ms
55,680 KB
testcase_04 AC 51 ms
55,808 KB
testcase_05 AC 52 ms
55,552 KB
testcase_06 AC 52 ms
55,808 KB
testcase_07 AC 51 ms
55,936 KB
testcase_08 AC 97 ms
94,848 KB
testcase_09 AC 112 ms
105,216 KB
testcase_10 AC 74 ms
75,904 KB
testcase_11 AC 80 ms
83,072 KB
testcase_12 AC 103 ms
98,944 KB
testcase_13 AC 118 ms
107,136 KB
testcase_14 AC 119 ms
107,008 KB
testcase_15 AC 117 ms
106,880 KB
testcase_16 AC 119 ms
107,136 KB
testcase_17 AC 118 ms
107,008 KB
testcase_18 AC 118 ms
106,880 KB
testcase_19 AC 120 ms
107,136 KB
testcase_20 AC 118 ms
107,008 KB
testcase_21 AC 121 ms
107,008 KB
testcase_22 AC 118 ms
107,008 KB
testcase_23 AC 114 ms
107,136 KB
testcase_24 AC 117 ms
107,008 KB
testcase_25 AC 115 ms
107,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys,random,bisect
from collections import deque,defaultdict
from heapq import heapify,heappop,heappush
from itertools import permutations
from math import gcd,log

input = lambda :sys.stdin.readline().rstrip()
mi = lambda :map(int,input().split())
li = lambda :list(mi())

mod = 998888353

N = int(input())
A = li()

pos = [-1 for i in range(N)]
for i in range(N):
    pos[A[i]] = i

L,R = pos[0],pos[0]
res = N
for i in range(1,N):
    pre = (L+1)*(N-R)
    L = min(L,pos[i])
    R = max(R,pos[i])
    new = (L+1)*(N-R)
    res += i * (pre-new)

print(res)
0