結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
59,904 KB
testcase_01 AC 48 ms
60,672 KB
testcase_02 AC 50 ms
62,336 KB
testcase_03 AC 51 ms
61,952 KB
testcase_04 AC 61 ms
65,536 KB
testcase_05 AC 100 ms
75,008 KB
testcase_06 AC 76 ms
67,072 KB
testcase_07 AC 80 ms
68,992 KB
testcase_08 AC 87 ms
71,296 KB
testcase_09 AC 98 ms
69,504 KB
testcase_10 AC 75 ms
67,328 KB
testcase_11 AC 76 ms
68,864 KB
testcase_12 AC 78 ms
69,888 KB
testcase_13 AC 77 ms
68,736 KB
testcase_14 AC 79 ms
67,968 KB
testcase_15 AC 77 ms
68,736 KB
testcase_16 AC 81 ms
69,760 KB
testcase_17 AC 83 ms
71,680 KB
testcase_18 AC 83 ms
70,144 KB
testcase_19 AC 82 ms
70,656 KB
testcase_20 AC 78 ms
67,840 KB
testcase_21 AC 89 ms
71,808 KB
testcase_22 AC 86 ms
69,888 KB
testcase_23 AC 77 ms
67,968 KB
testcase_24 AC 79 ms
69,376 KB
testcase_25 AC 84 ms
69,632 KB
testcase_26 AC 84 ms
70,784 KB
testcase_27 AC 86 ms
71,168 KB
testcase_28 AC 85 ms
70,272 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=[1]+[0]*1529
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):n=i*306+c*34+j;D[n]=(D[n]+D[(i-a)*306+c*34-34+j-b])%P
print(sum(D[1529-y*306]for y in Y)%P)
0