結果

問題 No.1687 What the Heck?
ユーザー tktk_snsntktk_snsn
提出日時 2021-09-24 23:28:02
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 318 ms / 2,000 ms
コード長 248 bytes
コンパイル時間 135 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 30,120 KB
最終ジャッジ日時 2024-07-05 11:35:03
合計ジャッジ時間 3,712 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,752 KB
testcase_01 AC 28 ms
10,624 KB
testcase_02 AC 29 ms
10,624 KB
testcase_03 AC 28 ms
10,624 KB
testcase_04 AC 27 ms
10,624 KB
testcase_05 AC 27 ms
10,624 KB
testcase_06 AC 27 ms
10,624 KB
testcase_07 AC 118 ms
17,600 KB
testcase_08 AC 167 ms
20,772 KB
testcase_09 AC 122 ms
17,700 KB
testcase_10 AC 90 ms
15,776 KB
testcase_11 AC 95 ms
15,628 KB
testcase_12 AC 318 ms
29,408 KB
testcase_13 AC 309 ms
29,408 KB
testcase_14 AC 314 ms
29,532 KB
testcase_15 AC 316 ms
29,532 KB
testcase_16 AC 313 ms
30,120 KB
testcase_17 AC 46 ms
12,160 KB
testcase_18 AC 303 ms
29,532 KB
testcase_19 AC 29 ms
11,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int, input().split()))
pos = [-1] * N
for i, a in enumerate(A):
    pos[a-1] = i + 1

ans = 0

tmp = N * (N + 1) // 2
for i in reversed(range(N)):
    p = pos[i]
    ans = max(ans, tmp - 2 * p)
    tmp -= p

print(ans)
0