結果

問題 No.2943 Sigma String of String Score Problem
ユーザー hiro1729hiro1729
提出日時 2024-10-18 21:50:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 826 ms / 3,000 ms
コード長 234 bytes
コンパイル時間 258 ms
コンパイル使用メモリ 82,220 KB
実行使用メモリ 73,548 KB
最終ジャッジ日時 2024-10-18 22:40:28
合計ジャッジ時間 10,457 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,632 KB
testcase_01 AC 33 ms
52,636 KB
testcase_02 AC 34 ms
52,956 KB
testcase_03 AC 727 ms
70,064 KB
testcase_04 AC 59 ms
60,304 KB
testcase_05 AC 349 ms
67,096 KB
testcase_06 AC 57 ms
61,144 KB
testcase_07 AC 133 ms
65,656 KB
testcase_08 AC 624 ms
70,408 KB
testcase_09 AC 322 ms
64,520 KB
testcase_10 AC 118 ms
66,460 KB
testcase_11 AC 56 ms
67,864 KB
testcase_12 AC 167 ms
66,992 KB
testcase_13 AC 83 ms
65,488 KB
testcase_14 AC 63 ms
60,464 KB
testcase_15 AC 79 ms
61,184 KB
testcase_16 AC 63 ms
60,220 KB
testcase_17 AC 48 ms
64,748 KB
testcase_18 AC 422 ms
66,364 KB
testcase_19 AC 239 ms
65,436 KB
testcase_20 AC 177 ms
66,160 KB
testcase_21 AC 426 ms
66,744 KB
testcase_22 AC 823 ms
70,692 KB
testcase_23 AC 826 ms
71,420 KB
testcase_24 AC 822 ms
71,104 KB
testcase_25 AC 771 ms
73,548 KB
testcase_26 AC 749 ms
64,252 KB
testcase_27 AC 820 ms
71,220 KB
testcase_28 AC 36 ms
52,940 KB
testcase_29 AC 35 ms
52,828 KB
testcase_30 AC 49 ms
52,448 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 998244353

S, T = input().split()
dp = [0] * (len(T) + 1)
dp[0] = 1
for c in S:
	for i in range(len(T) - 1, -1, -1):
		if T[i] == c:
			dp[i + 1] = (dp[i + 1] + dp[i]) % mod
print(dp[len(T)] * pow(2, len(S) - len(T), mod) % mod)
0