結果

問題 No.2952 Invision of Multiples
ユーザー 沙耶花沙耶花
提出日時 2024-10-25 23:00:54
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2,611 ms / 4,000 ms
コード長 1,513 bytes
コンパイル時間 4,863 ms
コンパイル使用メモリ 269,424 KB
実行使用メモリ 63,104 KB
最終ジャッジ日時 2024-10-25 23:02:22
合計ジャッジ時間 83,564 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 1,769 ms
62,848 KB
testcase_03 AC 37 ms
6,816 KB
testcase_04 AC 37 ms
6,820 KB
testcase_05 AC 35 ms
6,816 KB
testcase_06 AC 36 ms
6,816 KB
testcase_07 AC 37 ms
6,816 KB
testcase_08 AC 36 ms
6,820 KB
testcase_09 AC 1,579 ms
38,272 KB
testcase_10 AC 1,576 ms
35,328 KB
testcase_11 AC 1,842 ms
61,648 KB
testcase_12 AC 1,850 ms
62,848 KB
testcase_13 AC 1,296 ms
35,328 KB
testcase_14 AC 2,227 ms
60,416 KB
testcase_15 AC 2,572 ms
63,104 KB
testcase_16 AC 2,559 ms
63,104 KB
testcase_17 AC 2,209 ms
63,104 KB
testcase_18 AC 2,184 ms
62,976 KB
testcase_19 AC 2,234 ms
63,104 KB
testcase_20 AC 2,203 ms
62,976 KB
testcase_21 AC 1,995 ms
62,976 KB
testcase_22 AC 1,991 ms
63,104 KB
testcase_23 AC 2,010 ms
62,976 KB
testcase_24 AC 1,975 ms
63,104 KB
testcase_25 AC 1,947 ms
63,104 KB
testcase_26 AC 1,983 ms
62,976 KB
testcase_27 AC 2,605 ms
63,104 KB
testcase_28 AC 2,595 ms
62,976 KB
testcase_29 AC 2,611 ms
63,104 KB
testcase_30 AC 2,576 ms
62,976 KB
testcase_31 AC 2,594 ms
63,104 KB
testcase_32 AC 2,563 ms
63,104 KB
testcase_33 AC 1,901 ms
63,104 KB
testcase_34 AC 1,892 ms
62,976 KB
testcase_35 AC 1,942 ms
63,104 KB
testcase_36 AC 2,569 ms
62,976 KB
testcase_37 AC 2,569 ms
62,976 KB
testcase_38 AC 2,490 ms
63,104 KB
testcase_39 AC 1,898 ms
63,104 KB
testcase_40 AC 1,954 ms
62,976 KB
testcase_41 AC 1,925 ms
62,976 KB
testcase_42 AC 1,953 ms
63,104 KB
testcase_43 AC 1,988 ms
63,104 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <atcoder/all>
#include <bits/stdc++.h>
using namespace std;
using namespace atcoder;
using mint = modint998244353;
#define rep(i,n) for (int i = 0; i < (n); ++i)
#define Inf32 1000000001
#define Inf64 1000000000000000000LL

int main(){
	int N,M;
	cin>>N>>M;
	int B = min(M,300);
	vector<mint> is(M+5);
	rep(i,M+5){
		if(i==0)continue;
		is[i] = mint(i).inv();
	}
	vector cnt(B+1,vector<mint>(M+1));
	for(int i=1;i<=B;i++){
		for(int j=1;j<=M;j++){
			int a0 = i-1;
			int m = j;
			int n = M/i;
			cnt[i][j] = floor_sum(n,m,i,a0);
			cnt[i][j] *= is[M/i] * is[M/j];
		}
	}
	vector<mint> num(B+1);
	vector<int> a(N);
	rep(i,N)scanf("%d",&a[i]);
	
	fenwick_tree<mint> fw(M+1);
	mint ans = 0;
	rep(i,N){
		//small, *
		for(int j=1;j<=B;j++){
			ans += num[j] * cnt[j][a[i]];
		}
		
		//big big
		if(a[i]>B){
			for(int j=a[i];j<=M;j+=a[i]){
				ans += fw.sum(j+1,M+1)*is[M/a[i]];//mint(M/a[i]);
			}
		}
		
		if(a[i]<=B)num[a[i]]++;
		else{
			
			for(int j=a[i];j<=M;j+=a[i]){
				fw.add(j,is[M/a[i]]);//mint(M/a[i]).inv());
			}
			
		}
	}
	num.assign(B+1,0);
	reverse(a.begin(),a.end());
	for(int i=1;i<=B;i++){
		for(int j=1;j<=M;j++){
			int a0 = j-1;
			int m = i;
			int n = M/j;
			cnt[i][j] = floor_sum(n,m,j,a0);
			cnt[i][j] *= is[M/i] * is[M/j];//mint(M/i) * mint(M/j);
		}
	}
	rep(i,N){
		//big, small
		if(a[i]>B){
			for(int j=1;j<=B;j++){
				ans += num[j] * cnt[j][a[i]];
			}
		}
		else num[a[i]]++;
	}
	rep(i,N)ans *= mint(M/a[i]);
	cout<<ans.val()<<endl;
	return 0;
}
0