結果

問題 No.1687 What the Heck?
ユーザー timitimi
提出日時 2021-09-28 09:45:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 102 ms / 2,000 ms
コード長 182 bytes
コンパイル時間 174 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 104,704 KB
最終ジャッジ日時 2024-07-07 12:54:29
合計ジャッジ時間 3,218 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,456 KB
testcase_01 AC 41 ms
51,968 KB
testcase_02 AC 41 ms
51,584 KB
testcase_03 AC 42 ms
51,584 KB
testcase_04 AC 41 ms
51,456 KB
testcase_05 AC 41 ms
52,096 KB
testcase_06 AC 41 ms
51,456 KB
testcase_07 AC 67 ms
75,136 KB
testcase_08 AC 74 ms
81,536 KB
testcase_09 AC 67 ms
74,752 KB
testcase_10 AC 61 ms
69,888 KB
testcase_11 AC 62 ms
70,400 KB
testcase_12 AC 102 ms
104,320 KB
testcase_13 AC 102 ms
104,320 KB
testcase_14 AC 101 ms
104,704 KB
testcase_15 AC 100 ms
104,320 KB
testcase_16 AC 101 ms
103,936 KB
testcase_17 AC 53 ms
62,592 KB
testcase_18 AC 101 ms
104,320 KB
testcase_19 AC 50 ms
60,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
A=list(map(int, input().split()))
D=[0]*N
for i in range(N):
  D[A[i]-1]=i+1
d=sum(A)
ans=0
for i in range(N):
  e=d-2*D[-1-i]
  ans=max(ans,e)
  d-=D[-1-i]
print(ans)
0