結果

問題 No.2211 Frequency Table of GCD
ユーザー 遭難者遭難者
提出日時 2022-12-22 18:05:27
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 35 ms / 2,000 ms
コード長 945 bytes
コンパイル時間 4,016 ms
コンパイル使用メモリ 265,244 KB
実行使用メモリ 5,760 KB
最終ジャッジ日時 2024-07-07 17:51:20
合計ジャッジ時間 5,639 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 16 ms
5,376 KB
testcase_04 AC 19 ms
5,376 KB
testcase_05 AC 26 ms
5,376 KB
testcase_06 AC 20 ms
5,376 KB
testcase_07 AC 28 ms
5,376 KB
testcase_08 AC 6 ms
5,376 KB
testcase_09 AC 4 ms
5,376 KB
testcase_10 AC 10 ms
5,376 KB
testcase_11 AC 9 ms
5,376 KB
testcase_12 AC 11 ms
5,376 KB
testcase_13 AC 17 ms
5,376 KB
testcase_14 AC 21 ms
5,376 KB
testcase_15 AC 18 ms
5,376 KB
testcase_16 AC 20 ms
5,376 KB
testcase_17 AC 24 ms
5,376 KB
testcase_18 AC 34 ms
5,760 KB
testcase_19 AC 35 ms
5,632 KB
testcase_20 AC 35 ms
5,632 KB
testcase_21 AC 35 ms
5,760 KB
testcase_22 AC 34 ms
5,632 KB
testcase_23 AC 17 ms
5,376 KB
testcase_24 AC 34 ms
5,632 KB
testcase_25 AC 12 ms
5,376 KB
testcase_26 AC 1 ms
5,376 KB
testcase_27 AC 34 ms
5,760 KB
testcase_28 AC 35 ms
5,632 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
#include <atcoder/all>
using namespace atcoder;
#define mint modint998244353
#define rep(i, n) for (int i = 0; i < n; i++)
#define endl '\n'
int main()
{
    cin.tie(nullptr);
    ios::sync_with_stdio(false);
    cout << fixed << setprecision(20);
    int n, m;
    cin >> n >> m;
    vector<int> c(m + 1);
    for (int i = 0; i < n; i++)
    {
        int x;
        cin >> x;
        c[x]++;
    }
    for (int i = 1; i <= m; i++)
        for (int j = i << 1; j <= m; j += i)
            c[i] += c[j];
    vector<mint> two(n + 1), d(m + 1);
    two[0] = 1LL;
    for (int i = 1; i <= n; i++)
        two[i] = 2 * two[i - 1];
    for (int i = 1; i <= m; i++)
        d[i] = two[c[i]] - 1;
    for (int i = m; i > 0; i--)
        for (int j = i << 1; j <= m; j += i)
            d[i] -= d[j];
    for (int i = 1; i <= m; i++)
        cout << d[i].val() << endl;
    return 0;
}
0