結果

問題 No.2952 Invision of Multiples
ユーザー 👑 NachiaNachia
提出日時 2024-11-02 01:36:23
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 388 ms / 4,000 ms
コード長 2,043 bytes
コンパイル時間 1,025 ms
コンパイル使用メモリ 85,488 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-11-02 01:36:38
合計ジャッジ時間 14,262 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 254 ms
6,820 KB
testcase_03 AC 5 ms
6,820 KB
testcase_04 AC 5 ms
6,820 KB
testcase_05 AC 5 ms
6,820 KB
testcase_06 AC 5 ms
6,816 KB
testcase_07 AC 5 ms
6,820 KB
testcase_08 AC 5 ms
6,816 KB
testcase_09 AC 188 ms
6,820 KB
testcase_10 AC 181 ms
6,816 KB
testcase_11 AC 273 ms
6,816 KB
testcase_12 AC 275 ms
6,816 KB
testcase_13 AC 167 ms
6,816 KB
testcase_14 AC 284 ms
6,816 KB
testcase_15 AC 320 ms
6,816 KB
testcase_16 AC 315 ms
6,816 KB
testcase_17 AC 383 ms
6,820 KB
testcase_18 AC 388 ms
6,816 KB
testcase_19 AC 302 ms
6,816 KB
testcase_20 AC 302 ms
6,820 KB
testcase_21 AC 300 ms
6,816 KB
testcase_22 AC 305 ms
6,820 KB
testcase_23 AC 310 ms
6,820 KB
testcase_24 AC 301 ms
6,820 KB
testcase_25 AC 304 ms
6,816 KB
testcase_26 AC 308 ms
6,816 KB
testcase_27 AC 313 ms
6,816 KB
testcase_28 AC 314 ms
6,816 KB
testcase_29 AC 322 ms
6,816 KB
testcase_30 AC 318 ms
6,816 KB
testcase_31 AC 318 ms
6,816 KB
testcase_32 AC 317 ms
6,816 KB
testcase_33 AC 296 ms
6,816 KB
testcase_34 AC 286 ms
6,816 KB
testcase_35 AC 286 ms
6,820 KB
testcase_36 AC 304 ms
6,816 KB
testcase_37 AC 310 ms
6,820 KB
testcase_38 AC 302 ms
6,816 KB
testcase_39 AC 301 ms
6,820 KB
testcase_40 AC 300 ms
6,820 KB
testcase_41 AC 307 ms
6,816 KB
testcase_42 AC 297 ms
6,820 KB
testcase_43 AC 306 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#ifdef NACHIA
#define _GLIBCXX_DEBUG
#else
#define NDEBUG
#endif
#include <iostream>
#include <string>
#include <vector>
#include <algorithm>
using i64 = long long;
using u64 = unsigned long long;
#define rep(i,n) for(int i=0; i<int(n); i++)
const i64 INF = 1001001001001001001;
template<typename A> void chmin(A& l, const A& r){ if(r < l) l = r; }
template<typename A> void chmax(A& l, const A& r){ if(l < r) l = r; }
#include <atcoder/modint>
#include <atcoder/fenwicktree>
using Modint = atcoder::static_modint<998244353>;
using namespace std;


void testcase(){
    i64 N, M; cin >> N >> M;
    vector<i64> D(N); rep(i,N) cin >> D[i];
    vector<Modint> Inv(M+1);
    for(i64 i=1; i<=M; i++) Inv[i] = Modint(M/i).inv();
    Modint ans = 0;
    Modint mult = 1;
    for(auto a : D) mult *= M/a;
    reverse(D.begin(), D.end());
    i64 BORDER = 200;
    for(i64 d=1; d<=min<i64>(BORDER,M); d++){
        vector<Modint> A(M+1);
        for(i64 i=1; i*d<=M; i++) A[i*d] += Inv[d];
        rep(i,M) A[i+1] += A[i];
        vector<Modint> B(M+1);
        for(i64 j=d; j<=M; j++){
            for(i64 i=1; i*j<=M; i++) B[j] += A[i*j-1];
            B[j] *= Inv[j];
        }
        vector<Modint> C(M+1);
        for(i64 j=d; j<=M; j++){
            for(i64 i=1; i*j<=M; i++) C[j] += A[i*j];
            C[j] *= Inv[j];
        }
        Modint t = 0;
        Modint c0 = 0;
        Modint c1 = 0;
        rep(i,N){
            if(D[i] == d){
                ans += c0 - t;
                c1 += 1;
                c0 += 1; t += C[D[i]];
            }
            if(D[i] > d){
                ans += c1 * B[D[i]];
                c0 += 1; t += C[D[i]];
            }
        }
    }
    atcoder::fenwick_tree<Modint> ds(M+1);
    for(i64 d : D) if(d > BORDER){
        for(i64 i=1; i*d<=M; i++) ans += ds.sum(0, i*d) * Inv[d];
        for(i64 i=1; i*d<=M; i++) ds.add(i*d, Inv[d]);
    }
    ans *= mult;
    cout << ans.val() << endl;
}

int main(){
    ios::sync_with_stdio(false); cin.tie(nullptr);
    rep(t,1) testcase();
    return 0;
}
0