結果

問題 No.2889 Rusk
ユーザー にしろにしろ
提出日時 2024-09-19 18:58:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 447 ms / 2,000 ms
コード長 596 bytes
コンパイル時間 177 ms
コンパイル使用メモリ 82,336 KB
実行使用メモリ 139,428 KB
最終ジャッジ日時 2024-09-19 18:58:39
合計ジャッジ時間 14,519 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,608 KB
testcase_01 AC 43 ms
52,224 KB
testcase_02 AC 35 ms
51,840 KB
testcase_03 AC 36 ms
51,968 KB
testcase_04 AC 47 ms
62,976 KB
testcase_05 AC 36 ms
52,736 KB
testcase_06 AC 50 ms
64,640 KB
testcase_07 AC 42 ms
59,648 KB
testcase_08 AC 47 ms
63,232 KB
testcase_09 AC 47 ms
63,104 KB
testcase_10 AC 37 ms
51,840 KB
testcase_11 AC 41 ms
59,520 KB
testcase_12 AC 49 ms
63,744 KB
testcase_13 AC 47 ms
62,464 KB
testcase_14 AC 75 ms
76,288 KB
testcase_15 AC 120 ms
87,632 KB
testcase_16 AC 213 ms
100,916 KB
testcase_17 AC 120 ms
82,236 KB
testcase_18 AC 179 ms
96,384 KB
testcase_19 AC 306 ms
123,612 KB
testcase_20 AC 351 ms
125,292 KB
testcase_21 AC 324 ms
123,588 KB
testcase_22 AC 269 ms
120,216 KB
testcase_23 AC 219 ms
102,692 KB
testcase_24 AC 343 ms
124,940 KB
testcase_25 AC 222 ms
102,800 KB
testcase_26 AC 320 ms
123,504 KB
testcase_27 AC 356 ms
125,072 KB
testcase_28 AC 246 ms
108,296 KB
testcase_29 AC 255 ms
113,632 KB
testcase_30 AC 273 ms
112,980 KB
testcase_31 AC 352 ms
125,792 KB
testcase_32 AC 185 ms
99,072 KB
testcase_33 AC 95 ms
79,328 KB
testcase_34 AC 429 ms
138,388 KB
testcase_35 AC 402 ms
138,832 KB
testcase_36 AC 402 ms
138,392 KB
testcase_37 AC 427 ms
138,404 KB
testcase_38 AC 402 ms
138,464 KB
testcase_39 AC 364 ms
127,136 KB
testcase_40 AC 289 ms
116,352 KB
testcase_41 AC 395 ms
135,088 KB
testcase_42 AC 272 ms
116,480 KB
testcase_43 AC 165 ms
97,508 KB
testcase_44 AC 352 ms
124,980 KB
testcase_45 AC 286 ms
112,128 KB
testcase_46 AC 121 ms
85,456 KB
testcase_47 AC 167 ms
99,840 KB
testcase_48 AC 309 ms
118,252 KB
testcase_49 AC 36 ms
51,712 KB
testcase_50 AC 36 ms
52,316 KB
testcase_51 AC 35 ms
51,840 KB
testcase_52 AC 36 ms
51,712 KB
testcase_53 AC 36 ms
51,840 KB
testcase_54 AC 447 ms
139,428 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
taste=[[1**18]*n for _ in range(3)]
for i in range(3):
    taste[i]=list(map(int,input().split()))
dp=[[-1**18]*3 for _ in range(3)]
dp[0][0]=0
for i in range(n):
    ndp=[[1**18]*3 for _ in range(3)]
    for x in range(3):
        for y in range(3):
            for a in range(2):
                for b in range(2):
                    if x+a>2 or y+b>2:
                        continue
                    ndp[x+a][y+b]=max(ndp[x+a][y+b],dp[x][y]+taste[(x+a)%2+(y+b)%2][i])
    dp=ndp
ans=-1**18
for x in range(3):
    for y in range(3):
        ans=max(ans,dp[x][y])
print(ans)
0