結果

問題 No.2943 Sigma String of String Score Problem
ユーザー tailstails
提出日時 2024-10-18 22:08:41
言語 cLay
(20240714-1)
結果
AC  
実行時間 210 ms / 3,000 ms
コード長 175 bytes
コンパイル時間 2,814 ms
コンパイル使用メモリ 174,256 KB
実行使用メモリ 7,620 KB
最終ジャッジ日時 2024-10-18 22:46:43
合計ジャッジ時間 5,579 ms
ジャッジサーバーID
(参考情報)
judge / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
7,368 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 155 ms
6,820 KB
testcase_04 AC 7 ms
6,820 KB
testcase_05 AC 71 ms
6,816 KB
testcase_06 AC 6 ms
6,820 KB
testcase_07 AC 17 ms
6,820 KB
testcase_08 AC 124 ms
6,816 KB
testcase_09 AC 64 ms
6,816 KB
testcase_10 AC 19 ms
6,816 KB
testcase_11 AC 3 ms
6,816 KB
testcase_12 AC 28 ms
6,820 KB
testcase_13 AC 10 ms
7,492 KB
testcase_14 AC 9 ms
6,820 KB
testcase_15 AC 12 ms
6,820 KB
testcase_16 AC 9 ms
6,816 KB
testcase_17 AC 3 ms
6,820 KB
testcase_18 AC 85 ms
6,816 KB
testcase_19 AC 45 ms
6,816 KB
testcase_20 AC 28 ms
6,820 KB
testcase_21 AC 86 ms
6,820 KB
testcase_22 AC 171 ms
6,816 KB
testcase_23 AC 170 ms
6,816 KB
testcase_24 AC 172 ms
6,816 KB
testcase_25 AC 153 ms
6,816 KB
testcase_26 AC 210 ms
6,820 KB
testcase_27 AC 186 ms
6,820 KB
testcase_28 AC 1 ms
6,820 KB
testcase_29 AC 2 ms
6,816 KB
testcase_30 AC 2 ms
7,620 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#define MD 998244353
string@s,@t;
ll a=s.size(),b=t.size();
Mint d[b+1]{1};
rep(i,a){
	rrep(j,b){
		d[j+1]*=2;
		if(s[i]==t[j]){
			d[j+1]+=d[j];
		}
	}
	d[0]*=2;
}
wt(d[b]);
0