結果

問題 No.1687 What the Heck?
ユーザー ああいいああいい
提出日時 2022-03-04 09:46:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 132 ms / 2,000 ms
コード長 264 bytes
コンパイル時間 162 ms
コンパイル使用メモリ 82,016 KB
実行使用メモリ 125,944 KB
最終ジャッジ日時 2024-07-18 07:00:49
合計ジャッジ時間 3,006 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
53,536 KB
testcase_01 AC 33 ms
52,152 KB
testcase_02 AC 37 ms
52,332 KB
testcase_03 AC 37 ms
52,480 KB
testcase_04 AC 37 ms
52,024 KB
testcase_05 AC 36 ms
52,264 KB
testcase_06 AC 36 ms
52,192 KB
testcase_07 AC 68 ms
87,940 KB
testcase_08 AC 81 ms
99,700 KB
testcase_09 AC 72 ms
88,360 KB
testcase_10 AC 63 ms
79,592 KB
testcase_11 AC 59 ms
80,720 KB
testcase_12 AC 126 ms
123,632 KB
testcase_13 AC 128 ms
123,788 KB
testcase_14 AC 130 ms
123,956 KB
testcase_15 AC 132 ms
123,568 KB
testcase_16 AC 132 ms
125,944 KB
testcase_17 AC 47 ms
67,564 KB
testcase_18 AC 128 ms
123,724 KB
testcase_19 AC 42 ms
60,388 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
P = list(map(int,input().split()))

import sys
if N == 1:
    print(0)
    exit()

ans = 0
point = 0
D = {v:i + 1 for i,v in enumerate(P)}
for i in range(1,N):
    point += D[i]
    if point - D[i+1] > ans:
        ans = point - D[i+1]
print(ans)
0