結果

問題 No.2889 Rusk
ユーザー 寝癖寝癖
提出日時 2024-09-13 21:48:17
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 789 bytes
コンパイル時間 257 ms
コンパイル使用メモリ 81,664 KB
実行使用メモリ 179,548 KB
最終ジャッジ日時 2024-09-13 21:48:36
合計ジャッジ時間 7,447 ms
ジャッジサーバーID
(参考情報)
judge3 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,412 KB
testcase_01 AC 40 ms
51,968 KB
testcase_02 AC 39 ms
51,712 KB
testcase_03 AC 36 ms
52,088 KB
testcase_04 WA -
testcase_05 AC 37 ms
52,480 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 46 ms
61,312 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 92 ms
80,064 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 361 ms
140,612 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 387 ms
138,284 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 140 ms
85,376 KB
testcase_34 WA -
testcase_35 AC 508 ms
178,792 KB
testcase_36 WA -
testcase_37 WA -
testcase_38 AC 516 ms
179,548 KB
testcase_39 WA -
testcase_40 AC 380 ms
138,792 KB
testcase_41 WA -
testcase_42 AC 388 ms
139,548 KB
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 WA -
testcase_47 AC 223 ms
105,800 KB
testcase_48 WA -
testcase_49 AC 41 ms
51,968 KB
testcase_50 AC 41 ms
52,096 KB
testcase_51 AC 41 ms
51,456 KB
testcase_52 AC 41 ms
52,096 KB
testcase_53 AC 41 ms
52,096 KB
testcase_54 AC 530 ms
177,896 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

# dp[i][j][k] := i個目まで決めて、i個目はj回焼いている、変化がk回起きた
dp = [[[0]*5 for _ in range(3)] for _ in range(N+1)]
for i in range(N):
    for j in range(3):
        for k in range(5):
            # そこで終わる
            if j-1 >= 0 and k+1 < 5:
                dp[i+1][j-1][k+1] = max(dp[i+1][j-1][k+1], dp[i][j][k] + A[j-1][i])
            # 継続
            dp[i+1][j][k] = max(dp[i+1][j][k], dp[i][j][k] + A[j][i])

            # そこから焼く
            if j+1 < 3 and k+1 < 5:
                dp[i+1][j+1][k+1] = max(dp[i+1][j+1][k+1], dp[i][j][k] + A[j+1][i])

ans = 0
for j in range(3):
    for k in range(5):
        ans = max(ans, dp[N][j][k])
print(ans)
0