結果

問題 No.2889 Rusk
ユーザー mkawa2mkawa2
提出日時 2024-09-13 21:45:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 233 ms / 2,000 ms
コード長 1,266 bytes
コンパイル時間 388 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 132,292 KB
最終ジャッジ日時 2024-09-13 21:45:40
合計ジャッジ時間 9,283 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,480 KB
testcase_01 AC 38 ms
52,480 KB
testcase_02 AC 39 ms
51,968 KB
testcase_03 AC 37 ms
52,864 KB
testcase_04 AC 38 ms
52,480 KB
testcase_05 AC 38 ms
52,480 KB
testcase_06 AC 38 ms
52,608 KB
testcase_07 AC 38 ms
52,352 KB
testcase_08 AC 43 ms
52,224 KB
testcase_09 AC 38 ms
52,864 KB
testcase_10 AC 38 ms
52,608 KB
testcase_11 AC 39 ms
52,224 KB
testcase_12 AC 39 ms
52,608 KB
testcase_13 AC 49 ms
52,736 KB
testcase_14 AC 57 ms
71,552 KB
testcase_15 AC 81 ms
85,668 KB
testcase_16 AC 133 ms
98,680 KB
testcase_17 AC 74 ms
80,392 KB
testcase_18 AC 123 ms
93,440 KB
testcase_19 AC 180 ms
118,728 KB
testcase_20 AC 213 ms
118,260 KB
testcase_21 AC 176 ms
118,568 KB
testcase_22 AC 169 ms
116,732 KB
testcase_23 AC 139 ms
100,884 KB
testcase_24 AC 192 ms
117,708 KB
testcase_25 AC 147 ms
100,180 KB
testcase_26 AC 173 ms
118,284 KB
testcase_27 AC 196 ms
118,144 KB
testcase_28 AC 153 ms
106,088 KB
testcase_29 AC 143 ms
110,112 KB
testcase_30 AC 156 ms
110,156 KB
testcase_31 AC 215 ms
119,304 KB
testcase_32 AC 130 ms
95,616 KB
testcase_33 AC 72 ms
77,952 KB
testcase_34 AC 212 ms
132,064 KB
testcase_35 AC 224 ms
131,556 KB
testcase_36 AC 233 ms
131,676 KB
testcase_37 AC 226 ms
132,056 KB
testcase_38 AC 225 ms
131,420 KB
testcase_39 AC 190 ms
123,976 KB
testcase_40 AC 163 ms
112,640 KB
testcase_41 AC 201 ms
131,556 KB
testcase_42 AC 165 ms
112,256 KB
testcase_43 AC 117 ms
95,744 KB
testcase_44 AC 196 ms
123,580 KB
testcase_45 AC 159 ms
108,416 KB
testcase_46 AC 101 ms
84,736 KB
testcase_47 AC 121 ms
98,688 KB
testcase_48 AC 178 ms
115,224 KB
testcase_49 AC 41 ms
51,840 KB
testcase_50 AC 40 ms
52,224 KB
testcase_51 AC 41 ms
52,352 KB
testcase_52 AC 43 ms
52,224 KB
testcase_53 AC 41 ms
52,224 KB
testcase_54 AC 209 ms
132,292 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

# sys.setrecursionlimit(200005)
# sys.set_int_max_str_digits(200005)
int1 = lambda x: int(x)-1
pDB = lambda *x: print(*x, end="\n", file=sys.stderr)
p2D = lambda x: print(*x, sep="\n", end="\n\n", file=sys.stderr)
def II(): return int(sys.stdin.readline())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LI1(): return list(map(int1, sys.stdin.readline().split()))
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
def SI(): return sys.stdin.readline().rstrip()

dij = [(0, 1), (-1, 0), (0, -1), (1, 0)]
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)]
# inf = -1-(-1 << 31)
inf = -1-(-1 << 62)

md = 10**9+7
# md = 998244353

n=II()
aa=LI()
bb=LI()
cc=LI()

dp=[0]*5
for a,b,c in zip(aa,bb,cc):
    pre,dp=dp,[0]*5
    dp[0]=pre[0]+a
    dp[1]=max(pre[0],pre[1])+b
    dp[2]=max(pre[0],pre[1],pre[2])+c
    dp[3]=max(pre[2],pre[3])+b
    dp[4]=max(pre[2],pre[3],pre[4])+a

ans=max(dp)

dp=[0]*5
for a,b,c in zip(aa,bb,cc):
    pre,dp=dp,[0]*5
    dp[0]=pre[0]+a
    dp[1]=max(pre[0],pre[1])+b
    dp[2]=max(pre[0],pre[1],pre[2])+a
    dp[3]=max(pre[2],pre[3])+b
    dp[4]=max(pre[2],pre[3],pre[4])+a

print(max(ans,max(dp)))
0