結果

問題 No.1687 What the Heck?
ユーザー flippergoflippergo
提出日時 2024-12-23 09:14:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 90 ms / 2,000 ms
コード長 376 bytes
コンパイル時間 203 ms
コンパイル使用メモリ 82,184 KB
実行使用メモリ 108,392 KB
最終ジャッジ日時 2024-12-23 09:14:05
合計ジャッジ時間 3,031 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,272 KB
testcase_01 AC 39 ms
52,840 KB
testcase_02 AC 39 ms
52,560 KB
testcase_03 AC 39 ms
53,312 KB
testcase_04 AC 40 ms
53,912 KB
testcase_05 AC 40 ms
52,356 KB
testcase_06 AC 40 ms
52,792 KB
testcase_07 AC 63 ms
76,508 KB
testcase_08 AC 68 ms
83,824 KB
testcase_09 AC 62 ms
75,896 KB
testcase_10 AC 54 ms
71,820 KB
testcase_11 AC 62 ms
71,476 KB
testcase_12 AC 88 ms
106,584 KB
testcase_13 AC 88 ms
106,416 KB
testcase_14 AC 87 ms
107,900 KB
testcase_15 AC 86 ms
108,392 KB
testcase_16 AC 90 ms
107,200 KB
testcase_17 AC 41 ms
63,880 KB
testcase_18 AC 83 ms
107,308 KB
testcase_19 AC 41 ms
60,356 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
P = [0]+list(map(int,input().split()))
ans = -10**9
A = [0]*(N+1)
cnt = 0
for i in range(1,N+1):
    if P[i]<N:
        A[P[i]+1] = i
        cnt += i
    else:
        A[1] = i
        cnt -= i
ans = max(ans,cnt)
for n in range(N,1,-1):
    indn = A[n]
    ind1 = A[1]
    cnt += ind1-2*indn
    A[n],A[1] = ind1,indn
    ans = max(ans,cnt)
print(max(ans,0))
0