結果

問題 No.2889 Rusk
ユーザー vwxyzvwxyz
提出日時 2024-09-13 22:35:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 194 ms / 2,000 ms
コード長 500 bytes
コンパイル時間 370 ms
コンパイル使用メモリ 82,128 KB
実行使用メモリ 134,472 KB
最終ジャッジ日時 2024-09-13 22:36:13
合計ジャッジ時間 8,174 ms
ジャッジサーバーID
(参考情報)
judge4 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,752 KB
testcase_01 AC 36 ms
53,128 KB
testcase_02 AC 36 ms
52,296 KB
testcase_03 AC 37 ms
52,068 KB
testcase_04 AC 37 ms
52,360 KB
testcase_05 AC 37 ms
52,600 KB
testcase_06 AC 38 ms
53,416 KB
testcase_07 AC 37 ms
52,488 KB
testcase_08 AC 38 ms
53,800 KB
testcase_09 AC 57 ms
53,616 KB
testcase_10 AC 37 ms
52,576 KB
testcase_11 AC 38 ms
52,400 KB
testcase_12 AC 38 ms
52,420 KB
testcase_13 AC 38 ms
52,276 KB
testcase_14 AC 54 ms
69,388 KB
testcase_15 AC 75 ms
86,372 KB
testcase_16 AC 116 ms
99,968 KB
testcase_17 AC 69 ms
81,328 KB
testcase_18 AC 99 ms
95,260 KB
testcase_19 AC 150 ms
121,072 KB
testcase_20 AC 174 ms
122,756 KB
testcase_21 AC 151 ms
121,276 KB
testcase_22 AC 141 ms
117,864 KB
testcase_23 AC 118 ms
100,964 KB
testcase_24 AC 169 ms
122,468 KB
testcase_25 AC 119 ms
101,016 KB
testcase_26 AC 154 ms
121,176 KB
testcase_27 AC 174 ms
121,824 KB
testcase_28 AC 124 ms
106,408 KB
testcase_29 AC 131 ms
111,308 KB
testcase_30 AC 132 ms
111,212 KB
testcase_31 AC 174 ms
122,608 KB
testcase_32 AC 101 ms
97,568 KB
testcase_33 AC 64 ms
78,848 KB
testcase_34 AC 190 ms
133,552 KB
testcase_35 AC 190 ms
133,440 KB
testcase_36 AC 191 ms
133,824 KB
testcase_37 AC 194 ms
133,456 KB
testcase_38 AC 188 ms
133,740 KB
testcase_39 AC 154 ms
124,352 KB
testcase_40 AC 126 ms
112,732 KB
testcase_41 AC 169 ms
131,612 KB
testcase_42 AC 122 ms
113,344 KB
testcase_43 AC 93 ms
95,684 KB
testcase_44 AC 152 ms
122,156 KB
testcase_45 AC 118 ms
109,072 KB
testcase_46 AC 70 ms
84,388 KB
testcase_47 AC 89 ms
99,476 KB
testcase_48 AC 141 ms
115,504 KB
testcase_49 AC 37 ms
52,752 KB
testcase_50 AC 37 ms
52,668 KB
testcase_51 AC 36 ms
52,272 KB
testcase_52 AC 36 ms
52,332 KB
testcase_53 AC 37 ms
52,596 KB
testcase_54 AC 188 ms
134,472 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
A=list(map(int,input().split()))
B=list(map(int,input().split()))
C=list(map(int,input().split()))
ans=0
dp=[0]*5
for i in range(N):
    dp[0]+=A[i]
    dp[1]+=B[i]
    dp[2]+=A[i]
    dp[3]+=B[i]
    dp[4]+=A[i]
    for t in range(1,5):
        dp[t]=max(dp[t],dp[t-1])
ans=max(ans,dp[4])
dp=[0]*5
for i in range(N):
    dp[0]+=A[i]
    dp[1]+=B[i]
    dp[2]+=C[i]
    dp[3]+=B[i]
    dp[4]+=A[i]
    for t in range(1,5):
        dp[t]=max(dp[t],dp[t-1])
ans=max(ans,dp[4])
print(ans)
0