結果
問題 | No.2211 Frequency Table of GCD |
ユーザー | warabi0906 |
提出日時 | 2023-02-11 09:17:58 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 374 ms / 2,000 ms |
コード長 | 2,176 bytes |
コンパイル時間 | 3,252 ms |
コンパイル使用メモリ | 230,200 KB |
実行使用メモリ | 8,064 KB |
最終ジャッジ日時 | 2024-07-08 00:34:20 |
合計ジャッジ時間 | 11,978 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 282 ms
6,272 KB |
testcase_04 | AC | 217 ms
6,144 KB |
testcase_05 | AC | 261 ms
6,944 KB |
testcase_06 | AC | 257 ms
6,528 KB |
testcase_07 | AC | 303 ms
7,168 KB |
testcase_08 | AC | 13 ms
5,376 KB |
testcase_09 | AC | 9 ms
5,376 KB |
testcase_10 | AC | 25 ms
5,376 KB |
testcase_11 | AC | 20 ms
5,376 KB |
testcase_12 | AC | 27 ms
5,376 KB |
testcase_13 | AC | 208 ms
6,016 KB |
testcase_14 | AC | 288 ms
6,784 KB |
testcase_15 | AC | 286 ms
6,400 KB |
testcase_16 | AC | 283 ms
6,400 KB |
testcase_17 | AC | 265 ms
6,656 KB |
testcase_18 | AC | 357 ms
7,936 KB |
testcase_19 | AC | 363 ms
7,936 KB |
testcase_20 | AC | 374 ms
8,064 KB |
testcase_21 | AC | 350 ms
8,064 KB |
testcase_22 | AC | 354 ms
7,936 KB |
testcase_23 | AC | 304 ms
6,400 KB |
testcase_24 | AC | 348 ms
7,936 KB |
testcase_25 | AC | 28 ms
5,376 KB |
testcase_26 | AC | 2 ms
5,376 KB |
testcase_27 | AC | 349 ms
8,064 KB |
testcase_28 | AC | 354 ms
7,936 KB |
ソースコード
#include <bits/stdc++.h> #include "atcoder/all" #define debug cout << "OK" << endl; template<typename T> inline bool chmax(T& a, const T b) { if (a < b) { a = b; return true; } return false; } template<typename T> inline bool chmin(T& a, const T b) { if (a > b) { a = b; return true; } return false; } inline int Code(char c) { if ('A' <= c and c <= 'Z')return (int)(c - 'A'); if ('a' <= c and c <= 'z')return (int)(c - 'a'); if ('0' <= c and c <= '9')return (int)(c - '0'); assert(false); } using namespace std; using namespace atcoder; #define int long long constexpr int MOD = 998244353; constexpr int INF = (1LL << 63); using minit = modint998244353; template<typename T> ostream& operator << (ostream& st, const vector<T>& v) { for (const T value : v) { st << value << " "; } return st; } template<typename T> istream& operator >> (istream& st, vector<T>& v) { for (T& value : v) { st >> value; } return st; } struct edge { int to, cost; }; int Rand() { return (rand() % 32768) * 32768 + (rand() % 32768); } int pow_(const int a, const int b, const int m = INF) { int res = 1; int base = a; for (int i = 0; i < 64; i++) { if (b & (1ll << i))res *= base; res %= m; base = base * base; base %= m; } return res; } // // class Solver { public: int T; Solver() :T(1) {} ~Solver(){} void multi(); void solve() const; void sp(int x)const; }; void Solver::multi() { cin >> T; return; } void Solver::sp(const int x)const { cout << fixed << setprecision(x) << endl; return; } void Solver::solve() const { int N, M; cin >> N >> M; vector<int> A(N); cin >> A; vector<int> cnt(M + 1, 0); for (const int a : A) { cnt[a]++; } vector<int> ans(M + 1, 0); for (int k = M; 1 <= k; k--) { int pk = 0; minit res = 0; for (int e = 1; e * k <= M; e++) { pk += cnt[e * k]; res -= ans[e * k]; } res += pow_(2, pk, MOD) - 1; ans[k] = res.val(); } for (int i = 1; i <= M; i++) cout << ans[i] << endl; } signed main() { Solver solver; //solver.multi(); //solver.sp(); for (int i = 0; i < solver.T; i++) solver.solve(); return 0; } /* * わらびのコードこーどすぺーす (σ・∀・)σゲッツ!! */