結果

問題 No.1687 What the Heck?
ユーザー rlangevinrlangevin
提出日時 2023-01-09 14:07:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 127 ms / 2,000 ms
コード長 225 bytes
コンパイル時間 544 ms
コンパイル使用メモリ 82,596 KB
実行使用メモリ 126,152 KB
最終ジャッジ日時 2024-12-17 17:56:07
合計ジャッジ時間 2,570 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,152 KB
testcase_01 AC 36 ms
52,608 KB
testcase_02 AC 36 ms
52,364 KB
testcase_03 AC 36 ms
52,084 KB
testcase_04 AC 35 ms
52,024 KB
testcase_05 AC 36 ms
53,576 KB
testcase_06 AC 35 ms
52,728 KB
testcase_07 AC 70 ms
87,456 KB
testcase_08 AC 83 ms
98,128 KB
testcase_09 AC 71 ms
88,360 KB
testcase_10 AC 63 ms
79,148 KB
testcase_11 AC 62 ms
80,356 KB
testcase_12 AC 125 ms
123,976 KB
testcase_13 AC 126 ms
124,072 KB
testcase_14 AC 126 ms
124,008 KB
testcase_15 AC 125 ms
123,884 KB
testcase_16 AC 127 ms
126,152 KB
testcase_17 AC 46 ms
65,380 KB
testcase_18 AC 125 ms
124,092 KB
testcase_19 AC 43 ms
61,592 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