結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,712 KB
testcase_01 AC 40 ms
51,712 KB
testcase_02 AC 42 ms
52,096 KB
testcase_03 AC 40 ms
51,712 KB
testcase_04 AC 41 ms
51,840 KB
testcase_05 AC 40 ms
51,712 KB
testcase_06 AC 41 ms
51,968 KB
testcase_07 AC 41 ms
51,968 KB
testcase_08 AC 41 ms
51,968 KB
testcase_09 AC 41 ms
52,224 KB
testcase_10 WA -
testcase_11 AC 41 ms
51,968 KB
testcase_12 AC 41 ms
52,224 KB
testcase_13 AC 41 ms
51,968 KB
testcase_14 AC 67 ms
70,144 KB
testcase_15 AC 93 ms
86,272 KB
testcase_16 AC 138 ms
99,580 KB
testcase_17 AC 85 ms
81,152 KB
testcase_18 AC 118 ms
94,976 KB
testcase_19 AC 171 ms
121,476 KB
testcase_20 AC 193 ms
122,536 KB
testcase_21 AC 178 ms
121,712 KB
testcase_22 AC 160 ms
118,156 KB
testcase_23 AC 140 ms
100,896 KB
testcase_24 AC 192 ms
121,824 KB
testcase_25 AC 135 ms
100,888 KB
testcase_26 AC 172 ms
121,236 KB
testcase_27 AC 191 ms
121,476 KB
testcase_28 AC 147 ms
106,744 KB
testcase_29 AC 176 ms
110,792 KB
testcase_30 AC 152 ms
111,356 KB
testcase_31 AC 196 ms
122,524 KB
testcase_32 AC 120 ms
96,896 KB
testcase_33 AC 81 ms
78,592 KB
testcase_34 AC 203 ms
133,868 KB
testcase_35 AC 199 ms
133,184 KB
testcase_36 AC 196 ms
133,444 KB
testcase_37 AC 198 ms
133,492 KB
testcase_38 AC 199 ms
133,796 KB
testcase_39 AC 165 ms
124,108 KB
testcase_40 AC 147 ms
112,896 KB
testcase_41 AC 172 ms
131,548 KB
testcase_42 AC 143 ms
113,280 KB
testcase_43 AC 101 ms
95,688 KB
testcase_44 AC 166 ms
121,964 KB
testcase_45 AC 138 ms
108,744 KB
testcase_46 AC 84 ms
84,024 KB
testcase_47 AC 116 ms
98,304 KB
testcase_48 AC 162 ms
115,212 KB
testcase_49 AC 39 ms
52,096 KB
testcase_50 AC 39 ms
51,968 KB
testcase_51 AC 39 ms
52,480 KB
testcase_52 AC 39 ms
51,584 KB
testcase_53 AC 40 ms
51,712 KB
testcase_54 AC 190 ms
134,628 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[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