結果

問題 No.1687 What the Heck?
ユーザー Mik10Mik10
提出日時 2021-10-06 15:39:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 384 ms / 2,000 ms
コード長 329 bytes
コンパイル時間 304 ms
コンパイル使用メモリ 82,464 KB
実行使用メモリ 109,660 KB
最終ジャッジ日時 2024-07-23 02:53:15
合計ジャッジ時間 4,531 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,956 KB
testcase_01 AC 37 ms
52,772 KB
testcase_02 AC 35 ms
53,236 KB
testcase_03 AC 36 ms
52,300 KB
testcase_04 AC 36 ms
52,304 KB
testcase_05 AC 38 ms
52,944 KB
testcase_06 AC 36 ms
52,524 KB
testcase_07 AC 151 ms
97,024 KB
testcase_08 AC 190 ms
102,388 KB
testcase_09 AC 154 ms
97,220 KB
testcase_10 AC 98 ms
81,064 KB
testcase_11 AC 100 ms
80,692 KB
testcase_12 AC 379 ms
109,660 KB
testcase_13 AC 384 ms
109,028 KB
testcase_14 AC 384 ms
109,252 KB
testcase_15 AC 381 ms
109,016 KB
testcase_16 AC 372 ms
108,752 KB
testcase_17 AC 57 ms
68,376 KB
testcase_18 AC 374 ms
109,388 KB
testcase_19 AC 45 ms
62,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
suzu = list(map(int, input().split()))
p = ptotal = draw = ans = 0
ptlst = []
for i in suzu:
    p += 1
    ptlst.append([i, p])
    ptotal += p
ptlst.sort(key=lambda x:x[0])

for i in range(n-1, 0, -1):
    pt = ptotal - ptlst[i][1]*2 - draw
    draw += ptlst[i][1]
    ans = pt if ans < pt else ans
print (ans)
0