結果

問題 No.1687 What the Heck?
ユーザー mymelochanmymelochan
提出日時 2021-09-24 23:00:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 116 ms / 2,000 ms
コード長 206 bytes
コンパイル時間 242 ms
コンパイル使用メモリ 82,116 KB
実行使用メモリ 126,052 KB
最終ジャッジ日時 2024-07-05 11:10:21
合計ジャッジ時間 2,214 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,332 KB
testcase_01 AC 31 ms
52,004 KB
testcase_02 AC 31 ms
53,376 KB
testcase_03 AC 33 ms
52,552 KB
testcase_04 AC 31 ms
51,888 KB
testcase_05 AC 31 ms
52,400 KB
testcase_06 AC 30 ms
53,676 KB
testcase_07 AC 59 ms
87,040 KB
testcase_08 AC 73 ms
98,572 KB
testcase_09 AC 62 ms
86,948 KB
testcase_10 AC 53 ms
79,692 KB
testcase_11 AC 58 ms
80,108 KB
testcase_12 AC 116 ms
123,924 KB
testcase_13 AC 114 ms
124,208 KB
testcase_14 AC 114 ms
124,312 KB
testcase_15 AC 115 ms
124,208 KB
testcase_16 AC 113 ms
126,052 KB
testcase_17 AC 41 ms
65,388 KB
testcase_18 AC 114 ms
123,720 KB
testcase_19 AC 38 ms
60,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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
ma = 0
for i in range(N,0,-1):
    idx = d[i]
    ma = max(ma,S-idx*2)
    S -= idx
print(ma)
0