結果

問題 No.2783 4-33 Easy
ユーザー 👑 p-adicp-adic
提出日時 2024-06-10 19:24:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 136 ms / 2,000 ms
コード長 560 bytes
コンパイル時間 213 ms
コンパイル使用メモリ 81,664 KB
実行使用メモリ 77,268 KB
最終ジャッジ日時 2024-06-14 20:49:49
合計ジャッジ時間 4,958 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
76,644 KB
testcase_01 AC 123 ms
77,164 KB
testcase_02 AC 133 ms
77,040 KB
testcase_03 AC 127 ms
76,912 KB
testcase_04 AC 128 ms
77,160 KB
testcase_05 AC 130 ms
76,784 KB
testcase_06 AC 128 ms
76,952 KB
testcase_07 AC 127 ms
77,148 KB
testcase_08 AC 129 ms
76,696 KB
testcase_09 AC 127 ms
76,756 KB
testcase_10 AC 125 ms
76,760 KB
testcase_11 AC 128 ms
76,904 KB
testcase_12 AC 132 ms
77,148 KB
testcase_13 AC 134 ms
76,896 KB
testcase_14 AC 130 ms
76,992 KB
testcase_15 AC 132 ms
77,100 KB
testcase_16 AC 133 ms
76,976 KB
testcase_17 AC 131 ms
76,944 KB
testcase_18 AC 132 ms
76,884 KB
testcase_19 AC 131 ms
76,760 KB
testcase_20 AC 127 ms
77,024 KB
testcase_21 AC 126 ms
76,756 KB
testcase_22 AC 136 ms
76,988 KB
testcase_23 AC 136 ms
76,760 KB
testcase_24 AC 127 ms
76,896 KB
testcase_25 AC 129 ms
76,760 KB
testcase_26 AC 129 ms
77,268 KB
testcase_27 AC 132 ms
77,144 KB
testcase_28 AC 131 ms
77,200 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

I,R=input,range
D=[1]+[0]*1529
X=[0]*170
Y=[0]*5
N=I()
for A,B in zip(map(int,I().split()),I().split()):
	if"A"<B:Y[A]+=1
	elif'A'>B[-1]:X[A+5*int(B)]+=1
P=998244353
J=[0,1]
for g in R(2,34):J+=[P-P//g*J[P%g]]
C=[]
for i in R(170):
	C+=[[1]]
	for g in R(1,34):C[i]+=[C[i][-1]*(X[i]-g+1)*J[g]%P]
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+5*f][g])%P
print(sum(D[1529-y]*Y[y]for y in R(5))%P)
0