結果

問題 No.2943 Sigma String of String Score Problem
ユーザー pengin_2000pengin_2000
提出日時 2024-10-18 23:44:14
言語 C
(gcc 12.3.0)
結果
AC  
実行時間 160 ms / 3,000 ms
コード長 529 bytes
コンパイル時間 2,305 ms
コンパイル使用メモリ 29,952 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-10-18 23:44:35
合計ジャッジ時間 2,932 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 1 ms
6,820 KB
testcase_02 AC 1 ms
6,820 KB
testcase_03 AC 114 ms
6,816 KB
testcase_04 AC 5 ms
6,816 KB
testcase_05 AC 49 ms
6,816 KB
testcase_06 AC 3 ms
6,816 KB
testcase_07 AC 12 ms
6,816 KB
testcase_08 AC 88 ms
6,820 KB
testcase_09 AC 46 ms
6,816 KB
testcase_10 AC 13 ms
6,820 KB
testcase_11 AC 2 ms
6,824 KB
testcase_12 AC 16 ms
6,820 KB
testcase_13 AC 5 ms
6,820 KB
testcase_14 AC 6 ms
6,824 KB
testcase_15 AC 19 ms
6,820 KB
testcase_16 AC 7 ms
6,820 KB
testcase_17 AC 2 ms
6,820 KB
testcase_18 AC 61 ms
6,816 KB
testcase_19 AC 32 ms
6,820 KB
testcase_20 AC 20 ms
6,820 KB
testcase_21 AC 63 ms
6,820 KB
testcase_22 AC 123 ms
6,820 KB
testcase_23 AC 123 ms
6,816 KB
testcase_24 AC 125 ms
6,824 KB
testcase_25 AC 82 ms
6,820 KB
testcase_26 AC 160 ms
6,816 KB
testcase_27 AC 124 ms
6,824 KB
testcase_28 AC 1 ms
6,816 KB
testcase_29 AC 1 ms
6,816 KB
testcase_30 AC 1 ms
6,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<stdio.h>
char s[100005], t[1003];
long long int dp[1003];
int main()
{
	scanf("%s%s", s, t);
	long long int n, m;
	for (n = 0; s[n] != '\0'; n++);
	for (m = 0; t[m] != '\0'; m++);
	const long long int p = 998244353;
	long long int i, j;
	for (i = 0; i <= m; i++)
		dp[i] = 0;
	dp[0] = 1;
	for (i = 0; i < n; i++)
		for (j = m - 1; j >= 0; j--)
			if (s[i] == t[j])
				dp[j + 1] = (dp[j + 1] + dp[j]) % p;
	long long int ans = dp[m];
	for (i = 0; i < n - m; i++)
		ans = ans * 2 % p;
	printf("%lld\n", ans);
	return 0;
}
0