結果

問題 No.2211 Frequency Table of GCD
ユーザー Manuel1024Manuel1024
提出日時 2023-02-10 22:46:07
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 85 ms / 2,000 ms
コード長 935 bytes
コンパイル時間 523 ms
コンパイル使用メモリ 73,680 KB
実行使用メモリ 6,528 KB
最終ジャッジ日時 2024-07-07 18:09:31
合計ジャッジ時間 3,356 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 6 ms
5,632 KB
testcase_01 AC 6 ms
5,504 KB
testcase_02 AC 6 ms
5,632 KB
testcase_03 AC 26 ms
5,632 KB
testcase_04 AC 50 ms
5,888 KB
testcase_05 AC 68 ms
6,272 KB
testcase_06 AC 45 ms
5,888 KB
testcase_07 AC 62 ms
6,016 KB
testcase_08 AC 20 ms
6,016 KB
testcase_09 AC 17 ms
5,760 KB
testcase_10 AC 33 ms
6,144 KB
testcase_11 AC 26 ms
6,016 KB
testcase_12 AC 35 ms
6,400 KB
testcase_13 AC 43 ms
5,888 KB
testcase_14 AC 43 ms
5,760 KB
testcase_15 AC 35 ms
5,888 KB
testcase_16 AC 40 ms
5,760 KB
testcase_17 AC 63 ms
6,144 KB
testcase_18 AC 80 ms
6,528 KB
testcase_19 AC 80 ms
6,400 KB
testcase_20 AC 85 ms
6,400 KB
testcase_21 AC 80 ms
6,528 KB
testcase_22 AC 81 ms
6,528 KB
testcase_23 AC 21 ms
5,504 KB
testcase_24 AC 70 ms
6,528 KB
testcase_25 AC 31 ms
6,400 KB
testcase_26 AC 6 ms
5,632 KB
testcase_27 AC 77 ms
6,400 KB
testcase_28 AC 71 ms
6,528 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;
using ll = long long;
constexpr ll MOD = 998244353;

ll modpow(ll a, ll x){
    ll res = 1;
    for(; x > 0; x >>= 1){
        if(x & 1){
            res *= a;
            res %= MOD;
        }
        a *= a;
        a %= MOD;
    }
    return res;
}

int main(){
    int n, m; cin >> n >> m;
    vector<int> a(n);
    for(auto &it: a) cin >> it;

    const int lim = 200010;
    vector<int> cnt(lim, 0);
    for(auto &it: a) cnt[it]++;
    vector<ll> f(lim, 0);
    for(int i = lim-10; i > 0; i--){
        int tot = 0;
        for(int j = i; j < lim; j += i) tot += cnt[j];
        if(tot == 0) continue;
        f[i] = (modpow(2, tot)-1+MOD)%MOD;
        for(int j = i+i; j < lim; j += i){
            f[i] -= f[j];
            f[i] += MOD;
            f[i] %= MOD;
        }
    }
    for(int i = 1; i <= m; i++) cout << f[i] << '\n';
    return 0;
}
0