結果

問題 No.2943 Sigma String of String Score Problem
ユーザー lif4635lif4635
提出日時 2024-10-18 22:53:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,787 ms / 3,000 ms
コード長 1,095 bytes
コンパイル時間 507 ms
コンパイル使用メモリ 82,604 KB
実行使用メモリ 79,288 KB
最終ジャッジ日時 2024-10-18 22:56:47
合計ジャッジ時間 16,906 ms
ジャッジサーバーID
(参考情報)
judge / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,544 KB
testcase_01 AC 37 ms
54,072 KB
testcase_02 AC 36 ms
53,436 KB
testcase_03 AC 1,196 ms
78,620 KB
testcase_04 AC 87 ms
75,836 KB
testcase_05 AC 573 ms
76,804 KB
testcase_06 AC 78 ms
75,796 KB
testcase_07 AC 181 ms
76,116 KB
testcase_08 AC 973 ms
78,108 KB
testcase_09 AC 513 ms
77,268 KB
testcase_10 AC 223 ms
75,824 KB
testcase_11 AC 71 ms
76,108 KB
testcase_12 AC 284 ms
76,128 KB
testcase_13 AC 127 ms
75,992 KB
testcase_14 AC 98 ms
75,824 KB
testcase_15 AC 130 ms
76,100 KB
testcase_16 AC 100 ms
75,948 KB
testcase_17 AC 63 ms
76,056 KB
testcase_18 AC 655 ms
77,380 KB
testcase_19 AC 368 ms
76,428 KB
testcase_20 AC 259 ms
76,104 KB
testcase_21 AC 655 ms
77,504 KB
testcase_22 AC 1,323 ms
79,288 KB
testcase_23 AC 1,273 ms
79,252 KB
testcase_24 AC 1,324 ms
79,188 KB
testcase_25 AC 1,787 ms
79,112 KB
testcase_26 AC 1,604 ms
78,980 KB
testcase_27 AC 1,337 ms
78,976 KB
testcase_28 AC 36 ms
53,164 KB
testcase_29 AC 36 ms
53,032 KB
testcase_30 AC 35 ms
52,864 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def II() -> int : return int(input())
def MI() -> int : return map(int, input().split())
def TI() -> tuple[int] : return tuple(MI())
def LI() -> list[int] : return list(MI())
class fenwick_tree():
    n=1
    data=[0 for i in range(n)]
    def __init__(self,N):
        self.n=N
        self.data=[0 for i in range(N)]
    def add(self,p,x):
        assert 0<=p<self.n,"0<=p<n,p={0},n={1}".format(p,self.n)
        p+=1
        while(p<=self.n):
            self.data[p-1]+=x
            p+=p& -p
    def sum(self,l,r):
        assert (0<=l and l<=r and r<=self.n),"0<=l<=r<=n,l={0},r={1},n={2}".format(l,r,self.n)
        return self.sum0(r)-self.sum0(l)
    def sum0(self,r):
        s=0
        while(r>0):
            s+=self.data[r-1]
            r-=r&-r
        return s

mod = 998244353
s,t = input().split()

n = len(s)
l = len(t)
dp = [0]*(l+1)
ndp = [0]*(l+1)
dp[0] = 1

for i in range(n):
    for j in range(l+1):
        if j != l and s[i] == t[j]:
            ndp[j+1] += dp[j]%mod
        ndp[j] += dp[j]*2%mod
    dp = ndp[:]
    ndp = [0]*(l+1)
# print(dp)
print(dp[-1]%mod)
    
0