結果

問題 No.1687 What the Heck?
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2021-09-24 22:05:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 96 ms / 2,000 ms
コード長 472 bytes
コンパイル時間 227 ms
コンパイル使用メモリ 82,540 KB
実行使用メモリ 109,280 KB
最終ジャッジ日時 2024-07-05 10:37:57
合計ジャッジ時間 2,285 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,568 KB
testcase_01 AC 33 ms
51,688 KB
testcase_02 AC 34 ms
52,012 KB
testcase_03 AC 31 ms
52,476 KB
testcase_04 AC 32 ms
52,088 KB
testcase_05 AC 32 ms
53,412 KB
testcase_06 AC 31 ms
52,340 KB
testcase_07 AC 51 ms
77,108 KB
testcase_08 AC 62 ms
84,200 KB
testcase_09 AC 52 ms
76,976 KB
testcase_10 AC 48 ms
71,540 KB
testcase_11 AC 48 ms
72,172 KB
testcase_12 AC 93 ms
109,164 KB
testcase_13 AC 96 ms
109,008 KB
testcase_14 AC 96 ms
109,212 KB
testcase_15 AC 95 ms
108,924 KB
testcase_16 AC 94 ms
109,280 KB
testcase_17 AC 41 ms
64,504 KB
testcase_18 AC 92 ms
109,112 KB
testcase_19 AC 39 ms
60,108 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

"""

勝てば +i
負けると -i

全部引き分けることはできる

1回目以外全部勝つことは…?

ある数字のところを負ければ、それ以下を全て勝てる。

"""


from sys import stdin
import sys

N = int(stdin.readline())

P = list(map(int,stdin.readline().split()))

R = [None] * (N+1)

for i in range(N):

    R[P[i]] = i+1

ans = 0

nsum = 0

for i in range(1,N+1):

    ans = max(ans , nsum - R[i])
    nsum += R[i]

print (ans)
0