結果

問題 No.2952 Invision of Multiples
ユーザー nouka28nouka28
提出日時 2024-06-02 15:17:46
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 1,056 bytes
コンパイル時間 5,341 ms
コンパイル使用メモリ 312,156 KB
実行使用メモリ 167,632 KB
最終ジャッジ日時 2024-10-23 20:47:17
合計ジャッジ時間 43,403 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 762 ms
160,684 KB
testcase_01 AC 760 ms
160,688 KB
testcase_02 AC 1,472 ms
160,812 KB
testcase_03 AC 873 ms
160,680 KB
testcase_04 AC 872 ms
160,812 KB
testcase_05 AC 822 ms
160,680 KB
testcase_06 AC 820 ms
160,684 KB
testcase_07 AC 879 ms
160,684 KB
testcase_08 AC 904 ms
160,684 KB
testcase_09 TLE -
testcase_10 TLE -
testcase_11 AC 2,919 ms
160,940 KB
testcase_12 AC 2,668 ms
160,812 KB
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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

const int B=200;
const int M=100000;


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];

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;
	mint X=1;for(auto&e:a)X*=m/e;
	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);
		}
	}
	mint ans=0;
	fenwick_tree<mint> f(M+1);
	for(auto&e:a){
		if(e<=B){
			ans+=sum2[e];
			for(int i=1;i<=B;i++){
				ans+=sum[i]*floor_sums[e][i]/(m/e);
			}
			sum[e]+=X/(m/e);
		}else{
			for(int i=1;i<=B;i++){
				ans+=sum[i]*floor_sums[e][i]/(m/e);
			}
			for(int i=e;i<=m;i+=e){
				ans+=f.sum(i+1,m+1)/(m/e);
			}
			for(int i=1;i<=B;i++){
				sum2[i]+=X/(m/e)/(m/i)*floor_sums2[e][i];
			}
			for(int i=e;i<=M;i+=e){
				f.add(i,X/(m/e));
			}
		}
	}
	cout<<ans.val()<<endl;
}
0