結果

問題 No.2783 4-33 Easy
ユーザー 👑 p-adicp-adic
提出日時 2024-06-09 20:57:56
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,124 ms / 2,000 ms
コード長 359 bytes
コンパイル時間 206 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 11,264 KB
最終ジャッジ日時 2024-06-14 20:49:30
合計ジャッジ時間 25,012 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,880 KB
testcase_01 AC 66 ms
10,880 KB
testcase_02 AC 51 ms
10,880 KB
testcase_03 AC 42 ms
10,880 KB
testcase_04 AC 304 ms
11,136 KB
testcase_05 AC 1,124 ms
11,136 KB
testcase_06 AC 1,066 ms
11,136 KB
testcase_07 AC 1,057 ms
11,264 KB
testcase_08 AC 1,077 ms
11,136 KB
testcase_09 AC 949 ms
11,136 KB
testcase_10 AC 918 ms
11,136 KB
testcase_11 AC 991 ms
11,136 KB
testcase_12 AC 948 ms
11,136 KB
testcase_13 AC 1,008 ms
11,008 KB
testcase_14 AC 954 ms
11,136 KB
testcase_15 AC 927 ms
11,136 KB
testcase_16 AC 919 ms
11,136 KB
testcase_17 AC 997 ms
11,008 KB
testcase_18 AC 1,006 ms
11,136 KB
testcase_19 AC 966 ms
11,136 KB
testcase_20 AC 944 ms
11,136 KB
testcase_21 AC 916 ms
11,008 KB
testcase_22 AC 941 ms
11,136 KB
testcase_23 AC 941 ms
11,136 KB
testcase_24 AC 927 ms
11,136 KB
testcase_25 AC 967 ms
11,136 KB
testcase_26 AC 951 ms
11,136 KB
testcase_27 AC 945 ms
11,136 KB
testcase_28 AC 995 ms
11,136 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.py:8: SyntaxWarning: invalid decimal literal
  D=[[[0]*34for c in R(9)]for i in R(5)]

ソースコード

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