結果

問題 No.2889 Rusk
ユーザー 👑 KA37RIKA37RI
提出日時 2024-09-13 22:47:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 196 ms / 2,000 ms
コード長 633 bytes
コンパイル時間 385 ms
コンパイル使用メモリ 82,096 KB
実行使用メモリ 116,608 KB
最終ジャッジ日時 2024-09-13 22:47:44
合計ジャッジ時間 8,154 ms
ジャッジサーバーID
(参考情報)
judge6 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,516 KB
testcase_01 AC 37 ms
53,264 KB
testcase_02 AC 37 ms
52,408 KB
testcase_03 AC 38 ms
52,136 KB
testcase_04 AC 38 ms
52,128 KB
testcase_05 AC 38 ms
52,312 KB
testcase_06 AC 38 ms
52,528 KB
testcase_07 AC 37 ms
52,612 KB
testcase_08 AC 39 ms
52,648 KB
testcase_09 AC 37 ms
52,752 KB
testcase_10 AC 37 ms
52,444 KB
testcase_11 AC 36 ms
52,740 KB
testcase_12 AC 37 ms
53,148 KB
testcase_13 AC 37 ms
52,540 KB
testcase_14 AC 56 ms
69,132 KB
testcase_15 AC 73 ms
82,732 KB
testcase_16 AC 111 ms
91,312 KB
testcase_17 AC 69 ms
79,772 KB
testcase_18 AC 99 ms
89,596 KB
testcase_19 AC 142 ms
108,212 KB
testcase_20 AC 156 ms
115,844 KB
testcase_21 AC 148 ms
108,172 KB
testcase_22 AC 129 ms
102,564 KB
testcase_23 AC 114 ms
95,020 KB
testcase_24 AC 160 ms
116,416 KB
testcase_25 AC 111 ms
94,488 KB
testcase_26 AC 142 ms
107,716 KB
testcase_27 AC 162 ms
115,400 KB
testcase_28 AC 123 ms
95,008 KB
testcase_29 AC 116 ms
97,584 KB
testcase_30 AC 122 ms
96,752 KB
testcase_31 AC 164 ms
116,608 KB
testcase_32 AC 101 ms
90,812 KB
testcase_33 AC 67 ms
77,988 KB
testcase_34 AC 196 ms
108,624 KB
testcase_35 AC 169 ms
108,760 KB
testcase_36 AC 169 ms
108,512 KB
testcase_37 AC 175 ms
108,628 KB
testcase_38 AC 172 ms
108,380 KB
testcase_39 AC 143 ms
107,608 KB
testcase_40 AC 130 ms
97,620 KB
testcase_41 AC 172 ms
107,196 KB
testcase_42 AC 129 ms
98,756 KB
testcase_43 AC 95 ms
87,100 KB
testcase_44 AC 141 ms
107,480 KB
testcase_45 AC 124 ms
96,880 KB
testcase_46 AC 79 ms
81,104 KB
testcase_47 AC 98 ms
89,004 KB
testcase_48 AC 129 ms
100,376 KB
testcase_49 AC 37 ms
53,256 KB
testcase_50 AC 37 ms
52,940 KB
testcase_51 AC 37 ms
54,172 KB
testcase_52 AC 37 ms
52,352 KB
testcase_53 AC 37 ms
53,012 KB
testcase_54 AC 154 ms
111,312 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[0], 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