結果

問題 No.2889 Rusk
ユーザー 👑 rin204rin204
提出日時 2024-09-13 21:32:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 221 ms / 2,000 ms
コード長 703 bytes
コンパイル時間 340 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 134,752 KB
最終ジャッジ日時 2024-09-13 21:33:21
合計ジャッジ時間 9,263 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,840 KB
testcase_01 AC 40 ms
51,712 KB
testcase_02 AC 40 ms
51,968 KB
testcase_03 AC 40 ms
51,968 KB
testcase_04 AC 41 ms
51,968 KB
testcase_05 AC 40 ms
51,968 KB
testcase_06 AC 41 ms
51,968 KB
testcase_07 AC 40 ms
51,712 KB
testcase_08 AC 41 ms
52,224 KB
testcase_09 AC 40 ms
51,968 KB
testcase_10 AC 40 ms
51,840 KB
testcase_11 AC 41 ms
51,968 KB
testcase_12 AC 40 ms
52,096 KB
testcase_13 AC 41 ms
52,480 KB
testcase_14 AC 66 ms
70,400 KB
testcase_15 AC 90 ms
86,272 KB
testcase_16 AC 137 ms
99,320 KB
testcase_17 AC 84 ms
81,024 KB
testcase_18 AC 133 ms
94,592 KB
testcase_19 AC 192 ms
121,352 KB
testcase_20 AC 189 ms
122,328 KB
testcase_21 AC 178 ms
121,444 KB
testcase_22 AC 161 ms
118,412 KB
testcase_23 AC 139 ms
101,540 KB
testcase_24 AC 189 ms
122,724 KB
testcase_25 AC 136 ms
101,140 KB
testcase_26 AC 172 ms
121,236 KB
testcase_27 AC 221 ms
121,464 KB
testcase_28 AC 147 ms
106,356 KB
testcase_29 AC 148 ms
111,300 KB
testcase_30 AC 151 ms
110,972 KB
testcase_31 AC 196 ms
122,144 KB
testcase_32 AC 120 ms
96,896 KB
testcase_33 AC 81 ms
78,592 KB
testcase_34 AC 206 ms
133,492 KB
testcase_35 AC 221 ms
133,492 KB
testcase_36 AC 209 ms
133,484 KB
testcase_37 AC 213 ms
133,464 KB
testcase_38 AC 213 ms
133,364 KB
testcase_39 AC 179 ms
124,368 KB
testcase_40 AC 172 ms
113,280 KB
testcase_41 AC 185 ms
131,732 KB
testcase_42 AC 153 ms
113,408 KB
testcase_43 AC 113 ms
95,360 KB
testcase_44 AC 177 ms
122,400 KB
testcase_45 AC 148 ms
109,056 KB
testcase_46 AC 97 ms
84,480 KB
testcase_47 AC 117 ms
99,328 KB
testcase_48 AC 165 ms
115,672 KB
testcase_49 AC 40 ms
51,840 KB
testcase_50 AC 40 ms
51,712 KB
testcase_51 AC 40 ms
51,712 KB
testcase_52 AC 40 ms
51,968 KB
testcase_53 AC 41 ms
51,712 KB
testcase_54 AC 199 ms
134,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
A = list(map(int, input().split()))
B = list(map(int, input().split()))
C = list(map(int, input().split()))

for i in range(n):
    B[i] -= A[i]
    C[i] -= A[i]

ans = sum(A)

dp = [0] * 5
for i in range(n):
    ndp = [0] * 5
    ndp[0] = dp[0]
    ndp[1] = max(dp[0], dp[1]) + B[i]
    ndp[2] = max(dp[0], dp[1], dp[2]) + C[i]
    ndp[3] = max(dp[2], dp[3]) + B[i]
    ndp[4] = max(dp[3], dp[4])
    dp = ndp

add = max(dp)

dp = [0] * 5
for i in range(n):
    ndp = [0] * 5
    ndp[0] = dp[0]
    ndp[1] = max(dp[0], dp[1]) + B[i]
    ndp[2] = max(dp[1], dp[2])
    ndp[3] = max(dp[2], dp[3]) + B[i]
    ndp[4] = max(dp[3], dp[4])
    dp = ndp

add = max(add, *dp)

print(ans + add)
0