結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,608 KB
testcase_01 AC 39 ms
51,712 KB
testcase_02 AC 38 ms
52,224 KB
testcase_03 AC 37 ms
52,480 KB
testcase_04 AC 40 ms
51,840 KB
testcase_05 AC 38 ms
52,096 KB
testcase_06 AC 40 ms
52,608 KB
testcase_07 AC 39 ms
52,096 KB
testcase_08 AC 41 ms
51,840 KB
testcase_09 AC 40 ms
52,224 KB
testcase_10 AC 40 ms
51,840 KB
testcase_11 AC 41 ms
51,968 KB
testcase_12 AC 40 ms
52,864 KB
testcase_13 AC 39 ms
52,352 KB
testcase_14 AC 60 ms
71,936 KB
testcase_15 AC 83 ms
86,272 KB
testcase_16 AC 136 ms
99,468 KB
testcase_17 AC 79 ms
81,084 KB
testcase_18 AC 113 ms
94,848 KB
testcase_19 AC 184 ms
121,456 KB
testcase_20 AC 183 ms
121,700 KB
testcase_21 AC 177 ms
121,872 KB
testcase_22 AC 156 ms
117,596 KB
testcase_23 AC 133 ms
100,932 KB
testcase_24 AC 185 ms
121,796 KB
testcase_25 AC 137 ms
100,920 KB
testcase_26 AC 165 ms
121,008 KB
testcase_27 AC 200 ms
121,448 KB
testcase_28 AC 145 ms
106,860 KB
testcase_29 AC 140 ms
111,164 KB
testcase_30 AC 146 ms
110,504 KB
testcase_31 AC 191 ms
122,764 KB
testcase_32 AC 115 ms
97,024 KB
testcase_33 AC 74 ms
78,720 KB
testcase_34 AC 202 ms
133,768 KB
testcase_35 AC 208 ms
133,468 KB
testcase_36 AC 217 ms
133,588 KB
testcase_37 AC 207 ms
133,708 KB
testcase_38 AC 214 ms
133,064 KB
testcase_39 AC 177 ms
124,108 KB
testcase_40 AC 157 ms
112,768 KB
testcase_41 AC 183 ms
131,648 KB
testcase_42 AC 156 ms
113,024 KB
testcase_43 AC 116 ms
95,360 KB
testcase_44 AC 189 ms
122,192 KB
testcase_45 AC 153 ms
108,416 KB
testcase_46 AC 95 ms
84,664 KB
testcase_47 AC 116 ms
98,176 KB
testcase_48 AC 167 ms
115,540 KB
testcase_49 AC 39 ms
51,840 KB
testcase_50 AC 40 ms
51,968 KB
testcase_51 AC 39 ms
51,712 KB
testcase_52 AC 40 ms
52,224 KB
testcase_53 AC 40 ms
51,840 KB
testcase_54 AC 189 ms
134,324 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
A=list(map(int, input().split()))
B=list(map(int, input().split()))
C=list(map(int, input().split()))
D=[0,0,0,0,0]
for i in range(N):
  DD=[-10**12]*5
  DD[0]=max(DD[0],D[0]+A[i])
  DD[1]=max(DD[1],D[0]+B[i],D[1]+B[i])
  DD[2]=max(DD[2],D[0]+C[i],D[1]+C[i],D[2]+C[i])
  DD[3]=max(DD[3],D[2]+B[i],D[3]+B[i])
  DD[4]=max(DD[4],D[2]+A[i],D[3]+A[i],D[4]+A[i])
  D=DD 
  
p=max(D)

D=[0,0,0,0,0]
for i in range(N):
  DD=[-10**12]*5
  DD[0]=max(DD[0],D[0]+A[i])
  DD[1]=max(DD[1],D[0]+B[i],D[1]+B[i])
  DD[2]=max(DD[2],D[0]+A[i],D[1]+A[i],D[2]+A[i])
  DD[3]=max(DD[3],D[2]+B[i],D[3]+B[i])
  DD[4]=max(DD[4],D[2]+A[i],D[3]+A[i],D[4]+A[i])
  D=DD 

q=max(D)
print(max(p,q))
  
0