結果

問題 No.2952 Invision of Multiples
ユーザー nouka28nouka28
提出日時 2024-09-13 22:46:05
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,160 ms / 4,000 ms
コード長 1,099 bytes
コンパイル時間 5,645 ms
コンパイル使用メモリ 314,540 KB
実行使用メモリ 24,036 KB
最終ジャッジ日時 2024-09-13 22:46:23
合計ジャッジ時間 17,834 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 28 ms
23,808 KB
testcase_03 AC 5 ms
5,376 KB
testcase_04 AC 5 ms
5,376 KB
testcase_05 AC 5 ms
5,376 KB
testcase_06 AC 5 ms
5,376 KB
testcase_07 AC 4 ms
5,376 KB
testcase_08 AC 3 ms
5,376 KB
testcase_09 AC 112 ms
15,616 KB
testcase_10 AC 116 ms
14,336 KB
testcase_11 AC 58 ms
23,424 KB
testcase_12 AC 57 ms
23,808 KB
testcase_13 AC 45 ms
14,592 KB
testcase_14 AC 67 ms
23,168 KB
testcase_15 AC 201 ms
24,036 KB
testcase_16 AC 188 ms
24,032 KB
testcase_17 AC 367 ms
24,032 KB
testcase_18 AC 396 ms
24,032 KB
testcase_19 AC 79 ms
23,904 KB
testcase_20 AC 74 ms
23,904 KB
testcase_21 AC 192 ms
24,016 KB
testcase_22 AC 189 ms
23,892 KB
testcase_23 AC 215 ms
23,904 KB
testcase_24 AC 181 ms
24,016 KB
testcase_25 AC 199 ms
23,896 KB
testcase_26 AC 197 ms
23,904 KB
testcase_27 AC 241 ms
24,032 KB
testcase_28 AC 231 ms
23,900 KB
testcase_29 AC 240 ms
24,036 KB
testcase_30 AC 267 ms
24,028 KB
testcase_31 AC 237 ms
23,904 KB
testcase_32 AC 246 ms
24,036 KB
testcase_33 AC 65 ms
23,936 KB
testcase_34 AC 64 ms
23,904 KB
testcase_35 AC 66 ms
24,032 KB
testcase_36 AC 87 ms
23,904 KB
testcase_37 AC 80 ms
24,032 KB
testcase_38 AC 84 ms
23,908 KB
testcase_39 AC 1,131 ms
24,028 KB
testcase_40 AC 1,159 ms
24,028 KB
testcase_41 AC 1,160 ms
23,904 KB
testcase_42 AC 1,156 ms
24,028 KB
testcase_43 AC 1,159 ms
23,908 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=50;

	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