結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,684 KB
testcase_01 AC 37 ms
53,636 KB
testcase_02 AC 37 ms
52,828 KB
testcase_03 AC 37 ms
52,544 KB
testcase_04 AC 38 ms
52,436 KB
testcase_05 AC 37 ms
51,880 KB
testcase_06 AC 37 ms
52,332 KB
testcase_07 AC 69 ms
87,456 KB
testcase_08 AC 81 ms
98,628 KB
testcase_09 AC 71 ms
87,612 KB
testcase_10 AC 62 ms
79,888 KB
testcase_11 AC 62 ms
80,692 KB
testcase_12 AC 134 ms
121,984 KB
testcase_13 AC 133 ms
122,192 KB
testcase_14 AC 132 ms
122,028 KB
testcase_15 AC 133 ms
121,836 KB
testcase_16 AC 134 ms
123,932 KB
testcase_17 AC 49 ms
65,936 KB
testcase_18 AC 134 ms
122,156 KB
testcase_19 AC 43 ms
60,964 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