結果

問題 No.2889 Rusk
ユーザー adapchiadapchi
提出日時 2024-09-13 21:47:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 228 ms / 2,000 ms
コード長 630 bytes
コンパイル時間 340 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 134,792 KB
最終ジャッジ日時 2024-09-13 21:47:50
合計ジャッジ時間 8,603 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,328 KB
testcase_01 AC 40 ms
51,328 KB
testcase_02 AC 40 ms
52,224 KB
testcase_03 AC 42 ms
51,840 KB
testcase_04 AC 41 ms
52,352 KB
testcase_05 AC 41 ms
51,712 KB
testcase_06 AC 40 ms
52,224 KB
testcase_07 AC 40 ms
51,968 KB
testcase_08 AC 41 ms
52,096 KB
testcase_09 AC 40 ms
52,096 KB
testcase_10 AC 39 ms
51,968 KB
testcase_11 AC 41 ms
51,584 KB
testcase_12 AC 41 ms
51,968 KB
testcase_13 AC 41 ms
52,096 KB
testcase_14 AC 63 ms
69,376 KB
testcase_15 AC 84 ms
85,760 KB
testcase_16 AC 124 ms
99,152 KB
testcase_17 AC 79 ms
81,152 KB
testcase_18 AC 107 ms
94,976 KB
testcase_19 AC 158 ms
121,112 KB
testcase_20 AC 191 ms
122,544 KB
testcase_21 AC 161 ms
120,816 KB
testcase_22 AC 151 ms
117,808 KB
testcase_23 AC 127 ms
100,552 KB
testcase_24 AC 177 ms
121,712 KB
testcase_25 AC 128 ms
100,164 KB
testcase_26 AC 160 ms
121,000 KB
testcase_27 AC 192 ms
121,748 KB
testcase_28 AC 135 ms
106,528 KB
testcase_29 AC 142 ms
110,956 KB
testcase_30 AC 144 ms
110,252 KB
testcase_31 AC 183 ms
122,288 KB
testcase_32 AC 112 ms
96,640 KB
testcase_33 AC 76 ms
78,208 KB
testcase_34 AC 198 ms
133,440 KB
testcase_35 AC 228 ms
133,192 KB
testcase_36 AC 198 ms
133,324 KB
testcase_37 AC 203 ms
133,320 KB
testcase_38 AC 203 ms
133,320 KB
testcase_39 AC 164 ms
123,772 KB
testcase_40 AC 140 ms
113,024 KB
testcase_41 AC 182 ms
131,392 KB
testcase_42 AC 136 ms
113,024 KB
testcase_43 AC 96 ms
95,360 KB
testcase_44 AC 162 ms
121,936 KB
testcase_45 AC 132 ms
108,928 KB
testcase_46 AC 81 ms
83,968 KB
testcase_47 AC 100 ms
98,944 KB
testcase_48 AC 151 ms
115,092 KB
testcase_49 AC 41 ms
51,584 KB
testcase_50 AC 40 ms
51,456 KB
testcase_51 AC 41 ms
52,224 KB
testcase_52 AC 41 ms
51,456 KB
testcase_53 AC 42 ms
51,456 KB
testcase_54 AC 204 ms
134,792 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int, input().split()))
B = list(map(int, input().split()))
C = list(map(int, input().split()))

def solve1():
  dp = [0] * 5
  
  for i in range(N):
    for j in range(4):
      dp[j + 1] = max(dp[j + 1], dp[j])
        
    dp[0] += A[i]
    dp[1] += B[i]
    dp[2] += C[i]
    dp[3] += B[i]
    dp[4] += A[i]
  return max(dp)

def solve2():
  dp = [0] * 5
  
  for i in range(N):
    for j in range(4):
      dp[j + 1] = max(dp[j + 1], dp[j])
        
    dp[0] += A[i]
    dp[1] += B[i]
    dp[2] += A[i]
    dp[3] += B[i]
    dp[4] += A[i]
  return max(dp)
  
print(max(solve1(), solve2()))
  
  
0