結果

問題 No.2889 Rusk
ユーザー PNJPNJ
提出日時 2024-09-13 23:54:54
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 492 bytes
コンパイル時間 283 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 144,060 KB
最終ジャッジ日時 2024-09-13 23:55:05
合計ジャッジ時間 9,856 ms
ジャッジサーバーID
(参考情報)
judge5 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
51,968 KB
testcase_01 AC 35 ms
51,968 KB
testcase_02 AC 35 ms
51,968 KB
testcase_03 AC 35 ms
51,712 KB
testcase_04 AC 36 ms
52,608 KB
testcase_05 AC 35 ms
52,096 KB
testcase_06 AC 36 ms
52,224 KB
testcase_07 AC 36 ms
52,224 KB
testcase_08 AC 37 ms
52,480 KB
testcase_09 AC 35 ms
54,188 KB
testcase_10 AC 35 ms
53,216 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 64 ms
73,424 KB
testcase_15 AC 78 ms
88,576 KB
testcase_16 WA -
testcase_17 AC 73 ms
84,176 KB
testcase_18 WA -
testcase_19 AC 174 ms
125,976 KB
testcase_20 AC 200 ms
129,804 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 146 ms
112,408 KB
testcase_24 AC 200 ms
125,236 KB
testcase_25 WA -
testcase_26 AC 170 ms
125,872 KB
testcase_27 AC 204 ms
132,176 KB
testcase_28 AC 153 ms
118,372 KB
testcase_29 AC 154 ms
122,044 KB
testcase_30 WA -
testcase_31 AC 207 ms
131,044 KB
testcase_32 AC 125 ms
97,736 KB
testcase_33 AC 72 ms
81,032 KB
testcase_34 AC 224 ms
137,376 KB
testcase_35 WA -
testcase_36 AC 240 ms
136,984 KB
testcase_37 AC 232 ms
137,092 KB
testcase_38 WA -
testcase_39 AC 197 ms
137,212 KB
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
testcase_45 AC 162 ms
115,036 KB
testcase_46 AC 88 ms
88,564 KB
testcase_47 AC 109 ms
99,592 KB
testcase_48 AC 179 ms
131,880 KB
testcase_49 AC 35 ms
53,480 KB
testcase_50 AC 40 ms
52,808 KB
testcase_51 AC 36 ms
53,380 KB
testcase_52 AC 36 ms
52,652 KB
testcase_53 AC 36 ms
52,008 KB
testcase_54 AC 204 ms
135,808 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][0],dp[i][1],dp[1][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]) + a
print(max(dp[N]))
0