結果

問題 No.2889 Rusk
ユーザー ntudantuda
提出日時 2024-09-14 09:15:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 204 ms / 2,000 ms
コード長 416 bytes
コンパイル時間 400 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 134,272 KB
最終ジャッジ日時 2024-09-14 09:15:52
合計ジャッジ時間 11,022 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,712 KB
testcase_01 AC 40 ms
51,840 KB
testcase_02 AC 40 ms
51,968 KB
testcase_03 AC 41 ms
51,456 KB
testcase_04 AC 40 ms
51,840 KB
testcase_05 AC 40 ms
51,712 KB
testcase_06 AC 41 ms
51,968 KB
testcase_07 AC 41 ms
51,584 KB
testcase_08 AC 43 ms
51,840 KB
testcase_09 AC 41 ms
51,840 KB
testcase_10 AC 40 ms
51,968 KB
testcase_11 AC 40 ms
51,456 KB
testcase_12 AC 41 ms
52,224 KB
testcase_13 AC 42 ms
51,840 KB
testcase_14 AC 60 ms
67,328 KB
testcase_15 AC 85 ms
86,400 KB
testcase_16 AC 128 ms
99,696 KB
testcase_17 AC 106 ms
81,024 KB
testcase_18 AC 110 ms
94,464 KB
testcase_19 AC 164 ms
121,372 KB
testcase_20 AC 183 ms
122,564 KB
testcase_21 AC 164 ms
121,480 KB
testcase_22 AC 154 ms
117,928 KB
testcase_23 AC 136 ms
100,860 KB
testcase_24 AC 186 ms
122,232 KB
testcase_25 AC 133 ms
100,604 KB
testcase_26 AC 166 ms
121,252 KB
testcase_27 AC 184 ms
121,884 KB
testcase_28 AC 140 ms
106,320 KB
testcase_29 AC 140 ms
110,872 KB
testcase_30 AC 144 ms
111,132 KB
testcase_31 AC 184 ms
122,172 KB
testcase_32 AC 114 ms
97,280 KB
testcase_33 AC 76 ms
78,336 KB
testcase_34 AC 198 ms
133,340 KB
testcase_35 AC 196 ms
133,592 KB
testcase_36 AC 204 ms
133,592 KB
testcase_37 AC 203 ms
133,620 KB
testcase_38 AC 201 ms
133,484 KB
testcase_39 AC 171 ms
124,204 KB
testcase_40 AC 144 ms
112,640 KB
testcase_41 AC 179 ms
131,764 KB
testcase_42 AC 146 ms
113,408 KB
testcase_43 AC 103 ms
95,488 KB
testcase_44 AC 168 ms
122,124 KB
testcase_45 AC 145 ms
109,056 KB
testcase_46 AC 87 ms
84,224 KB
testcase_47 AC 108 ms
98,560 KB
testcase_48 AC 155 ms
115,436 KB
testcase_49 AC 42 ms
51,968 KB
testcase_50 AC 42 ms
51,712 KB
testcase_51 AC 40 ms
51,456 KB
testcase_52 AC 41 ms
51,840 KB
testcase_53 AC 41 ms
51,456 KB
testcase_54 AC 193 ms
134,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = [list(map(int, input().split())) for _ in range(3)]
dp = [0] * 6
dp[0] = 0
for i in range(N):
    dp2 = [0] * 6
    dp2[0] = dp[0] + A[0][i]
    dp2[1] = max(dp[0], dp[1]) + A[1][i]
    dp2[2] = max(dp[1], dp[2]) + A[0][i]
    dp2[3] = max(dp[2], dp[3], dp[5]) + A[1][i]
    dp2[4] = max(dp[3], dp[4], dp[5]) + A[0][i]
    dp2[5] = max(dp[0], dp[1], dp[5]) + A[2][i]
    dp = dp2
print(max(dp))
0