結果

問題 No.2783 4-33 Easy
ユーザー 👑 p-adicp-adic
提出日時 2024-06-09 21:03:47
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,925 ms / 2,000 ms
コード長 333 bytes
コンパイル時間 99 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 11,136 KB
最終ジャッジ日時 2024-06-14 20:49:52
合計ジャッジ時間 41,585 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
10,880 KB
testcase_01 AC 94 ms
10,752 KB
testcase_02 AC 73 ms
10,752 KB
testcase_03 AC 56 ms
10,752 KB
testcase_04 AC 503 ms
10,880 KB
testcase_05 AC 1,925 ms
11,136 KB
testcase_06 AC 1,829 ms
10,880 KB
testcase_07 AC 1,856 ms
10,880 KB
testcase_08 AC 1,840 ms
10,880 KB
testcase_09 AC 1,526 ms
11,136 KB
testcase_10 AC 1,548 ms
11,008 KB
testcase_11 AC 1,558 ms
11,008 KB
testcase_12 AC 1,554 ms
11,008 KB
testcase_13 AC 1,548 ms
11,008 KB
testcase_14 AC 1,567 ms
11,008 KB
testcase_15 AC 1,564 ms
11,008 KB
testcase_16 AC 1,575 ms
11,008 KB
testcase_17 AC 1,541 ms
11,008 KB
testcase_18 AC 1,585 ms
11,008 KB
testcase_19 AC 1,608 ms
11,136 KB
testcase_20 AC 1,554 ms
11,008 KB
testcase_21 AC 1,606 ms
11,136 KB
testcase_22 AC 1,568 ms
11,136 KB
testcase_23 AC 1,587 ms
11,136 KB
testcase_24 AC 1,598 ms
11,008 KB
testcase_25 AC 1,542 ms
11,008 KB
testcase_26 AC 1,564 ms
11,008 KB
testcase_27 AC 1,601 ms
11,136 KB
testcase_28 AC 1,561 ms
11,136 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