結果

問題 No.2952 Invision of Multiples
ユーザー nouka28nouka28
提出日時 2024-07-17 22:48:48
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 1,055 bytes
コンパイル時間 5,481 ms
コンパイル使用メモリ 312,984 KB
実行使用メモリ 19,316 KB
最終ジャッジ日時 2024-09-13 16:09:57
合計ジャッジ時間 19,426 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
12,372 KB
testcase_01 AC 42 ms
12,244 KB
testcase_02 AC 71 ms
12,240 KB
testcase_03 AC 122 ms
12,376 KB
testcase_04 AC 123 ms
12,372 KB
testcase_05 AC 245 ms
12,244 KB
testcase_06 AC 255 ms
12,244 KB
testcase_07 AC 71 ms
12,244 KB
testcase_08 AC 74 ms
12,368 KB
testcase_09 AC 411 ms
12,368 KB
testcase_10 AC 458 ms
12,368 KB
testcase_11 AC 168 ms
12,628 KB
testcase_12 AC 152 ms
12,372 KB
testcase_13 AC 262 ms
12,496 KB
testcase_14 AC 272 ms
12,368 KB
testcase_15 AC 513 ms
12,504 KB
testcase_16 AC 494 ms
12,372 KB
testcase_17 TLE -
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=10;
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