結果

問題 No.2889 Rusk
ユーザー 寝癖寝癖
提出日時 2024-09-13 23:13:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 925 ms / 2,000 ms
コード長 594 bytes
コンパイル時間 273 ms
コンパイル使用メモリ 81,848 KB
実行使用メモリ 259,012 KB
最終ジャッジ日時 2024-09-13 23:13:47
合計ジャッジ時間 25,693 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,736 KB
testcase_01 AC 38 ms
52,480 KB
testcase_02 AC 39 ms
51,968 KB
testcase_03 AC 39 ms
52,256 KB
testcase_04 AC 56 ms
64,384 KB
testcase_05 AC 40 ms
52,224 KB
testcase_06 AC 57 ms
66,176 KB
testcase_07 AC 46 ms
60,032 KB
testcase_08 AC 61 ms
63,872 KB
testcase_09 AC 64 ms
64,384 KB
testcase_10 AC 39 ms
52,480 KB
testcase_11 AC 45 ms
60,032 KB
testcase_12 AC 59 ms
65,792 KB
testcase_13 AC 56 ms
64,256 KB
testcase_14 AC 150 ms
81,852 KB
testcase_15 AC 248 ms
103,264 KB
testcase_16 AC 424 ms
145,136 KB
testcase_17 AC 210 ms
95,232 KB
testcase_18 AC 376 ms
134,584 KB
testcase_19 AC 663 ms
188,632 KB
testcase_20 AC 867 ms
228,632 KB
testcase_21 AC 650 ms
189,120 KB
testcase_22 AC 569 ms
176,892 KB
testcase_23 AC 475 ms
153,900 KB
testcase_24 AC 770 ms
222,796 KB
testcase_25 AC 466 ms
153,324 KB
testcase_26 AC 628 ms
188,084 KB
testcase_27 AC 822 ms
229,996 KB
testcase_28 AC 500 ms
161,664 KB
testcase_29 AC 540 ms
168,524 KB
testcase_30 AC 525 ms
168,908 KB
testcase_31 AC 805 ms
229,952 KB
testcase_32 AC 383 ms
134,924 KB
testcase_33 AC 166 ms
89,472 KB
testcase_34 AC 924 ms
253,304 KB
testcase_35 AC 915 ms
253,628 KB
testcase_36 AC 914 ms
253,508 KB
testcase_37 AC 887 ms
254,144 KB
testcase_38 AC 925 ms
254,068 KB
testcase_39 AC 693 ms
207,192 KB
testcase_40 AC 561 ms
171,900 KB
testcase_41 AC 743 ms
213,728 KB
testcase_42 AC 533 ms
168,428 KB
testcase_43 AC 292 ms
115,136 KB
testcase_44 AC 687 ms
199,408 KB
testcase_45 AC 524 ms
168,132 KB
testcase_46 AC 213 ms
101,020 KB
testcase_47 AC 327 ms
121,504 KB
testcase_48 AC 606 ms
184,688 KB
testcase_49 AC 40 ms
52,224 KB
testcase_50 AC 38 ms
52,096 KB
testcase_51 AC 39 ms
52,480 KB
testcase_52 AC 39 ms
52,096 KB
testcase_53 AC 40 ms
52,352 KB
testcase_54 AC 912 ms
259,012 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = [list(map(int, input().split()))+[0] for _ in range(3)]

inf = float('inf')

# dp[i][j][k] := i個目まで決めて、直前の状態がj、移動回数がkのときの最大値
dp = [[[-inf]*5 for _ in range(3)] for _ in range(N+2)]
dp[0][0][0] = 0

for i in range(N+1):
    for j in range(3):
        for k in range(5):
            for nj in range(3):
                nk = k + abs(j-nj)
                if nk < 5:
                    dp[i+1][nj][nk] = max(dp[i+1][nj][nk], dp[i][j][k] + A[nj][i])

ans = 0
for k in range(5):
    ans = max(ans, dp[N+1][0][k])

print(ans)
0