結果

問題 No.1687 What the Heck?
ユーザー kohei2019kohei2019
提出日時 2023-06-04 21:02:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 80 ms / 2,000 ms
コード長 257 bytes
コンパイル時間 170 ms
コンパイル使用メモリ 82,500 KB
実行使用メモリ 105,820 KB
最終ジャッジ日時 2024-06-09 04:04:50
合計ジャッジ時間 2,163 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
52,068 KB
testcase_01 AC 30 ms
52,068 KB
testcase_02 AC 30 ms
52,620 KB
testcase_03 AC 31 ms
53,284 KB
testcase_04 AC 29 ms
52,488 KB
testcase_05 AC 30 ms
52,852 KB
testcase_06 AC 30 ms
52,528 KB
testcase_07 AC 52 ms
76,968 KB
testcase_08 AC 56 ms
82,184 KB
testcase_09 AC 57 ms
75,988 KB
testcase_10 AC 44 ms
71,084 KB
testcase_11 AC 44 ms
71,852 KB
testcase_12 AC 77 ms
105,236 KB
testcase_13 AC 80 ms
105,688 KB
testcase_14 AC 77 ms
104,892 KB
testcase_15 AC 78 ms
105,820 KB
testcase_16 AC 79 ms
105,632 KB
testcase_17 AC 39 ms
64,648 KB
testcase_18 AC 77 ms
105,336 KB
testcase_19 AC 36 ms
60,212 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
lsP = list(map(int,input().split()))
# どこで負けるか
indls = [0]*(N+1)
for i in range(N):
    indls[lsP[i]] = i+1
ans = 0
summ = 0
for i in range(1,N+1):
    val = summ-indls[i]
    ans = max(ans,val)
    summ += indls[i]
print(ans)
0