結果

問題 No.1687 What the Heck?
ユーザー NoneNone
提出日時 2021-10-06 02:25:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 87 ms / 2,000 ms
コード長 211 bytes
コンパイル時間 173 ms
コンパイル使用メモリ 82,352 KB
実行使用メモリ 106,092 KB
最終ジャッジ日時 2024-07-23 02:40:48
合計ジャッジ時間 2,248 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,748 KB
testcase_01 AC 37 ms
52,600 KB
testcase_02 AC 38 ms
52,864 KB
testcase_03 AC 38 ms
52,952 KB
testcase_04 AC 38 ms
52,084 KB
testcase_05 AC 38 ms
53,152 KB
testcase_06 AC 38 ms
52,528 KB
testcase_07 AC 59 ms
77,072 KB
testcase_08 AC 64 ms
82,144 KB
testcase_09 AC 58 ms
76,640 KB
testcase_10 AC 53 ms
70,676 KB
testcase_11 AC 54 ms
71,468 KB
testcase_12 AC 86 ms
105,796 KB
testcase_13 AC 86 ms
106,092 KB
testcase_14 AC 86 ms
104,988 KB
testcase_15 AC 87 ms
104,712 KB
testcase_16 AC 87 ms
105,676 KB
testcase_17 AC 47 ms
64,512 KB
testcase_18 AC 86 ms
105,776 KB
testcase_19 AC 44 ms
60,172 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
P=list(map(lambda x:x-1,map(int, input().split())))
Q=[0]*N
for i,p in enumerate(P):
    Q[p]=i
res=0
S=N*(N+1)//2
for n in range(N)[::-1]:
    res=max(S - 2*(Q[n]+1),res)
    S-=Q[n]+1
print(res)
0