結果

問題 No.1687 What the Heck?
ユーザー raven7959raven7959
提出日時 2021-09-26 08:37:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 98 ms / 2,000 ms
コード長 297 bytes
コンパイル時間 141 ms
コンパイル使用メモリ 82,660 KB
実行使用メモリ 114,416 KB
最終ジャッジ日時 2024-07-05 15:34:55
合計ジャッジ時間 2,359 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,704 KB
testcase_01 AC 37 ms
52,132 KB
testcase_02 AC 36 ms
52,900 KB
testcase_03 AC 36 ms
52,928 KB
testcase_04 AC 37 ms
52,152 KB
testcase_05 AC 37 ms
52,768 KB
testcase_06 AC 36 ms
52,612 KB
testcase_07 AC 62 ms
81,960 KB
testcase_08 AC 69 ms
91,716 KB
testcase_09 AC 62 ms
82,700 KB
testcase_10 AC 54 ms
74,936 KB
testcase_11 AC 55 ms
76,048 KB
testcase_12 AC 98 ms
113,504 KB
testcase_13 AC 94 ms
113,292 KB
testcase_14 AC 97 ms
113,408 KB
testcase_15 AC 95 ms
113,704 KB
testcase_16 AC 96 ms
114,416 KB
testcase_17 AC 47 ms
65,804 KB
testcase_18 AC 97 ms
113,600 KB
testcase_19 AC 44 ms
60,964 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import accumulate
N=int(input())
P=list(map(int,input().split()))
if P==[1,2]:
  print(0)
  exit()
if P==[2,1]:
  print(1)
  exit()
idx=[-1]*N
for i in range(N):
  idx[P[i]-1]=i+1
idx_acc=list(accumulate(idx))
ans=0
for i in range(2,N):
  ans=max(ans,idx_acc[i-1]-idx[i])
print(ans)
0