結果

問題 No.2943 Sigma String of String Score Problem
ユーザー titiatitia
提出日時 2024-10-24 01:50:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 839 ms / 3,000 ms
コード長 253 bytes
コンパイル時間 496 ms
コンパイル使用メモリ 82,376 KB
実行使用メモリ 73,604 KB
最終ジャッジ日時 2024-10-24 01:50:30
合計ジャッジ時間 11,165 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,684 KB
testcase_01 AC 36 ms
52,144 KB
testcase_02 AC 36 ms
52,144 KB
testcase_03 AC 739 ms
69,888 KB
testcase_04 AC 62 ms
60,556 KB
testcase_05 AC 365 ms
67,688 KB
testcase_06 AC 60 ms
61,284 KB
testcase_07 AC 117 ms
65,616 KB
testcase_08 AC 604 ms
70,416 KB
testcase_09 AC 335 ms
64,260 KB
testcase_10 AC 122 ms
65,600 KB
testcase_11 AC 59 ms
66,840 KB
testcase_12 AC 173 ms
66,588 KB
testcase_13 AC 87 ms
65,024 KB
testcase_14 AC 64 ms
60,296 KB
testcase_15 AC 81 ms
61,488 KB
testcase_16 AC 64 ms
60,080 KB
testcase_17 AC 50 ms
64,604 KB
testcase_18 AC 437 ms
67,828 KB
testcase_19 AC 242 ms
65,796 KB
testcase_20 AC 159 ms
65,636 KB
testcase_21 AC 448 ms
66,476 KB
testcase_22 AC 824 ms
71,324 KB
testcase_23 AC 839 ms
71,280 KB
testcase_24 AC 836 ms
70,724 KB
testcase_25 AC 768 ms
73,604 KB
testcase_26 AC 766 ms
64,244 KB
testcase_27 AC 816 ms
71,752 KB
testcase_28 AC 39 ms
51,824 KB
testcase_29 AC 36 ms
53,464 KB
testcase_30 AC 35 ms
52,548 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

S,T=input().split()

mod=998244353

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

for s in S:
    for i in range(len(T)-1,-1,-1):
        if T[i]==s:
            DP[i+1]=(DP[i+1]+DP[i])%mod

print(DP[-1]*pow(2,len(S)-len(T),mod)%mod)
0