結果

問題 No.1687 What the Heck?
ユーザー roarisroaris
提出日時 2021-09-24 23:45:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 510 ms / 2,000 ms
コード長 282 bytes
コンパイル時間 146 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 108,160 KB
最終ジャッジ日時 2024-07-05 11:37:59
合計ジャッジ時間 5,373 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,504 KB
testcase_01 AC 39 ms
53,248 KB
testcase_02 AC 38 ms
53,632 KB
testcase_03 AC 38 ms
53,504 KB
testcase_04 AC 39 ms
53,632 KB
testcase_05 AC 38 ms
53,632 KB
testcase_06 AC 38 ms
53,760 KB
testcase_07 AC 199 ms
86,528 KB
testcase_08 AC 266 ms
92,032 KB
testcase_09 AC 195 ms
86,144 KB
testcase_10 AC 147 ms
82,688 KB
testcase_11 AC 151 ms
83,072 KB
testcase_12 AC 505 ms
107,904 KB
testcase_13 AC 510 ms
107,904 KB
testcase_14 AC 506 ms
107,904 KB
testcase_15 AC 502 ms
108,024 KB
testcase_16 AC 495 ms
108,160 KB
testcase_17 AC 80 ms
76,636 KB
testcase_18 AC 506 ms
107,904 KB
testcase_19 AC 48 ms
63,744 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
from collections import *

N = int(input())
P = list(map(int, input().split()))
Pi = [(P[i], i+1) for i in range(N)]
Pi.sort(reverse=True)
ans = 0
now = N*(N+1)//2

for _, i in Pi:
    now -= 2*i
    ans = max(ans, now)
    now += i

print(ans)
0