結果

問題 No.2943 Sigma String of String Score Problem
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-10-18 21:59:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,280 ms / 3,000 ms
コード長 211 bytes
コンパイル時間 455 ms
コンパイル使用メモリ 82,308 KB
実行使用メモリ 76,280 KB
最終ジャッジ日時 2024-10-18 22:44:03
合計ジャッジ時間 2,057 ms
ジャッジサーバーID
(参考情報)
judge6 / judge7
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,260 KB
testcase_01 AC 36 ms
52,484 KB
testcase_02 AC 36 ms
52,260 KB
testcase_03 AC 1,029 ms
76,004 KB
testcase_04 AC 81 ms
75,928 KB
testcase_05 AC 467 ms
75,736 KB
testcase_06 AC 98 ms
75,712 KB
testcase_07 AC 149 ms
75,684 KB
testcase_08 AC 811 ms
75,772 KB
testcase_09 AC 463 ms
76,008 KB
testcase_10 AC 154 ms
75,716 KB
testcase_11 AC 65 ms
76,052 KB
testcase_12 AC 220 ms
75,928 KB
testcase_13 AC 104 ms
75,920 KB
testcase_14 AC 88 ms
75,992 KB
testcase_15 AC 112 ms
75,784 KB
testcase_16 AC 92 ms
75,764 KB
testcase_17 AC 57 ms
76,280 KB
testcase_18 AC 622 ms
75,648 KB
testcase_19 AC 324 ms
75,900 KB
testcase_20 AC 212 ms
75,944 KB
testcase_21 AC 579 ms
75,972 KB
testcase_22 AC 1,123 ms
75,904 KB
testcase_23 AC 1,115 ms
76,036 KB
testcase_24 AC 1,119 ms
76,108 KB
testcase_25 AC 1,076 ms
76,216 KB
testcase_26 AC 1,280 ms
76,020 KB
testcase_27 AC 1,107 ms
75,772 KB
testcase_28 AC 37 ms
52,272 KB
testcase_29 AC 36 ms
53,224 KB
testcase_30 AC 37 ms
53,020 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S,T=input().split()
M=998244353
q=[0]*(len(T)+1)
q[0]=1
for i in range(len(S)):
  for j in reversed(range(len(T))):
    if S[i]==T[j]:
      q[j+1]+=q[j]
      q[j+1]%=M
print(q[len(T)]*pow(2,len(S)-len(T),M)%M)
0