結果

問題 No.2889 Rusk
ユーザー 👑 KA37RIKA37RI
提出日時 2024-09-13 22:32:38
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 625 bytes
コンパイル時間 229 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 116,284 KB
最終ジャッジ日時 2024-09-13 22:32:46
合計ジャッジ時間 8,485 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,840 KB
testcase_01 AC 41 ms
51,712 KB
testcase_02 AC 44 ms
51,968 KB
testcase_03 AC 42 ms
51,328 KB
testcase_04 AC 41 ms
52,096 KB
testcase_05 AC 42 ms
51,328 KB
testcase_06 AC 42 ms
51,584 KB
testcase_07 AC 40 ms
51,840 KB
testcase_08 AC 41 ms
51,840 KB
testcase_09 AC 40 ms
52,352 KB
testcase_10 WA -
testcase_11 AC 41 ms
51,456 KB
testcase_12 AC 40 ms
51,584 KB
testcase_13 AC 40 ms
51,968 KB
testcase_14 AC 62 ms
67,968 KB
testcase_15 AC 84 ms
83,072 KB
testcase_16 AC 122 ms
91,776 KB
testcase_17 AC 80 ms
79,616 KB
testcase_18 AC 109 ms
89,472 KB
testcase_19 AC 159 ms
108,036 KB
testcase_20 AC 166 ms
116,024 KB
testcase_21 AC 160 ms
107,728 KB
testcase_22 AC 139 ms
102,516 KB
testcase_23 AC 123 ms
95,104 KB
testcase_24 AC 168 ms
116,176 KB
testcase_25 AC 122 ms
94,464 KB
testcase_26 AC 161 ms
107,264 KB
testcase_27 AC 171 ms
115,228 KB
testcase_28 AC 133 ms
94,720 KB
testcase_29 AC 130 ms
97,504 KB
testcase_30 AC 136 ms
96,524 KB
testcase_31 AC 176 ms
116,284 KB
testcase_32 AC 111 ms
91,008 KB
testcase_33 AC 78 ms
77,952 KB
testcase_34 AC 185 ms
108,696 KB
testcase_35 AC 178 ms
108,324 KB
testcase_36 AC 181 ms
108,580 KB
testcase_37 AC 183 ms
108,572 KB
testcase_38 AC 181 ms
108,056 KB
testcase_39 AC 152 ms
107,392 KB
testcase_40 AC 145 ms
97,536 KB
testcase_41 AC 161 ms
107,008 KB
testcase_42 AC 139 ms
98,432 KB
testcase_43 AC 105 ms
86,784 KB
testcase_44 AC 151 ms
106,624 KB
testcase_45 AC 136 ms
95,872 KB
testcase_46 AC 92 ms
80,768 KB
testcase_47 AC 111 ms
88,448 KB
testcase_48 AC 141 ms
99,840 KB
testcase_49 AC 40 ms
51,584 KB
testcase_50 AC 41 ms
51,584 KB
testcase_51 WA -
testcase_52 AC 40 ms
51,328 KB
testcase_53 AC 40 ms
51,584 KB
testcase_54 AC 166 ms
110,856 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = [int(x) for x in input().split()]
b = [int(x) for x in input().split()]
c = [int(x) for x in input().split()]

# 0: [0]
# 1: [0|1]
# 2: [0|1|0]
# 3: [0|1|2]
# 4: [0|1|0|1]
# 5: [0|1|2|1]
# 6: [0|1|0|1|0]
# 7: [0|1|2|1|0]

ans = [-10 ** 15] * 8
ans[0] = 0
for i in range(n):
	nxt = [0] * 8
	
	nxt[0] = ans[0] + a[i]
	nxt[1] = max(ans[0], ans[1]) + b[i]
	nxt[2] = max(ans[1], ans[2]) + a[i]
	nxt[3] = max(ans[1], ans[3]) + c[i]
	nxt[4] = max(ans[2], ans[4]) + b[i]
	nxt[5] = max(ans[3], ans[5]) + b[i]
	nxt[6] = max(ans[4], ans[6]) + a[i]
	nxt[7] = max(ans[5], ans[7]) + a[i]
	
	ans = nxt
	
print(max(ans))
0