結果

問題 No.2943 Sigma String of String Score Problem
ユーザー LyricalMaestroLyricalMaestro
提出日時 2024-10-21 00:16:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,446 ms / 3,000 ms
コード長 486 bytes
コンパイル時間 320 ms
コンパイル使用メモリ 82,520 KB
実行使用メモリ 76,556 KB
最終ジャッジ日時 2024-10-21 00:16:24
合計ジャッジ時間 11,354 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,960 KB
testcase_01 AC 35 ms
53,904 KB
testcase_02 AC 36 ms
52,280 KB
testcase_03 AC 656 ms
76,556 KB
testcase_04 AC 68 ms
75,636 KB
testcase_05 AC 315 ms
75,864 KB
testcase_06 AC 63 ms
75,768 KB
testcase_07 AC 111 ms
75,644 KB
testcase_08 AC 568 ms
75,760 KB
testcase_09 AC 291 ms
75,976 KB
testcase_10 AC 112 ms
75,844 KB
testcase_11 AC 55 ms
75,704 KB
testcase_12 AC 148 ms
75,820 KB
testcase_13 AC 81 ms
75,664 KB
testcase_14 AC 71 ms
75,956 KB
testcase_15 AC 96 ms
75,632 KB
testcase_16 AC 71 ms
75,888 KB
testcase_17 AC 49 ms
73,068 KB
testcase_18 AC 378 ms
75,696 KB
testcase_19 AC 226 ms
75,820 KB
testcase_20 AC 149 ms
75,872 KB
testcase_21 AC 408 ms
75,844 KB
testcase_22 AC 729 ms
75,932 KB
testcase_23 AC 764 ms
76,416 KB
testcase_24 AC 727 ms
76,196 KB
testcase_25 AC 1,446 ms
76,120 KB
testcase_26 AC 831 ms
76,232 KB
testcase_27 AC 770 ms
76,112 KB
testcase_28 AC 38 ms
53,224 KB
testcase_29 AC 37 ms
52,988 KB
testcase_30 AC 38 ms
52,684 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

## https://yukicoder.me/problems/no/2942


MOD = 998244353



def main():
    S, T = input().split()

    dp = [0] * (len(T) + 1)
    dp[0] = 1

    for s in S:
        new_dp = dp.copy()
        for t in range(len(T)):
            if s == T[t]:
                new_dp[t + 1] += dp[t]
                new_dp[t + 1] %= MOD
        dp = new_dp
    
    ans = dp[len(T)]

    ans *= pow(2, len(S) - len(T), MOD)
    ans %= MOD
    print(ans)










if __name__ == "__main__":
    main()
0