結果

問題 No.2952 Invision of Multiples
ユーザー nouka28nouka28
提出日時 2024-09-12 21:25:21
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,252 bytes
コンパイル時間 5,410 ms
コンパイル使用メモリ 312,864 KB
実行使用メモリ 23,960 KB
最終ジャッジ日時 2024-09-13 16:12:39
合計ジャッジ時間 24,822 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;

#include<atcoder/all>
using namespace atcoder;
using mint=atcoder::modint998244353;

const int B=50;
const int M=50000;


mint sum[B+1],sum2[B+1];

// n>d_i
mint floor_sums[M+1][B+1];

// d_i>n
mint floor_sums2[M+1][B+1];

// invs
mint invs[B+1];

int main(){
	cin.tie(nullptr),ios_base::sync_with_stdio(false);
    int n,m;cin>>n>>m;
	vector<int> a(n);for(auto&e:a)cin>>e;
	vector<mint> xa;
	mint X=1;
	for(auto&e:a){
		xa.push_back(m/e);
		X*=xa.back();
		xa.back()=xa.back().inv();
	}
	for(int i=1;i<=M;i++){
		for(int j=1;j<=B;j++){
			floor_sums[i][j]=floor_sum(m/j,i,j,j-1);
			floor_sums2[i][j]=floor_sum(m/i,j,i,i-1);
		}
	}
	for(int i=1;i<=B;i++){
		invs[i]=i/mint(m);
	}
	mint ans=0;
	fenwick_tree<mint> f(M+1);
	for(int i=0;i<n;i++){
		if(a[i]<=B){
			ans+=sum2[a[i]];
			for(int j=1;j<=B;j++){
				ans+=sum[j]*floor_sums[a[i]][j]*xa[i];
			}
			sum[a[i]]+=X*xa[i];
		}else{
			for(int j=1;j<=B;j++){
				ans+=sum[j]*floor_sums[a[i]][j]*xa[i];
			}
			for(int j=a[i];j<=m;j+=a[i]){
				ans+=f.sum(j+1,m+1)*xa[i];
			}
			for(int j=1;j<=B;j++){
				sum2[j]+=X*xa[i]*invs[j]*floor_sums2[a[i]][j];
			}
			for(int j=a[i];j<=M;j+=a[i]){
				f.add(j,X*xa[a[i]]);
			}
		}
	}
	cout<<ans.val()<<endl;
}
0