結果

問題 No.1687 What the Heck?
ユーザー ygd.ygd.
提出日時 2021-09-24 21:44:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 96 ms / 2,000 ms
コード長 421 bytes
コンパイル時間 176 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 101,248 KB
最終ジャッジ日時 2024-07-05 10:20:36
合計ジャッジ時間 2,368 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,712 KB
testcase_01 AC 40 ms
51,840 KB
testcase_02 AC 41 ms
51,968 KB
testcase_03 AC 42 ms
51,328 KB
testcase_04 AC 41 ms
51,584 KB
testcase_05 AC 41 ms
51,456 KB
testcase_06 AC 40 ms
51,712 KB
testcase_07 AC 73 ms
72,576 KB
testcase_08 AC 70 ms
78,592 KB
testcase_09 AC 67 ms
74,240 KB
testcase_10 AC 58 ms
68,608 KB
testcase_11 AC 59 ms
68,736 KB
testcase_12 AC 93 ms
98,688 KB
testcase_13 AC 94 ms
99,328 KB
testcase_14 AC 96 ms
98,816 KB
testcase_15 AC 93 ms
99,200 KB
testcase_16 AC 95 ms
101,248 KB
testcase_17 AC 52 ms
62,976 KB
testcase_18 AC 93 ms
98,944 KB
testcase_19 AC 48 ms
59,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.buffer.readline

def main():
    N = int(input()); INF = pow(10,18)
    P = list(map(int,input().split()))
    L = [-1]*N
    for i,p in enumerate(P):
        L[p-1] = i+1
    #print(L)
    plus = 0
    minus = 0
    ans = 0
    for i in range(N-1):
        plus += L[i]
        minus = L[i+1]
        ans = max(ans, plus - minus)
    print(ans)        

if __name__ == '__main__':
    main()
0