結果

問題 No.2952 Invision of Multiples
ユーザー kotatsugamekotatsugame
提出日時 2024-10-25 22:15:27
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 643 bytes
コンパイル時間 812 ms
コンパイル使用メモリ 68,712 KB
実行使用メモリ 10,528 KB
最終ジャッジ日時 2024-10-25 22:15:34
合計ジャッジ時間 6,819 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 5 ms
6,820 KB
testcase_03 AC 8 ms
6,816 KB
testcase_04 AC 8 ms
6,820 KB
testcase_05 AC 9 ms
6,820 KB
testcase_06 AC 8 ms
6,816 KB
testcase_07 AC 8 ms
6,816 KB
testcase_08 AC 8 ms
6,816 KB
testcase_09 TLE -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<cassert>
#include<atcoder/modint>
using namespace std;
using mint=atcoder::modint998244353;
int N,M;
int D[50505];
mint sum[50505],imos[50505];
int main()
{
	ios::sync_with_stdio(false);
	cin.tie(nullptr);
	cin>>N>>M;
	for(int i=0;i<N;i++)cin>>D[i];
	mint ans=0,prv=1;
	for(int i=0;i<N;i++)
	{
		const mint coef=mint::raw(M/D[i]);
		ans*=coef;
		for(int k=D[i];k<M;k+=D[i])ans+=sum[k+1];
		for(int j=0;j<=M;j++)imos[j]=0;
		for(int k=D[i];k<=M;k+=D[i])imos[k]++;
		for(int k=M;k>=1;k--)imos[k-1]+=imos[k];
		for(int k=0;k<=M;k++)
		{
			sum[k]=sum[k]*coef+prv*imos[k];
		}
		prv*=coef;
	}
	cout<<ans.val()<<endl;
}
0