結果

問題 No.2889 Rusk
ユーザー 寝癖寝癖
提出日時 2024-09-13 23:10:00
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 617 bytes
コンパイル時間 333 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 259,008 KB
最終ジャッジ日時 2024-09-13 23:10:28
合計ジャッジ時間 24,164 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,456 KB
testcase_01 AC 37 ms
51,968 KB
testcase_02 AC 42 ms
51,840 KB
testcase_03 WA -
testcase_04 AC 63 ms
64,256 KB
testcase_05 AC 37 ms
51,840 KB
testcase_06 AC 60 ms
65,664 KB
testcase_07 AC 47 ms
59,648 KB
testcase_08 AC 56 ms
63,872 KB
testcase_09 WA -
testcase_10 AC 40 ms
52,096 KB
testcase_11 WA -
testcase_12 AC 58 ms
65,536 KB
testcase_13 AC 54 ms
62,848 KB
testcase_14 AC 122 ms
81,152 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 369 ms
134,048 KB
testcase_19 WA -
testcase_20 AC 782 ms
228,564 KB
testcase_21 AC 664 ms
189,140 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 468 ms
153,320 KB
testcase_26 AC 627 ms
187,900 KB
testcase_27 WA -
testcase_28 AC 486 ms
161,612 KB
testcase_29 WA -
testcase_30 AC 513 ms
168,860 KB
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 166 ms
88,960 KB
testcase_34 WA -
testcase_35 AC 909 ms
253,568 KB
testcase_36 WA -
testcase_37 AC 901 ms
253,796 KB
testcase_38 AC 921 ms
253,432 KB
testcase_39 WA -
testcase_40 AC 580 ms
172,164 KB
testcase_41 WA -
testcase_42 AC 529 ms
168,560 KB
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 WA -
testcase_47 AC 322 ms
121,148 KB
testcase_48 WA -
testcase_49 AC 39 ms
51,584 KB
testcase_50 AC 39 ms
52,096 KB
testcase_51 AC 39 ms
51,840 KB
testcase_52 AC 38 ms
51,584 KB
testcase_53 AC 39 ms
51,840 KB
testcase_54 AC 910 ms
259,008 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+1)]
dp[0][0][0] = 0

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