結果

問題 No.2783 4-33 Easy
ユーザー 👑 p-adicp-adic
提出日時 2024-06-09 20:56:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 118 ms / 2,000 ms
コード長 359 bytes
コンパイル時間 192 ms
コンパイル使用メモリ 82,760 KB
実行使用メモリ 74,752 KB
最終ジャッジ日時 2024-06-14 20:49:06
合計ジャッジ時間 3,746 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
59,776 KB
testcase_01 AC 47 ms
60,416 KB
testcase_02 AC 51 ms
62,208 KB
testcase_03 AC 52 ms
62,080 KB
testcase_04 AC 66 ms
65,664 KB
testcase_05 AC 118 ms
74,752 KB
testcase_06 AC 99 ms
67,328 KB
testcase_07 AC 102 ms
69,120 KB
testcase_08 AC 108 ms
71,040 KB
testcase_09 AC 107 ms
69,504 KB
testcase_10 AC 91 ms
67,328 KB
testcase_11 AC 93 ms
68,992 KB
testcase_12 AC 97 ms
70,016 KB
testcase_13 AC 92 ms
68,736 KB
testcase_14 AC 88 ms
67,840 KB
testcase_15 AC 91 ms
68,480 KB
testcase_16 AC 96 ms
69,504 KB
testcase_17 AC 100 ms
71,168 KB
testcase_18 AC 96 ms
70,144 KB
testcase_19 AC 97 ms
70,400 KB
testcase_20 AC 91 ms
67,712 KB
testcase_21 AC 100 ms
72,448 KB
testcase_22 AC 94 ms
70,144 KB
testcase_23 AC 87 ms
67,840 KB
testcase_24 AC 90 ms
68,736 KB
testcase_25 AC 94 ms
70,272 KB
testcase_26 AC 96 ms
70,400 KB
testcase_27 AC 98 ms
71,040 KB
testcase_28 AC 96 ms
70,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

I,R=input,range
N=I()
X=[]
Y=[]
for A,B in zip(map(int,I().split()),I().split()):
	if B>"A":Y+=[A]
	elif B[-1]<'A':X+=[[A,int(B)]]
D=[[[0]*34for c in R(9)]for i in R(5)]
D[0][0][0]=1
P=998244353
for[a,b]in X:
	for i in R(4,a-1,-1):
		for c in R(8,0,-1):
			for j in R(33,b-1,-1):D[i][c][j]=(D[i][c][j]+D[i-a][c-1][j-b])%P
print(sum(D[4-y][8][33]for y in Y)%P)
0