結果

問題 No.2952 Invision of Multiples
ユーザー nouka28nouka28
提出日時 2024-09-13 22:49:17
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 791 ms / 4,000 ms
コード長 1,100 bytes
コンパイル時間 5,522 ms
コンパイル使用メモリ 316,880 KB
実行使用メモリ 63,220 KB
最終ジャッジ日時 2024-09-13 22:49:39
合計ジャッジ時間 20,973 ms
ジャッジサーバーID
(参考情報)
judge4 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,812 KB
testcase_02 AC 62 ms
62,848 KB
testcase_03 AC 9 ms
6,944 KB
testcase_04 AC 9 ms
6,940 KB
testcase_05 AC 8 ms
6,944 KB
testcase_06 AC 8 ms
6,940 KB
testcase_07 AC 4 ms
6,944 KB
testcase_08 AC 4 ms
6,944 KB
testcase_09 AC 351 ms
38,528 KB
testcase_10 AC 396 ms
35,200 KB
testcase_11 AC 131 ms
61,560 KB
testcase_12 AC 120 ms
62,592 KB
testcase_13 AC 135 ms
35,456 KB
testcase_14 AC 194 ms
60,544 KB
testcase_15 AC 603 ms
63,212 KB
testcase_16 AC 578 ms
63,088 KB
testcase_17 AC 535 ms
63,216 KB
testcase_18 AC 567 ms
63,084 KB
testcase_19 AC 207 ms
63,088 KB
testcase_20 AC 201 ms
63,216 KB
testcase_21 AC 564 ms
63,204 KB
testcase_22 AC 528 ms
63,076 KB
testcase_23 AC 613 ms
63,092 KB
testcase_24 AC 476 ms
63,072 KB
testcase_25 AC 505 ms
63,204 KB
testcase_26 AC 560 ms
63,088 KB
testcase_27 AC 769 ms
63,088 KB
testcase_28 AC 747 ms
63,080 KB
testcase_29 AC 785 ms
63,084 KB
testcase_30 AC 762 ms
63,092 KB
testcase_31 AC 791 ms
63,212 KB
testcase_32 AC 790 ms
63,212 KB
testcase_33 AC 145 ms
63,084 KB
testcase_34 AC 142 ms
63,088 KB
testcase_35 AC 148 ms
63,084 KB
testcase_36 AC 263 ms
63,088 KB
testcase_37 AC 250 ms
63,088 KB
testcase_38 AC 279 ms
63,220 KB
testcase_39 AC 182 ms
63,088 KB
testcase_40 AC 182 ms
63,212 KB
testcase_41 AC 180 ms
63,212 KB
testcase_42 AC 182 ms
63,216 KB
testcase_43 AC 182 ms
63,092 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=150;

	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