結果

問題 No.2952 Invision of Multiples
ユーザー nouka28nouka28
提出日時 2024-10-21 22:31:13
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,553 ms / 4,000 ms
コード長 1,100 bytes
コンパイル時間 5,730 ms
コンパイル使用メモリ 315,032 KB
実行使用メモリ 121,936 KB
最終ジャッジ日時 2024-10-21 22:31:50
合計ジャッジ時間 35,881 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 111 ms
121,728 KB
testcase_03 AC 13 ms
6,816 KB
testcase_04 AC 14 ms
6,816 KB
testcase_05 AC 9 ms
6,816 KB
testcase_06 AC 10 ms
6,816 KB
testcase_07 AC 7 ms
6,816 KB
testcase_08 AC 7 ms
6,816 KB
testcase_09 AC 769 ms
72,704 KB
testcase_10 AC 881 ms
66,560 KB
testcase_11 AC 238 ms
118,528 KB
testcase_12 AC 220 ms
121,088 KB
testcase_13 AC 295 ms
67,072 KB
testcase_14 AC 455 ms
116,992 KB
testcase_15 AC 1,193 ms
121,932 KB
testcase_16 AC 1,167 ms
121,928 KB
testcase_17 AC 962 ms
121,808 KB
testcase_18 AC 987 ms
121,928 KB
testcase_19 AC 403 ms
121,932 KB
testcase_20 AC 431 ms
121,804 KB
testcase_21 AC 1,054 ms
121,924 KB
testcase_22 AC 1,051 ms
121,920 KB
testcase_23 AC 1,132 ms
121,932 KB
testcase_24 AC 924 ms
121,856 KB
testcase_25 AC 972 ms
121,928 KB
testcase_26 AC 1,048 ms
121,932 KB
testcase_27 AC 1,540 ms
121,804 KB
testcase_28 AC 1,466 ms
121,800 KB
testcase_29 AC 1,553 ms
121,932 KB
testcase_30 AC 1,534 ms
121,932 KB
testcase_31 AC 1,543 ms
121,932 KB
testcase_32 AC 1,541 ms
121,932 KB
testcase_33 AC 275 ms
121,936 KB
testcase_34 AC 262 ms
121,808 KB
testcase_35 AC 263 ms
121,936 KB
testcase_36 AC 567 ms
121,932 KB
testcase_37 AC 568 ms
121,932 KB
testcase_38 AC 561 ms
121,932 KB
testcase_39 AC 314 ms
121,932 KB
testcase_40 AC 306 ms
121,932 KB
testcase_41 AC 301 ms
121,804 KB
testcase_42 AC 300 ms
121,932 KB
testcase_43 AC 313 ms
121,932 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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

mint inv[50009];

int main(){
	int n,m;cin>>n>>m;
	vector<int> d(n);for(auto&&e:d)cin>>e;
	for(int i=1;i<=m;i++)inv[i]=mint(i).inv();
	const int B=300;

	vector<mint> cnt;
	vector<vector<mint>> cnt1(B+1,vector<mint>(m+1));	
	vector<vector<mint>> cnt2(B+1,vector<mint>(m+1));

	for(int i=0;i<2;i++){
		cnt.assign(B+1,0);
		for(auto&&e:d){
			if(e>B||!i){
				for(int j=1;j<=B;j++){
					cnt1[j][e]+=cnt[j];
				}
			}
			if(e<=B){
				cnt[e]++;
			}
		}
		reverse(d.begin(),d.end());
		swap(cnt1,cnt2);
	}

	mint ans=0;
	fenwick_tree<mint> ft(m+1);

	for(auto&&e:d){
		if(e<=B)continue;
		for(int i=e;i<=m;i+=e){
			ans+=ft.sum(i+1,m+1)*inv[m/e];
			ft.add(i,inv[m/e]);
		}
	}

	for(int i=1;i<=B;i++){
		for(int j=1;j<=m;j++){
			if(cnt1[i][j].val()){
				ans+=inv[m/i]*inv[m/j]*cnt1[i][j]*floor_sum(m/i,j,i,i-1);
			}
			if(cnt2[i][j].val()){
				ans+=inv[m/i]*inv[m/j]*cnt2[i][j]*floor_sum(m/j,i,j,j-1);
			}
		}
	}

	for(auto&&e:d)ans*=m/e;

	cout<<ans.val()<<endl;
}
0