結果

問題 No.1687 What the Heck?
ユーザー pluto77pluto77
提出日時 2022-02-08 10:56:22
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 330 ms / 2,000 ms
コード長 181 bytes
コンパイル時間 91 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 41,072 KB
最終ジャッジ日時 2024-06-23 04:08:54
合計ジャッジ時間 4,273 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,624 KB
testcase_01 AC 25 ms
10,624 KB
testcase_02 AC 25 ms
10,624 KB
testcase_03 AC 24 ms
10,624 KB
testcase_04 AC 24 ms
10,752 KB
testcase_05 AC 25 ms
10,624 KB
testcase_06 AC 24 ms
10,624 KB
testcase_07 AC 118 ms
20,720 KB
testcase_08 AC 163 ms
26,184 KB
testcase_09 AC 122 ms
20,104 KB
testcase_10 AC 86 ms
19,960 KB
testcase_11 AC 92 ms
18,792 KB
testcase_12 AC 317 ms
41,072 KB
testcase_13 AC 318 ms
40,976 KB
testcase_14 AC 318 ms
40,940 KB
testcase_15 AC 306 ms
40,928 KB
testcase_16 AC 322 ms
40,424 KB
testcase_17 AC 45 ms
13,056 KB
testcase_18 AC 330 ms
41,068 KB
testcase_19 AC 27 ms
11,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#yuki1687
n=int(input())
p=list(map(int,input().split()))
d={}
for i in range(n):
 d[p[i]]=i+1
s=(n+1)*n//2
res=0
for i in range(n,0,-1):
 res=max(res,s-d[i]*2)
 s-=d[i]
print(res)
0