結果

問題 No.2854 -1 Subsequence
ユーザー ryuuichiryuuichi
提出日時 2024-08-25 15:31:36
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 525 bytes
コンパイル時間 324 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 114,204 KB
最終ジャッジ日時 2024-08-25 15:31:43
合計ジャッジ時間 6,578 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 154 ms
102,540 KB
testcase_02 WA -
testcase_03 AC 104 ms
92,620 KB
testcase_04 WA -
testcase_05 AC 122 ms
96,144 KB
testcase_06 AC 89 ms
88,832 KB
testcase_07 WA -
testcase_08 AC 61 ms
76,640 KB
testcase_09 AC 127 ms
97,768 KB
testcase_10 AC 216 ms
113,952 KB
testcase_11 AC 184 ms
113,968 KB
testcase_12 AC 188 ms
113,964 KB
testcase_13 AC 191 ms
113,952 KB
testcase_14 AC 186 ms
113,564 KB
testcase_15 AC 188 ms
113,916 KB
testcase_16 AC 206 ms
113,824 KB
testcase_17 AC 196 ms
113,968 KB
testcase_18 AC 184 ms
113,704 KB
testcase_19 AC 192 ms
113,592 KB
testcase_20 AC 184 ms
113,744 KB
testcase_21 AC 199 ms
114,204 KB
testcase_22 AC 205 ms
113,764 KB
testcase_23 AC 35 ms
52,236 KB
testcase_24 AC 35 ms
52,608 KB
testcase_25 AC 34 ms
51,952 KB
testcase_26 AC 35 ms
52,224 KB
testcase_27 AC 35 ms
52,460 KB
testcase_28 AC 35 ms
51,876 KB
testcase_29 AC 36 ms
52,568 KB
testcase_30 AC 34 ms
52,568 KB
testcase_31 AC 35 ms
53,752 KB
testcase_32 AC 35 ms
53,540 KB
testcase_33 AC 36 ms
52,608 KB
testcase_34 AC 35 ms
52,948 KB
testcase_35 AC 36 ms
53,076 KB
testcase_36 AC 34 ms
52,216 KB
testcase_37 AC 34 ms
53,016 KB
testcase_38 AC 41 ms
53,252 KB
testcase_39 AC 34 ms
52,488 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
A=list(map(int,input().split()))
if N==1:
    print(-A[0])
    quit()
dp=[[-float("inf"),-float("inf")]for _ in range(N)]
#dp[i][偶数 偶数]=i個まで選択した時の最大(偶奇毎)
dp[0][1]=-A[0]
dp[1][1]=-(min(A[0],A[1]))
dp[1][0]=-A[0]+A[1]
""" for i in range(2,N):
    for j in range(2):
        dp[i][j]=max(dp[i-1][j],dp[i-1][j^1]+A[i]*(-1)**j) """


for i in range(N-1):
    for j in range(2):
        dp[i+1][j^1]=max(dp[i][j]+A[i+1]*(-1)**(j+1),dp[i][j^1],dp[i+1][j^1])

print(max(max(dp)))
0