結果

問題 No.2889 Rusk
ユーザー 寝癖寝癖
提出日時 2024-09-13 23:08:35
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 580 bytes
コンパイル時間 384 ms
コンパイル使用メモリ 81,944 KB
実行使用メモリ 180,600 KB
最終ジャッジ日時 2024-09-13 23:09:01
合計ジャッジ時間 20,331 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,968 KB
testcase_01 AC 39 ms
52,224 KB
testcase_02 AC 37 ms
51,968 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 39 ms
51,840 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 52 ms
62,720 KB
testcase_09 WA -
testcase_10 AC 38 ms
51,968 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 93 ms
79,232 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 453 ms
139,648 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 419 ms
137,464 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 124 ms
85,248 KB
testcase_34 WA -
testcase_35 AC 618 ms
180,012 KB
testcase_36 WA -
testcase_37 WA -
testcase_38 AC 629 ms
180,072 KB
testcase_39 WA -
testcase_40 AC 454 ms
138,684 KB
testcase_41 WA -
testcase_42 AC 419 ms
138,604 KB
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 WA -
testcase_47 AC 243 ms
104,752 KB
testcase_48 WA -
testcase_49 AC 38 ms
51,840 KB
testcase_50 AC 38 ms
51,840 KB
testcase_51 AC 38 ms
52,352 KB
testcase_52 AC 39 ms
51,328 KB
testcase_53 AC 39 ms
51,968 KB
testcase_54 AC 619 ms
180,228 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

# dp[i][j][k] := 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):
            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 j in range(3):
    for k in range(5):
        ans = max(ans, dp[N][j][k])

print(ans)

0