結果

問題 No.1687 What the Heck?
ユーザー gr1msl3ygr1msl3y
提出日時 2022-02-24 23:25:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 84 ms / 2,000 ms
コード長 208 bytes
コンパイル時間 215 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 106,720 KB
最終ジャッジ日時 2024-07-02 14:15:11
合計ジャッジ時間 2,819 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
51,840 KB
testcase_01 AC 33 ms
51,840 KB
testcase_02 AC 31 ms
51,840 KB
testcase_03 AC 31 ms
51,840 KB
testcase_04 AC 32 ms
51,840 KB
testcase_05 AC 33 ms
51,968 KB
testcase_06 AC 32 ms
52,224 KB
testcase_07 AC 50 ms
75,648 KB
testcase_08 AC 62 ms
82,304 KB
testcase_09 AC 56 ms
76,288 KB
testcase_10 AC 49 ms
70,784 KB
testcase_11 AC 48 ms
70,784 KB
testcase_12 AC 82 ms
106,112 KB
testcase_13 AC 82 ms
106,608 KB
testcase_14 AC 83 ms
106,532 KB
testcase_15 AC 83 ms
106,124 KB
testcase_16 AC 84 ms
106,720 KB
testcase_17 AC 42 ms
63,536 KB
testcase_18 AC 81 ms
106,112 KB
testcase_19 AC 38 ms
60,124 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = [0]+list(map(int, input().split()))
B = [0]*(N+1)
for i in range(N+1):
    B[A[i]] = i

ans = 0
s = -B[1]
for i in range(2, N+1):
    s += 2*B[i-1]-B[i]
    ans = max(ans, s)

print(ans)
0