結果

問題 No.2889 Rusk
ユーザー PNJPNJ
提出日時 2024-09-14 00:13:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 237 ms / 2,000 ms
コード長 504 bytes
コンパイル時間 200 ms
コンパイル使用メモリ 82,152 KB
実行使用メモリ 143,812 KB
最終ジャッジ日時 2024-09-14 00:13:44
合計ジャッジ時間 9,624 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,096 KB
testcase_01 AC 40 ms
51,968 KB
testcase_02 AC 38 ms
51,584 KB
testcase_03 AC 38 ms
51,712 KB
testcase_04 AC 40 ms
52,224 KB
testcase_05 AC 39 ms
52,096 KB
testcase_06 AC 39 ms
52,352 KB
testcase_07 AC 39 ms
51,712 KB
testcase_08 AC 38 ms
52,480 KB
testcase_09 AC 40 ms
52,224 KB
testcase_10 AC 38 ms
51,968 KB
testcase_11 AC 39 ms
51,968 KB
testcase_12 AC 39 ms
51,968 KB
testcase_13 AC 39 ms
52,096 KB
testcase_14 AC 60 ms
71,168 KB
testcase_15 AC 85 ms
88,448 KB
testcase_16 AC 145 ms
109,660 KB
testcase_17 AC 87 ms
83,712 KB
testcase_18 AC 123 ms
96,220 KB
testcase_19 AC 180 ms
125,540 KB
testcase_20 AC 204 ms
129,728 KB
testcase_21 AC 182 ms
125,176 KB
testcase_22 AC 165 ms
126,000 KB
testcase_23 AC 148 ms
112,512 KB
testcase_24 AC 211 ms
125,428 KB
testcase_25 AC 142 ms
112,188 KB
testcase_26 AC 182 ms
125,988 KB
testcase_27 AC 207 ms
132,064 KB
testcase_28 AC 161 ms
118,384 KB
testcase_29 AC 157 ms
121,832 KB
testcase_30 AC 168 ms
121,972 KB
testcase_31 AC 211 ms
131,372 KB
testcase_32 AC 124 ms
97,668 KB
testcase_33 AC 74 ms
81,264 KB
testcase_34 AC 213 ms
136,748 KB
testcase_35 AC 214 ms
136,748 KB
testcase_36 AC 230 ms
137,304 KB
testcase_37 AC 237 ms
136,976 KB
testcase_38 AC 226 ms
137,176 KB
testcase_39 AC 203 ms
137,468 KB
testcase_40 AC 175 ms
114,816 KB
testcase_41 AC 207 ms
143,812 KB
testcase_42 AC 177 ms
117,340 KB
testcase_43 AC 118 ms
97,024 KB
testcase_44 AC 203 ms
137,164 KB
testcase_45 AC 171 ms
115,116 KB
testcase_46 AC 95 ms
88,576 KB
testcase_47 AC 113 ms
99,328 KB
testcase_48 AC 186 ms
131,956 KB
testcase_49 AC 40 ms
51,968 KB
testcase_50 AC 39 ms
51,840 KB
testcase_51 AC 40 ms
51,840 KB
testcase_52 AC 40 ms
51,584 KB
testcase_53 AC 49 ms
51,584 KB
testcase_54 AC 196 ms
135,384 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

dp = [[0,0,0,0,0,0] for i in range(N + 1)]
for i in range(N):
  a,b,c = A[i],B[i],C[i]
  dp[i + 1][0] = dp[i][0] + a
  dp[i + 1][1] = max(dp[i][0],dp[i][1]) + b
  dp[i + 1][2] = max(dp[i][1],dp[i][2]) + a
  dp[i + 1][3] = max(dp[i][0],dp[i][1],dp[i][3]) + c
  dp[i + 1][4] = max(dp[i][2],dp[i][3],dp[i][4]) + b
  dp[i + 1][5] = max(dp[i][3],dp[i][4],dp[i][5]) + a
print(max(dp[N]))
0