結果

問題 No.1687 What the Heck?
ユーザー とりゐとりゐ
提出日時 2021-09-24 21:28:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 584 ms / 2,000 ms
コード長 187 bytes
コンパイル時間 204 ms
コンパイル使用メモリ 82,816 KB
実行使用メモリ 113,152 KB
最終ジャッジ日時 2024-07-05 10:03:47
合計ジャッジ時間 5,983 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,712 KB
testcase_01 AC 38 ms
51,584 KB
testcase_02 AC 38 ms
51,584 KB
testcase_03 AC 39 ms
51,328 KB
testcase_04 AC 39 ms
51,840 KB
testcase_05 AC 38 ms
51,968 KB
testcase_06 AC 39 ms
51,712 KB
testcase_07 AC 223 ms
89,728 KB
testcase_08 AC 306 ms
97,920 KB
testcase_09 AC 218 ms
89,856 KB
testcase_10 AC 160 ms
84,864 KB
testcase_11 AC 171 ms
84,736 KB
testcase_12 AC 584 ms
112,384 KB
testcase_13 AC 580 ms
112,512 KB
testcase_14 AC 579 ms
112,640 KB
testcase_15 AC 568 ms
112,256 KB
testcase_16 AC 562 ms
113,152 KB
testcase_17 AC 85 ms
76,288 KB
testcase_18 AC 566 ms
112,384 KB
testcase_19 AC 49 ms
62,336 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
a=list(map(int,input().split()))
b=[]
for i in range(n):
  b.append((a[i],i+1))
b.sort()
ans=0
tmp=0
for i in range(n):
  ans=max(ans,tmp-b[i][1])
  tmp+=b[i][1]
print(ans)
0