結果

問題 No.2788 4-33 Hard
ユーザー vwxyzvwxyz
提出日時 2024-07-03 04:22:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 218 ms / 2,000 ms
コード長 922 bytes
コンパイル時間 825 ms
コンパイル使用メモリ 82,244 KB
実行使用メモリ 77,656 KB
最終ジャッジ日時 2024-07-03 04:22:15
合計ジャッジ時間 12,542 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
77,136 KB
testcase_01 AC 119 ms
76,944 KB
testcase_02 AC 161 ms
77,656 KB
testcase_03 AC 206 ms
77,436 KB
testcase_04 AC 136 ms
77,460 KB
testcase_05 AC 173 ms
77,388 KB
testcase_06 AC 141 ms
77,356 KB
testcase_07 AC 107 ms
76,988 KB
testcase_08 AC 125 ms
77,144 KB
testcase_09 AC 141 ms
76,924 KB
testcase_10 AC 194 ms
77,224 KB
testcase_11 AC 179 ms
77,056 KB
testcase_12 AC 166 ms
77,048 KB
testcase_13 AC 159 ms
77,520 KB
testcase_14 AC 163 ms
77,204 KB
testcase_15 AC 160 ms
77,328 KB
testcase_16 AC 163 ms
77,052 KB
testcase_17 AC 164 ms
77,040 KB
testcase_18 AC 186 ms
77,064 KB
testcase_19 AC 164 ms
77,188 KB
testcase_20 AC 165 ms
77,176 KB
testcase_21 AC 165 ms
77,236 KB
testcase_22 AC 163 ms
77,384 KB
testcase_23 AC 163 ms
77,128 KB
testcase_24 AC 161 ms
77,124 KB
testcase_25 AC 175 ms
77,224 KB
testcase_26 AC 162 ms
77,500 KB
testcase_27 AC 167 ms
77,164 KB
testcase_28 AC 165 ms
77,132 KB
testcase_29 AC 162 ms
77,120 KB
testcase_30 AC 163 ms
77,116 KB
testcase_31 AC 187 ms
77,228 KB
testcase_32 AC 204 ms
77,464 KB
testcase_33 AC 194 ms
77,192 KB
testcase_34 AC 180 ms
77,300 KB
testcase_35 AC 178 ms
77,112 KB
testcase_36 AC 176 ms
77,156 KB
testcase_37 AC 180 ms
77,128 KB
testcase_38 AC 187 ms
77,032 KB
testcase_39 AC 186 ms
77,232 KB
testcase_40 AC 218 ms
77,244 KB
testcase_41 AC 184 ms
77,196 KB
testcase_42 AC 184 ms
77,276 KB
testcase_43 AC 187 ms
77,312 KB
testcase_44 AC 185 ms
77,160 KB
testcase_45 AC 188 ms
77,192 KB
testcase_46 AC 193 ms
77,164 KB
testcase_47 AC 191 ms
77,472 KB
testcase_48 AC 197 ms
77,212 KB
testcase_49 AC 194 ms
77,460 KB
testcase_50 AC 164 ms
77,036 KB
testcase_51 AC 197 ms
77,256 KB
testcase_52 AC 193 ms
77,160 KB
testcase_53 AC 197 ms
77,276 KB
testcase_54 AC 193 ms
77,216 KB
testcase_55 AC 193 ms
77,188 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