結果

問題 No.1525 Meximum Sum
ユーザー NatsubiSoganNatsubiSogan
提出日時 2021-08-11 13:20:49
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 360 ms / 2,000 ms
コード長 207 bytes
コンパイル時間 188 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 29,664 KB
最終ジャッジ日時 2024-09-24 23:45:46
合計ジャッジ時間 8,686 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,752 KB
testcase_01 AC 26 ms
10,880 KB
testcase_02 AC 26 ms
10,752 KB
testcase_03 AC 27 ms
10,624 KB
testcase_04 AC 26 ms
10,752 KB
testcase_05 AC 26 ms
10,624 KB
testcase_06 AC 26 ms
10,752 KB
testcase_07 AC 26 ms
10,880 KB
testcase_08 AC 227 ms
24,076 KB
testcase_09 AC 288 ms
27,872 KB
testcase_10 AC 108 ms
16,104 KB
testcase_11 AC 150 ms
18,756 KB
testcase_12 AC 274 ms
26,584 KB
testcase_13 AC 350 ms
29,532 KB
testcase_14 AC 343 ms
29,528 KB
testcase_15 AC 338 ms
29,660 KB
testcase_16 AC 345 ms
29,400 KB
testcase_17 AC 360 ms
29,532 KB
testcase_18 AC 346 ms
29,528 KB
testcase_19 AC 337 ms
29,656 KB
testcase_20 AC 337 ms
29,532 KB
testcase_21 AC 345 ms
29,528 KB
testcase_22 AC 355 ms
29,664 KB
testcase_23 AC 339 ms
29,532 KB
testcase_24 AC 318 ms
29,456 KB
testcase_25 AC 348 ms
29,536 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = list(map(int, input().split()))
p = [0] * n
for i in range(n): p[a[i]] = i
ans = 0
l, r = n, -1
for i in range(n):
	l, r = min(l, p[i]), max(r, p[i])
	ans += (l + 1) * (n - r)
print(ans)
0