結果

問題 No.1687 What the Heck?
ユーザー 👑 rin204rin204
提出日時 2022-01-18 02:42:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 95 ms / 2,000 ms
コード長 216 bytes
コンパイル時間 245 ms
コンパイル使用メモリ 82,428 KB
実行使用メモリ 104,960 KB
最終ジャッジ日時 2024-11-23 13:11:03
合計ジャッジ時間 2,388 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,840 KB
testcase_01 AC 35 ms
51,712 KB
testcase_02 AC 36 ms
51,712 KB
testcase_03 AC 37 ms
51,840 KB
testcase_04 AC 37 ms
51,328 KB
testcase_05 AC 36 ms
51,840 KB
testcase_06 AC 36 ms
51,840 KB
testcase_07 AC 61 ms
75,776 KB
testcase_08 AC 64 ms
82,304 KB
testcase_09 AC 57 ms
75,392 KB
testcase_10 AC 51 ms
70,784 KB
testcase_11 AC 52 ms
70,912 KB
testcase_12 AC 90 ms
104,832 KB
testcase_13 AC 95 ms
104,832 KB
testcase_14 AC 92 ms
104,960 KB
testcase_15 AC 89 ms
104,832 KB
testcase_16 AC 90 ms
104,704 KB
testcase_17 AC 45 ms
63,232 KB
testcase_18 AC 89 ms
104,576 KB
testcase_19 AC 43 ms
60,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
P = list(map(int, input().split()))
Q = [0] * n
for i, p in enumerate(P, 1):
    Q[p - 1] = i
    
tot = 0
ans = 0
for i in range(n - 1):
    tot += Q[i]
    ans = max(ans, tot - Q[i + 1])
print(ans)
0