結果

問題 No.2788 4-33 Hard
ユーザー 👑 p-adicp-adic
提出日時 2024-06-13 14:53:54
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 305 ms / 2,000 ms
コード長 552 bytes
コンパイル時間 827 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 11,264 KB
最終ジャッジ日時 2024-06-14 20:53:42
合計ジャッジ時間 18,078 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 255 ms
10,880 KB
testcase_01 AC 258 ms
10,880 KB
testcase_02 AC 272 ms
10,880 KB
testcase_03 AC 276 ms
11,008 KB
testcase_04 AC 267 ms
11,008 KB
testcase_05 AC 275 ms
10,880 KB
testcase_06 AC 268 ms
10,880 KB
testcase_07 AC 277 ms
10,880 KB
testcase_08 AC 278 ms
11,008 KB
testcase_09 AC 291 ms
11,008 KB
testcase_10 AC 272 ms
11,264 KB
testcase_11 AC 275 ms
11,008 KB
testcase_12 AC 269 ms
10,880 KB
testcase_13 AC 275 ms
10,880 KB
testcase_14 AC 272 ms
10,880 KB
testcase_15 AC 272 ms
10,880 KB
testcase_16 AC 296 ms
10,880 KB
testcase_17 AC 277 ms
10,880 KB
testcase_18 AC 287 ms
10,880 KB
testcase_19 AC 277 ms
10,880 KB
testcase_20 AC 278 ms
10,880 KB
testcase_21 AC 270 ms
10,880 KB
testcase_22 AC 268 ms
11,008 KB
testcase_23 AC 268 ms
10,880 KB
testcase_24 AC 277 ms
11,008 KB
testcase_25 AC 276 ms
10,880 KB
testcase_26 AC 285 ms
10,880 KB
testcase_27 AC 275 ms
10,880 KB
testcase_28 AC 269 ms
11,008 KB
testcase_29 AC 273 ms
10,880 KB
testcase_30 AC 273 ms
11,008 KB
testcase_31 AC 276 ms
11,136 KB
testcase_32 AC 273 ms
11,264 KB
testcase_33 AC 273 ms
11,136 KB
testcase_34 AC 278 ms
11,264 KB
testcase_35 AC 280 ms
11,136 KB
testcase_36 AC 284 ms
11,264 KB
testcase_37 AC 269 ms
11,136 KB
testcase_38 AC 272 ms
11,136 KB
testcase_39 AC 277 ms
11,136 KB
testcase_40 AC 277 ms
11,264 KB
testcase_41 AC 270 ms
11,136 KB
testcase_42 AC 276 ms
11,136 KB
testcase_43 AC 278 ms
11,136 KB
testcase_44 AC 270 ms
11,264 KB
testcase_45 AC 263 ms
11,136 KB
testcase_46 AC 269 ms
11,008 KB
testcase_47 AC 271 ms
11,008 KB
testcase_48 AC 270 ms
10,880 KB
testcase_49 AC 267 ms
11,008 KB
testcase_50 AC 277 ms
10,880 KB
testcase_51 AC 271 ms
11,136 KB
testcase_52 AC 275 ms
11,264 KB
testcase_53 AC 300 ms
11,136 KB
testcase_54 AC 305 ms
11,136 KB
testcase_55 AC 287 ms
11,136 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