結果

問題 No.2889 Rusk
ユーザー 👑 p-adicp-adic
提出日時 2024-07-06 00:26:05
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 703 ms / 2,000 ms
コード長 244 bytes
コンパイル時間 404 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 51,580 KB
最終ジャッジ日時 2024-07-06 00:26:29
合計ジャッジ時間 18,359 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,752 KB
testcase_01 AC 27 ms
10,624 KB
testcase_02 AC 26 ms
10,496 KB
testcase_03 AC 25 ms
10,752 KB
testcase_04 AC 25 ms
10,496 KB
testcase_05 AC 26 ms
10,624 KB
testcase_06 AC 25 ms
10,496 KB
testcase_07 AC 24 ms
10,624 KB
testcase_08 AC 25 ms
10,752 KB
testcase_09 AC 25 ms
10,752 KB
testcase_10 AC 25 ms
10,624 KB
testcase_11 AC 25 ms
10,496 KB
testcase_12 AC 26 ms
10,496 KB
testcase_13 AC 25 ms
10,496 KB
testcase_14 AC 48 ms
12,160 KB
testcase_15 AC 127 ms
16,632 KB
testcase_16 AC 293 ms
26,364 KB
testcase_17 AC 109 ms
14,876 KB
testcase_18 AC 253 ms
23,720 KB
testcase_19 AC 455 ms
36,416 KB
testcase_20 AC 558 ms
42,392 KB
testcase_21 AC 460 ms
36,472 KB
testcase_22 AC 422 ms
32,924 KB
testcase_23 AC 315 ms
28,024 KB
testcase_24 AC 545 ms
43,800 KB
testcase_25 AC 325 ms
27,692 KB
testcase_26 AC 470 ms
35,628 KB
testcase_27 AC 588 ms
45,204 KB
testcase_28 AC 352 ms
29,760 KB
testcase_29 AC 378 ms
30,508 KB
testcase_30 AC 349 ms
30,348 KB
testcase_31 AC 611 ms
42,676 KB
testcase_32 AC 257 ms
24,376 KB
testcase_33 AC 87 ms
14,592 KB
testcase_34 AC 683 ms
50,560 KB
testcase_35 AC 692 ms
50,536 KB
testcase_36 AC 703 ms
50,560 KB
testcase_37 AC 670 ms
50,428 KB
testcase_38 AC 697 ms
50,428 KB
testcase_39 AC 547 ms
17,288 KB
testcase_40 AC 442 ms
15,748 KB
testcase_41 AC 553 ms
17,528 KB
testcase_42 AC 415 ms
15,508 KB
testcase_43 AC 192 ms
12,648 KB
testcase_44 AC 519 ms
16,916 KB
testcase_45 AC 412 ms
15,492 KB
testcase_46 AC 127 ms
11,896 KB
testcase_47 AC 209 ms
12,968 KB
testcase_48 AC 471 ms
16,108 KB
testcase_49 AC 26 ms
10,496 KB
testcase_50 AC 24 ms
10,496 KB
testcase_51 AC 25 ms
10,624 KB
testcase_52 AC 24 ms
10,624 KB
testcase_53 AC 24 ms
10,624 KB
testcase_54 AC 641 ms
51,580 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