結果

問題 No.2943 Sigma String of String Score Problem
ユーザー hirayuu_ychirayuu_yc
提出日時 2024-10-05 21:34:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 846 ms / 3,000 ms
コード長 191 bytes
コンパイル時間 387 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 72,576 KB
最終ジャッジ日時 2024-10-05 21:34:39
合計ジャッジ時間 11,114 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,224 KB
testcase_01 AC 35 ms
51,968 KB
testcase_02 AC 35 ms
51,712 KB
testcase_03 AC 755 ms
70,016 KB
testcase_04 AC 70 ms
60,928 KB
testcase_05 AC 356 ms
66,948 KB
testcase_06 AC 59 ms
61,056 KB
testcase_07 AC 120 ms
64,768 KB
testcase_08 AC 631 ms
70,144 KB
testcase_09 AC 327 ms
64,384 KB
testcase_10 AC 123 ms
65,408 KB
testcase_11 AC 59 ms
66,816 KB
testcase_12 AC 173 ms
66,432 KB
testcase_13 AC 86 ms
64,768 KB
testcase_14 AC 65 ms
59,392 KB
testcase_15 AC 83 ms
60,800 KB
testcase_16 AC 69 ms
60,288 KB
testcase_17 AC 51 ms
64,128 KB
testcase_18 AC 429 ms
66,432 KB
testcase_19 AC 238 ms
65,280 KB
testcase_20 AC 167 ms
65,536 KB
testcase_21 AC 453 ms
66,560 KB
testcase_22 AC 820 ms
70,656 KB
testcase_23 AC 837 ms
70,656 KB
testcase_24 AC 836 ms
70,912 KB
testcase_25 AC 780 ms
72,576 KB
testcase_26 AC 784 ms
64,000 KB
testcase_27 AC 846 ms
70,784 KB
testcase_28 AC 36 ms
51,840 KB
testcase_29 AC 36 ms
51,712 KB
testcase_30 AC 37 ms
51,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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