結果

問題 No.1687 What the Heck?
ユーザー puznekopuzneko
提出日時 2021-11-23 22:38:12
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 734 ms / 2,000 ms
コード長 266 bytes
コンパイル時間 230 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 45,912 KB
最終ジャッジ日時 2024-06-25 20:21:09
合計ジャッジ時間 7,874 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
10,496 KB
testcase_01 AC 35 ms
10,752 KB
testcase_02 AC 34 ms
10,624 KB
testcase_03 AC 33 ms
10,752 KB
testcase_04 AC 35 ms
10,752 KB
testcase_05 AC 34 ms
10,752 KB
testcase_06 AC 34 ms
10,624 KB
testcase_07 AC 249 ms
23,124 KB
testcase_08 AC 352 ms
28,360 KB
testcase_09 AC 248 ms
23,008 KB
testcase_10 AC 166 ms
18,728 KB
testcase_11 AC 174 ms
19,312 KB
testcase_12 AC 713 ms
45,912 KB
testcase_13 AC 719 ms
45,772 KB
testcase_14 AC 729 ms
45,912 KB
testcase_15 AC 734 ms
45,792 KB
testcase_16 AC 720 ms
45,332 KB
testcase_17 AC 69 ms
13,184 KB
testcase_18 AC 723 ms
45,908 KB
testcase_19 AC 37 ms
10,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from sys import stdin

n, *a = map(int, stdin.read().split())
asort = []
for i in range(n):
    asort.append((-a[i],i+1))
asort.sort()

ans = 0
val = n * (n+1) // 2
for i in range(n):
    val -= asort[i][1]
    ans = max(ans,val-asort[i][1])
print("{}".format(ans))
0