結果

問題 No.2899 Taffy Permutation
ユーザー hirayuu_ychirayuu_yc
提出日時 2024-10-01 14:56:22
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 324 bytes
コンパイル時間 153 ms
コンパイル使用メモリ 82,028 KB
実行使用メモリ 76,428 KB
最終ジャッジ日時 2024-10-01 14:56:25
合計ジャッジ時間 2,169 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,384 KB
testcase_01 AC 35 ms
52,328 KB
testcase_02 AC 35 ms
51,988 KB
testcase_03 AC 35 ms
52,048 KB
testcase_04 AC 34 ms
52,424 KB
testcase_05 AC 35 ms
51,436 KB
testcase_06 AC 34 ms
52,624 KB
testcase_07 AC 34 ms
53,700 KB
testcase_08 AC 34 ms
53,024 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 33 ms
53,188 KB
testcase_19 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD=998244353
N=int(input())
s=input()
dp=[0,1]
for i in range(N):
	ndp=[0]*(i+3)
	cum=[0]*(i+4)
	for j in range(i+2):
		dp[j]%=MOD
		if s[i]=="1":
			ndp[j+1]+=dp[j]*j
		else:
			ndp[j]+=dp[j]*(i+1-j)
			cum[j+1]-=dp[j]
			cum[1]+=dp[j]
	for j in range(1,i+4):
		cum[j]+=cum[j-1]
		ndp[j-1]+=cum[j-1]
	dp=ndp
print(sum(dp))
0