結果

問題 No.2943 Sigma String of String Score Problem
ユーザー ks2mks2m
提出日時 2024-10-18 22:11:55
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,462 ms / 3,000 ms
コード長 1,067 bytes
コンパイル時間 3,860 ms
コンパイル使用メモリ 78,732 KB
実行使用メモリ 55,248 KB
最終ジャッジ日時 2024-10-18 22:48:07
合計ジャッジ時間 21,148 ms
ジャッジサーバーID
(参考情報)
judge4 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
50,288 KB
testcase_01 AC 51 ms
50,272 KB
testcase_02 AC 51 ms
50,396 KB
testcase_03 AC 1,243 ms
55,064 KB
testcase_04 AC 133 ms
54,772 KB
testcase_05 AC 645 ms
54,560 KB
testcase_06 AC 121 ms
54,832 KB
testcase_07 AC 222 ms
55,008 KB
testcase_08 AC 1,090 ms
54,764 KB
testcase_09 AC 557 ms
55,144 KB
testcase_10 AC 212 ms
54,316 KB
testcase_11 AC 107 ms
54,456 KB
testcase_12 AC 301 ms
54,712 KB
testcase_13 AC 164 ms
54,696 KB
testcase_14 AC 152 ms
55,000 KB
testcase_15 AC 173 ms
54,988 KB
testcase_16 AC 139 ms
54,824 KB
testcase_17 AC 106 ms
54,568 KB
testcase_18 AC 704 ms
55,092 KB
testcase_19 AC 439 ms
54,744 KB
testcase_20 AC 294 ms
54,516 KB
testcase_21 AC 833 ms
54,972 KB
testcase_22 AC 1,379 ms
54,864 KB
testcase_23 AC 1,306 ms
54,656 KB
testcase_24 AC 1,392 ms
54,904 KB
testcase_25 AC 1,373 ms
54,876 KB
testcase_26 AC 1,462 ms
55,248 KB
testcase_27 AC 1,399 ms
54,816 KB
testcase_28 AC 52 ms
50,332 KB
testcase_29 AC 52 ms
50,444 KB
testcase_30 AC 51 ms
50,296 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.util.Arrays;

public class Main {
	public static void main(String[] args) throws Exception {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		String[] sa = br.readLine().split(" ");
		char[] s = sa[0].toCharArray();
		char[] t = sa[1].toCharArray();
		br.close();

		int a = s.length;
		int b = t.length;
		int mod = 998244353;
		long[] dp = new long[b + 1];
		dp[0] = 1;
		for (int i = 0; i < a; i++) {
			long[] wk = Arrays.copyOf(dp, b + 1);
			for (int j = 0; j < b; j++) {
				if (s[i] == t[j]) {
					wk[j + 1] += dp[j];
				}
			}
			for (int j = 0; j <= b; j++) {
				wk[j] %= mod;
			}
			dp = wk;
//			System.out.println(Arrays.toString(wk));
		}

		long p = power(2, a - b, mod);
		long ans = dp[b] * p % mod;
		System.out.println(ans);
	}

	static long power(long x, long n, int m) {
		if (n == 0) {
			return 1;
		}
		long val = power(x, n / 2, m);
		val = val * val % m;
		if (n % 2 == 1) {
			x %= m;
			val = val * x % m;
		}
		return val;
	}
}
0