結果

問題 No.1687 What the Heck?
ユーザー ayaoniayaoni
提出日時 2021-09-24 22:35:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 97 ms / 2,000 ms
コード長 320 bytes
コンパイル時間 208 ms
コンパイル使用メモリ 82,420 KB
実行使用メモリ 113,124 KB
最終ジャッジ日時 2024-07-05 11:00:01
合計ジャッジ時間 2,132 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,568 KB
testcase_01 AC 37 ms
52,140 KB
testcase_02 AC 36 ms
52,284 KB
testcase_03 AC 34 ms
52,332 KB
testcase_04 AC 34 ms
53,192 KB
testcase_05 AC 34 ms
52,808 KB
testcase_06 AC 35 ms
52,252 KB
testcase_07 AC 58 ms
81,756 KB
testcase_08 AC 66 ms
91,720 KB
testcase_09 AC 60 ms
81,664 KB
testcase_10 AC 53 ms
75,468 KB
testcase_11 AC 54 ms
76,628 KB
testcase_12 AC 95 ms
112,252 KB
testcase_13 AC 95 ms
112,280 KB
testcase_14 AC 96 ms
112,456 KB
testcase_15 AC 97 ms
112,504 KB
testcase_16 AC 95 ms
113,124 KB
testcase_17 AC 45 ms
65,788 KB
testcase_18 AC 97 ms
112,364 KB
testcase_19 AC 43 ms
61,560 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from itertools import accumulate
input = sys.stdin.readline
sys.setrecursionlimit(10**7)

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

pos = [0]*(N+1)
for i in range(N):
    pos[P[i]] = i+1

S_pos = list(accumulate(pos))
ans = 0
for i in range(1,N+1):
    ans = max(ans,S_pos[i-1]-pos[i])

print(ans)
0