結果

問題 No.2943 Sigma String of String Score Problem
ユーザー tobisatistobisatis
提出日時 2024-10-19 00:01:06
言語 C#
(.NET 8.0.203)
結果
MLE  
実行時間 -
コード長 599 bytes
コンパイル時間 7,523 ms
コンパイル使用メモリ 169,400 KB
実行使用メモリ 184,536 KB
最終ジャッジ日時 2024-10-19 00:01:44
合計ジャッジ時間 13,930 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
27,392 KB
testcase_01 AC 47 ms
27,392 KB
testcase_02 AC 47 ms
27,136 KB
testcase_03 AC 381 ms
28,668 KB
testcase_04 AC 61 ms
28,032 KB
testcase_05 AC 198 ms
28,136 KB
testcase_06 AC 58 ms
27,904 KB
testcase_07 AC 80 ms
28,160 KB
testcase_08 AC 316 ms
28,544 KB
testcase_09 AC 170 ms
28,160 KB
testcase_10 AC 82 ms
28,416 KB
testcase_11 AC 54 ms
28,416 KB
testcase_12 AC 101 ms
28,288 KB
testcase_13 AC 66 ms
28,160 KB
testcase_14 AC 67 ms
28,032 KB
testcase_15 AC 81 ms
28,160 KB
testcase_16 AC 71 ms
27,904 KB
testcase_17 AC 52 ms
28,416 KB
testcase_18 AC 216 ms
28,288 KB
testcase_19 AC 134 ms
28,416 KB
testcase_20 AC 100 ms
28,288 KB
testcase_21 AC 218 ms
28,156 KB
testcase_22 AC 380 ms
28,800 KB
testcase_23 AC 380 ms
29,056 KB
testcase_24 AC 376 ms
28,544 KB
testcase_25 AC 347 ms
29,056 KB
testcase_26 AC 629 ms
28,800 KB
testcase_27 AC 381 ms
28,544 KB
testcase_28 AC 48 ms
27,392 KB
testcase_29 AC 48 ms
27,128 KB
testcase_30 MLE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (93 ms)。
MSBuild のバージョン 17.9.6+a4ecab324 (.NET)
  main -> /home/judge/data/code/bin/Release/net8.0/main.dll
  main -> /home/judge/data/code/bin/Release/net8.0/publish/

ソースコード

diff #

const int Mod = 998244353;
var str = Console.ReadLine()!.Split(' ');
var s = str[0].AsSpan();
var t = str[1].AsSpan();
var sl = s.Length;
var tl = t.Length;
var dp = new int[tl + 1];
var ep = new int[tl + 1];
dp[0] = 1;
for (var i = 0; i < sl; i++)
{
    for (var j = 0; j <= tl; j++) ep[j] = dp[j];
    var sc = s[i];
    for (var j = 0; j < tl; j++)
    {
        if (sc == t[j]) ep[j + 1] = (ep[j + 1] + dp[j]) % Mod;
    }
    for (var j = 0; j <= tl; j++) ep[j] %= Mod;
    (dp, ep) = (ep, dp);
}
var ans = dp[tl];
for (var i = 0; i < sl - tl; i++) ans = ans * 2 % Mod;
Console.WriteLine(ans);
0