結果

問題 No.1687 What the Heck?
ユーザー O2MTO2MT
提出日時 2021-09-29 14:43:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 558 ms / 2,000 ms
コード長 342 bytes
コンパイル時間 188 ms
コンパイル使用メモリ 82,264 KB
実行使用メモリ 110,544 KB
最終ジャッジ日時 2024-07-16 10:50:13
合計ジャッジ時間 5,881 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,072 KB
testcase_01 AC 36 ms
51,828 KB
testcase_02 AC 38 ms
52,264 KB
testcase_03 AC 36 ms
52,136 KB
testcase_04 AC 34 ms
53,352 KB
testcase_05 AC 35 ms
52,072 KB
testcase_06 AC 36 ms
53,672 KB
testcase_07 AC 206 ms
86,452 KB
testcase_08 AC 293 ms
92,028 KB
testcase_09 AC 211 ms
86,300 KB
testcase_10 AC 144 ms
83,328 KB
testcase_11 AC 152 ms
82,952 KB
testcase_12 AC 553 ms
110,356 KB
testcase_13 AC 550 ms
110,416 KB
testcase_14 AC 558 ms
110,456 KB
testcase_15 AC 550 ms
110,292 KB
testcase_16 AC 531 ms
110,544 KB
testcase_17 AC 70 ms
76,416 KB
testcase_18 AC 533 ms
110,420 KB
testcase_19 AC 46 ms
63,236 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
P = list(map(int,input().split()))

if len(P) == 1:
  print(0)
  exit()

A = [(P[i],i+1) for i in range(N)]
A.sort(reverse=True)
ac_A = [A[0][1]]

for i in range(1,N):
  ac_A.append(ac_A[-1]+A[i][1])

ans = N*(N+1)//2
num = 2*A[0][1]

for i in range(1,N):
  num = min(num,ac_A[i-1]+2*A[i][1])

ans = max(0,ans-num)
print(ans)
0