結果

問題 No.2943 Sigma String of String Score Problem
ユーザー ニックネームニックネーム
提出日時 2024-10-18 22:45:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 424 ms / 3,000 ms
コード長 288 bytes
コンパイル時間 326 ms
コンパイル使用メモリ 82,388 KB
実行使用メモリ 69,488 KB
最終ジャッジ日時 2024-10-18 22:54:26
合計ジャッジ時間 3,243 ms
ジャッジサーバーID
(参考情報)
judge6 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,496 KB
testcase_01 AC 34 ms
51,820 KB
testcase_02 AC 34 ms
51,876 KB
testcase_03 AC 98 ms
68,368 KB
testcase_04 AC 41 ms
60,260 KB
testcase_05 AC 48 ms
64,780 KB
testcase_06 AC 39 ms
59,248 KB
testcase_07 AC 41 ms
63,080 KB
testcase_08 AC 54 ms
68,408 KB
testcase_09 AC 45 ms
63,396 KB
testcase_10 AC 43 ms
63,880 KB
testcase_11 AC 46 ms
64,976 KB
testcase_12 AC 51 ms
64,428 KB
testcase_13 AC 45 ms
62,964 KB
testcase_14 AC 48 ms
59,192 KB
testcase_15 AC 58 ms
59,920 KB
testcase_16 AC 53 ms
60,540 KB
testcase_17 AC 41 ms
62,372 KB
testcase_18 AC 48 ms
65,392 KB
testcase_19 AC 43 ms
63,712 KB
testcase_20 AC 42 ms
64,404 KB
testcase_21 AC 50 ms
64,956 KB
testcase_22 AC 58 ms
67,884 KB
testcase_23 AC 57 ms
68,132 KB
testcase_24 AC 57 ms
68,596 KB
testcase_25 AC 56 ms
68,568 KB
testcase_26 AC 424 ms
62,232 KB
testcase_27 AC 58 ms
69,488 KB
testcase_28 AC 34 ms
52,536 KB
testcase_29 AC 33 ms
52,248 KB
testcase_30 AC 33 ms
53,132 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

s,t = input().split(); n,m = len(s),len(t)
dp = [1]+[0]*m; o = 998244353
a = [[] for _ in range(26)]
for i,v in enumerate(t): a[ord(v)-97].append(i)
for i in range(26): a[i].reverse()
for v in s:
    i = ord(v)-97
    for j in a[i]: dp[j+1] = (dp[j+1]+dp[j])%o
print(pow(2,n-m,o)*dp[m]%o)
0