結果

問題 No.1687 What the Heck?
ユーザー O2MTO2MT
提出日時 2021-09-29 14:29:45
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 345 bytes
コンパイル時間 1,724 ms
コンパイル使用メモリ 81,876 KB
実行使用メモリ 110,676 KB
最終ジャッジ日時 2024-07-16 10:39:45
合計ジャッジ時間 7,343 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,968 KB
testcase_01 AC 37 ms
52,560 KB
testcase_02 AC 39 ms
52,524 KB
testcase_03 WA -
testcase_04 AC 36 ms
53,816 KB
testcase_05 AC 36 ms
52,200 KB
testcase_06 AC 35 ms
53,624 KB
testcase_07 AC 211 ms
86,500 KB
testcase_08 AC 290 ms
92,188 KB
testcase_09 AC 211 ms
86,428 KB
testcase_10 AC 146 ms
82,916 KB
testcase_11 AC 159 ms
83,196 KB
testcase_12 AC 554 ms
110,580 KB
testcase_13 AC 550 ms
110,676 KB
testcase_14 AC 564 ms
110,272 KB
testcase_15 AC 563 ms
110,348 KB
testcase_16 AC 552 ms
110,280 KB
testcase_17 AC 72 ms
76,280 KB
testcase_18 AC 560 ms
110,420 KB
testcase_19 AC 48 ms
63,476 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):
  k,v = A[i]
  a = ac_A[i-1]
  num = min(num,a+2*v)

ans -= num
print(ans)
0