結果

問題 No.2788 4-33 Hard
ユーザー 👑 p-adicp-adic
提出日時 2024-06-13 14:53:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 132 ms / 2,000 ms
コード長 552 bytes
コンパイル時間 180 ms
コンパイル使用メモリ 81,908 KB
実行使用メモリ 77,228 KB
最終ジャッジ日時 2024-06-14 20:50:13
合計ジャッジ時間 8,511 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
76,876 KB
testcase_01 AC 126 ms
76,968 KB
testcase_02 AC 130 ms
76,832 KB
testcase_03 AC 129 ms
76,448 KB
testcase_04 AC 125 ms
76,832 KB
testcase_05 AC 124 ms
76,556 KB
testcase_06 AC 125 ms
76,876 KB
testcase_07 AC 128 ms
76,972 KB
testcase_08 AC 129 ms
76,588 KB
testcase_09 AC 123 ms
76,964 KB
testcase_10 AC 123 ms
76,796 KB
testcase_11 AC 128 ms
76,956 KB
testcase_12 AC 126 ms
77,128 KB
testcase_13 AC 122 ms
77,076 KB
testcase_14 AC 120 ms
77,212 KB
testcase_15 AC 127 ms
76,816 KB
testcase_16 AC 121 ms
77,068 KB
testcase_17 AC 120 ms
76,996 KB
testcase_18 AC 121 ms
77,068 KB
testcase_19 AC 126 ms
76,960 KB
testcase_20 AC 118 ms
77,084 KB
testcase_21 AC 123 ms
76,884 KB
testcase_22 AC 126 ms
77,208 KB
testcase_23 AC 128 ms
76,932 KB
testcase_24 AC 124 ms
76,960 KB
testcase_25 AC 117 ms
77,128 KB
testcase_26 AC 126 ms
76,956 KB
testcase_27 AC 123 ms
76,588 KB
testcase_28 AC 124 ms
76,820 KB
testcase_29 AC 122 ms
77,220 KB
testcase_30 AC 125 ms
77,088 KB
testcase_31 AC 129 ms
76,912 KB
testcase_32 AC 118 ms
76,952 KB
testcase_33 AC 128 ms
76,828 KB
testcase_34 AC 125 ms
77,204 KB
testcase_35 AC 125 ms
76,708 KB
testcase_36 AC 127 ms
76,968 KB
testcase_37 AC 132 ms
77,228 KB
testcase_38 AC 125 ms
76,696 KB
testcase_39 AC 125 ms
76,712 KB
testcase_40 AC 123 ms
76,692 KB
testcase_41 AC 126 ms
76,560 KB
testcase_42 AC 126 ms
76,968 KB
testcase_43 AC 123 ms
76,836 KB
testcase_44 AC 121 ms
76,816 KB
testcase_45 AC 123 ms
76,964 KB
testcase_46 AC 124 ms
76,680 KB
testcase_47 AC 123 ms
76,600 KB
testcase_48 AC 123 ms
77,028 KB
testcase_49 AC 123 ms
76,844 KB
testcase_50 AC 123 ms
77,096 KB
testcase_51 AC 126 ms
76,780 KB
testcase_52 AC 124 ms
76,780 KB
testcase_53 AC 124 ms
77,036 KB
testcase_54 AC 126 ms
77,148 KB
testcase_55 AC 123 ms
76,912 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

R=range
J=lambda:map(int,input().split())
D=[1]+[0]*1529
X=[list(J())for a in R(5)]
Y=[list(J())[0]for a in R(5)]
P=998244353
J=[0,1]
for g in R(2,34):J+=[P-P//g*J[P%g]]
C=[]
for a in R(5):
	C+=[[]]
	for b in R(34):
		c=[1]
		for g in R(1,34):c+=[c[-1]*(X[a][b]-g+1)*J[g]%P]
		C[-1]+=[c]
for e in R(5):
	for f in R(34):
		for a in R(4,-1,-1):
			for b in R(33,-1,-1):
				for n in R(8,-1,-1):
					for g in R(1,min(a//e if e else n,b//f if f else n,n)+1):t=a+45*b+5*n;D[t]=(D[t]+D[t-(e+45*f+5)*g]*C[e][f][g])%P
print(sum(D[1529-y]*Y[y]for y in R(5))%P)
0