結果

問題 No.1687 What the Heck?
ユーザー yudai1102jpyudai1102jp
提出日時 2021-09-24 21:44:09
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 560 ms / 2,000 ms
コード長 264 bytes
コンパイル時間 86 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 45,948 KB
最終ジャッジ日時 2024-07-05 10:20:23
合計ジャッジ時間 5,434 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 29 ms
10,624 KB
testcase_02 AC 31 ms
10,624 KB
testcase_03 AC 30 ms
10,624 KB
testcase_04 AC 29 ms
10,496 KB
testcase_05 AC 32 ms
10,624 KB
testcase_06 AC 30 ms
10,496 KB
testcase_07 AC 175 ms
23,064 KB
testcase_08 AC 260 ms
28,464 KB
testcase_09 AC 173 ms
22,968 KB
testcase_10 AC 119 ms
18,984 KB
testcase_11 AC 125 ms
19,012 KB
testcase_12 AC 560 ms
45,680 KB
testcase_13 AC 559 ms
45,840 KB
testcase_14 AC 553 ms
45,948 KB
testcase_15 AC 559 ms
45,844 KB
testcase_16 AC 550 ms
45,228 KB
testcase_17 AC 56 ms
12,928 KB
testcase_18 AC 556 ms
45,700 KB
testcase_19 AC 33 ms
11,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())

P = list(map(int, input().split()))
P_index = [[P[i], i+1] for i in range(N)]

P_index.sort(key=lambda x: x[0], reverse=True)
ans = 0
Sum = (1+N)*N//2
for i in range(N):
    ans = max(ans, Sum-2*P_index[i][1])
    Sum -= P_index[i][1]
print(ans)
0