結果

問題 No.1525 Meximum Sum
ユーザー titiatitia
提出日時 2024-10-08 02:23:36
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 390 ms / 2,000 ms
コード長 285 bytes
コンパイル時間 201 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 29,544 KB
最終ジャッジ日時 2024-10-08 02:23:45
合計ジャッジ時間 8,245 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
10,752 KB
testcase_01 AC 28 ms
10,880 KB
testcase_02 AC 28 ms
10,880 KB
testcase_03 AC 27 ms
10,752 KB
testcase_04 AC 27 ms
10,752 KB
testcase_05 AC 28 ms
10,752 KB
testcase_06 AC 28 ms
10,752 KB
testcase_07 AC 28 ms
10,624 KB
testcase_08 AC 238 ms
23,812 KB
testcase_09 AC 296 ms
27,744 KB
testcase_10 AC 111 ms
16,068 KB
testcase_11 AC 157 ms
18,636 KB
testcase_12 AC 284 ms
25,440 KB
testcase_13 AC 338 ms
29,544 KB
testcase_14 AC 357 ms
29,404 KB
testcase_15 AC 381 ms
29,416 KB
testcase_16 AC 352 ms
29,412 KB
testcase_17 AC 357 ms
29,416 KB
testcase_18 AC 379 ms
29,412 KB
testcase_19 AC 365 ms
29,540 KB
testcase_20 AC 356 ms
29,540 KB
testcase_21 AC 358 ms
29,412 KB
testcase_22 AC 390 ms
29,416 KB
testcase_23 AC 340 ms
29,540 KB
testcase_24 AC 335 ms
29,544 KB
testcase_25 AC 364 ms
29,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N=int(input())
A=list(map(int,input().split()))

A_INV=[-1]*N

for i in range(N):
    A_INV[A[i]]=i

left=1<<60
right=-1

ANS=0

for i in range(N):
    left=min(left,A_INV[i])
    right=max(right,A_INV[i])

    ANS+=(left+1)*(N-right)

print(ANS)
0