結果

問題 No.2889 Rusk
ユーザー 👑 p-adicp-adic
提出日時 2024-07-06 00:25:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 178 ms / 2,000 ms
コード長 244 bytes
コンパイル時間 231 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 134,292 KB
最終ジャッジ日時 2024-07-06 00:25:57
合計ジャッジ時間 8,087 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,968 KB
testcase_01 AC 41 ms
52,096 KB
testcase_02 AC 37 ms
51,840 KB
testcase_03 AC 36 ms
51,840 KB
testcase_04 AC 36 ms
51,840 KB
testcase_05 AC 36 ms
51,456 KB
testcase_06 AC 35 ms
51,968 KB
testcase_07 AC 36 ms
51,712 KB
testcase_08 AC 37 ms
51,712 KB
testcase_09 AC 40 ms
51,712 KB
testcase_10 AC 37 ms
51,840 KB
testcase_11 AC 39 ms
51,712 KB
testcase_12 AC 37 ms
52,224 KB
testcase_13 AC 36 ms
51,584 KB
testcase_14 AC 52 ms
67,072 KB
testcase_15 AC 84 ms
86,400 KB
testcase_16 AC 114 ms
99,272 KB
testcase_17 AC 67 ms
80,896 KB
testcase_18 AC 97 ms
94,848 KB
testcase_19 AC 145 ms
121,260 KB
testcase_20 AC 170 ms
122,700 KB
testcase_21 AC 156 ms
120,972 KB
testcase_22 AC 137 ms
118,008 KB
testcase_23 AC 121 ms
100,636 KB
testcase_24 AC 178 ms
121,984 KB
testcase_25 AC 110 ms
99,940 KB
testcase_26 AC 148 ms
121,016 KB
testcase_27 AC 173 ms
122,528 KB
testcase_28 AC 127 ms
106,740 KB
testcase_29 AC 124 ms
110,668 KB
testcase_30 AC 127 ms
110,220 KB
testcase_31 AC 173 ms
122,688 KB
testcase_32 AC 109 ms
97,280 KB
testcase_33 AC 64 ms
78,592 KB
testcase_34 AC 176 ms
133,640 KB
testcase_35 AC 178 ms
133,900 KB
testcase_36 AC 174 ms
133,440 KB
testcase_37 AC 177 ms
133,380 KB
testcase_38 AC 174 ms
133,640 KB
testcase_39 AC 154 ms
124,116 KB
testcase_40 AC 119 ms
112,896 KB
testcase_41 AC 148 ms
131,612 KB
testcase_42 AC 129 ms
113,536 KB
testcase_43 AC 87 ms
95,360 KB
testcase_44 AC 139 ms
121,884 KB
testcase_45 AC 120 ms
109,056 KB
testcase_46 AC 72 ms
83,968 KB
testcase_47 AC 88 ms
98,432 KB
testcase_48 AC 129 ms
115,512 KB
testcase_49 AC 40 ms
52,352 KB
testcase_50 AC 35 ms
51,968 KB
testcase_51 AC 34 ms
51,840 KB
testcase_52 AC 34 ms
51,456 KB
testcase_53 AC 34 ms
51,712 KB
testcase_54 AC 171 ms
134,292 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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