結果
問題 | No.2211 Frequency Table of GCD |
ユーザー | Carpenters-Cat |
提出日時 | 2023-02-11 04:09:15 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,534 bytes |
コンパイル時間 | 1,770 ms |
コンパイル使用メモリ | 171,976 KB |
実行使用メモリ | 9,600 KB |
最終ジャッジ日時 | 2024-07-07 20:31:02 |
合計ジャッジ時間 | 4,790 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
ソースコード
#include <bits/stdc++.h> using namespace std; using ll = long long; ll const m = 998244353; ll mpow(ll a, ll n) { ll ret = 1; while (n) { if (n & 1) { ret = (ret * a) % m; } a = (a * a) % m; n >>= 1; } return ret; } int main () { int N, K; cin >> N >> K; std::vector<int> A(N); for (auto& a : A) { cin >> a; } vector<int> B(K + 1, 0); for (auto a : A) { B[a] ++; } for (int i = 1; i <= K; i ++) { for (int j = 2; j * i <= K; j ++) { B[i] += B[i * j]; } } vector<ll> dp(K + 1, 0), ans(K + 1, 0), meb(K + 1, -2); for (int i = 0; i <= K; i ++) { dp[i] = mpow(2, B[i]); } meb[1] = 1; for (int i = 2; i <= K; i ++) { if (meb[i] == -2) { meb[i] = -1; for (int j = 2; i * j <= K; j ++) { if (meb[i * j] == -2) { meb[i * j] = -1; } else { meb[i * j] *= -1; } } if (i < 1000) { for (int j = 2; i * i * j <= K; j ++) { meb[i * i * j] = 0; } } } } for (int i = K; i > 0; i --) { ans[i] = dp[i]; for (int j = 2; j * i <= K; j ++) { ans[i] += (dp[i * j] * meb[j]); ans[i] += m; ans[i] %= m; } } for (int i = 1; i <= K; i ++) { cout << ans[i] << " "; } cout << endl; }