結果

問題 No.1687 What the Heck?
ユーザー lllllll88938494lllllll88938494
提出日時 2022-09-13 01:02:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 132 ms / 2,000 ms
コード長 209 bytes
コンパイル時間 179 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 123,648 KB
最終ジャッジ日時 2024-05-07 11:10:21
合計ジャッジ時間 3,152 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,584 KB
testcase_01 AC 35 ms
51,584 KB
testcase_02 AC 35 ms
51,328 KB
testcase_03 AC 36 ms
51,840 KB
testcase_04 AC 36 ms
51,584 KB
testcase_05 AC 35 ms
52,096 KB
testcase_06 AC 36 ms
51,328 KB
testcase_07 AC 81 ms
87,040 KB
testcase_08 AC 85 ms
98,048 KB
testcase_09 AC 73 ms
86,656 KB
testcase_10 AC 72 ms
78,720 KB
testcase_11 AC 62 ms
79,360 KB
testcase_12 AC 129 ms
122,112 KB
testcase_13 AC 132 ms
122,240 KB
testcase_14 AC 132 ms
121,856 KB
testcase_15 AC 132 ms
122,112 KB
testcase_16 AC 132 ms
123,648 KB
testcase_17 AC 50 ms
65,280 KB
testcase_18 AC 128 ms
121,600 KB
testcase_19 AC 44 ms
60,160 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
a=list(map(int,input().split()))
now=sum(a)
dic={}
ans=0

for i in range(n):
    dic[a[i]] = i+1
    
for i in range(n,0,-1):
    ans=max(now - dic[i]*2 , ans)
    now -= dic[i]

print(ans)
    
0