結果

問題 No.2788 4-33 Hard
ユーザー vwxyzvwxyz
提出日時 2024-07-03 04:21:50
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 572 ms / 2,000 ms
コード長 922 bytes
コンパイル時間 131 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 11,136 KB
最終ジャッジ日時 2024-07-03 04:22:22
合計ジャッジ時間 28,710 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 341 ms
10,752 KB
testcase_01 AC 347 ms
10,752 KB
testcase_02 AC 354 ms
10,752 KB
testcase_03 AC 494 ms
11,008 KB
testcase_04 AC 369 ms
10,880 KB
testcase_05 AC 485 ms
11,008 KB
testcase_06 AC 391 ms
11,008 KB
testcase_07 AC 335 ms
10,880 KB
testcase_08 AC 348 ms
10,880 KB
testcase_09 AC 334 ms
11,008 KB
testcase_10 AC 554 ms
11,008 KB
testcase_11 AC 457 ms
11,008 KB
testcase_12 AC 458 ms
10,880 KB
testcase_13 AC 436 ms
10,880 KB
testcase_14 AC 461 ms
10,880 KB
testcase_15 AC 443 ms
10,880 KB
testcase_16 AC 437 ms
11,136 KB
testcase_17 AC 452 ms
10,880 KB
testcase_18 AC 454 ms
11,008 KB
testcase_19 AC 443 ms
11,136 KB
testcase_20 AC 453 ms
11,008 KB
testcase_21 AC 453 ms
11,136 KB
testcase_22 AC 433 ms
10,880 KB
testcase_23 AC 430 ms
11,008 KB
testcase_24 AC 459 ms
11,008 KB
testcase_25 AC 433 ms
11,008 KB
testcase_26 AC 440 ms
11,008 KB
testcase_27 AC 439 ms
10,880 KB
testcase_28 AC 451 ms
11,136 KB
testcase_29 AC 429 ms
11,008 KB
testcase_30 AC 444 ms
10,880 KB
testcase_31 AC 540 ms
10,880 KB
testcase_32 AC 530 ms
10,880 KB
testcase_33 AC 531 ms
10,880 KB
testcase_34 AC 506 ms
11,008 KB
testcase_35 AC 504 ms
11,008 KB
testcase_36 AC 495 ms
11,008 KB
testcase_37 AC 508 ms
11,008 KB
testcase_38 AC 534 ms
11,008 KB
testcase_39 AC 504 ms
10,880 KB
testcase_40 AC 481 ms
11,136 KB
testcase_41 AC 518 ms
11,008 KB
testcase_42 AC 487 ms
10,880 KB
testcase_43 AC 500 ms
11,008 KB
testcase_44 AC 507 ms
10,880 KB
testcase_45 AC 501 ms
11,008 KB
testcase_46 AC 527 ms
11,008 KB
testcase_47 AC 544 ms
11,008 KB
testcase_48 AC 518 ms
11,136 KB
testcase_49 AC 500 ms
10,752 KB
testcase_50 AC 455 ms
10,880 KB
testcase_51 AC 572 ms
10,880 KB
testcase_52 AC 562 ms
11,008 KB
testcase_53 AC 542 ms
10,880 KB
testcase_54 AC 555 ms
10,880 KB
testcase_55 AC 549 ms
11,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

O=[list(map(int,input().split())) for U in range(5)]
X=[list(map(int,input().split())) for U in range(5)]
mod=998244353
dp=[[[0]*34 for U in range(5)] for c in range(10)]
dp[0][0][0]=1
def comb(x,c):
    retu=1
    for i in range(x,x-c,-1):
        retu*=i
    for i in range(1,c+1):
        retu//=i
    return retu%mod
for a in range(5):
    for b in range(34):
        prev=dp
        dp=[[[0]*34 for U in range(5)] for c in range(10)]
        for cc in range(min(9,O[a][b]+1)):
            for c in range(9,cc-1,-1):
                for U in range(4,a*cc-1,-1):
                    for D in range(33,b*cc-1,-1):
                        dp[c][U][D]+=prev[c-cc][U-a*cc][D-b*cc]*comb(O[a][b],cc)
                        dp[c][U][D]%=mod
ans=0
for a in range(5):
    for U in range(5):
        for D in range(34):
            if (U+a,D)==(4,33):
                ans+=dp[8][U][D]*X[a][0]
                ans%=mod
print(ans)
0