結果

問題 No.1687 What the Heck?
ユーザー rlangevinrlangevin
提出日時 2023-01-09 14:07:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 136 ms / 2,000 ms
コード長 225 bytes
コンパイル時間 294 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 126,036 KB
最終ジャッジ日時 2024-05-09 23:18:34
合計ジャッジ時間 2,754 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,840 KB
testcase_01 AC 37 ms
51,968 KB
testcase_02 AC 37 ms
52,096 KB
testcase_03 AC 36 ms
52,096 KB
testcase_04 AC 37 ms
52,096 KB
testcase_05 AC 37 ms
51,712 KB
testcase_06 AC 40 ms
51,840 KB
testcase_07 AC 73 ms
86,656 KB
testcase_08 AC 84 ms
98,304 KB
testcase_09 AC 75 ms
87,040 KB
testcase_10 AC 62 ms
78,464 KB
testcase_11 AC 63 ms
79,232 KB
testcase_12 AC 129 ms
123,904 KB
testcase_13 AC 132 ms
124,012 KB
testcase_14 AC 136 ms
123,904 KB
testcase_15 AC 132 ms
123,904 KB
testcase_16 AC 129 ms
126,036 KB
testcase_17 AC 49 ms
64,896 KB
testcase_18 AC 134 ms
123,904 KB
testcase_19 AC 45 ms
60,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
P = list(map(int, input().split()))
D = dict()
for i in range(N):
    D[P[i]] = i + 1
ans = 0
start = N * (N + 1)//2
for i in range(N, 0, -1):
    ans = max(ans, start - 2 * D[i])
    start -= D[i]
print(ans)
0