結果
問題 | No.1529 Constant Lcm |
ユーザー | V_Melville |
提出日時 | 2021-06-25 18:14:09 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,620 bytes |
コンパイル時間 | 2,480 ms |
コンパイル使用メモリ | 214,668 KB |
実行使用メモリ | 11,276 KB |
最終ジャッジ日時 | 2024-06-25 07:44:57 |
合計ジャッジ時間 | 8,596 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 10 ms
7,564 KB |
testcase_01 | WA | - |
testcase_02 | AC | 11 ms
7,620 KB |
testcase_03 | AC | 11 ms
7,692 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 11 ms
7,692 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | AC | 201 ms
9,040 KB |
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 | - |
ソースコード
#include <bits/stdc++.h> #define rep(i, n) for (int i = 0; i < (n); ++i) #define fi first #define se second using std::cin; using std::cout; using std::max; using std::map; using std::vector; using ll = long long; using P = std::pair<int, int>; const int N = 1000005; const int mod = 998244353; struct mint { ll x; mint(ll x=0):x((x%mod+mod)%mod){} mint operator-() const { return mint(-x);} mint& operator+=(const mint a) { if ((x += a.x) >= mod) x -= mod; return *this; } mint& operator-=(const mint a) { if ((x += mod-a.x) >= mod) x -= mod; return *this; } mint& operator*=(const mint a) { (x *= a.x) %= mod; return *this; } mint operator+(const mint a) const { mint res(*this); return res+=a; } mint operator-(const mint a) const { mint res(*this); return res-=a; } mint operator*(const mint a) const { mint res(*this); return res*=a; } mint pow(ll t) const { if (!t) return 1; mint a = pow(t>>1); a *= a; if (t&1) a *= *this; return a; } // for prime mod mint inv() const { return pow(mod-2); } mint& operator/=(const mint a) { return (*this) *= a.inv(); } mint operator/(const mint a) const { mint res(*this); return res/=a; } }; struct Sieve { int n; vector<int> f, primes; Sieve(int n = 1): n(n), f(n + 1) { f[0] = f[1] = -1; for (ll i = 2; i <= n; ++i) { if (f[i]) continue; primes.push_back(i); f[i] = i; for (ll j = i * i; j <= n; j += i) { if (!f[j]) f[j] = i; } } } bool isPrime(int x) { return f[x] == x; } vector<int> factorList(int x) { vector<int> res; while (x != 1) { res.push_back(f[x]); x /= f[x]; } return res; } vector<P> factor(int x) { vector<int> fl = factorList(x); if (fl.size() == 0) return {}; vector<P> res(1, P(fl[0], 0)); for (int p : fl) { if (res.back().fi == p) { res.back().se++; } else { res.emplace_back(p, 1); } } return res; } }; int main() { Sieve sieve(1e6); int n; cin >> n; map<int, int> mp; for (int i = 2; i < n; ++i) { auto f = sieve.factor(i); for (auto p : f) { mp[p.fi] = max(mp[p.fi], p.se); } } mint lcm = 1; for (auto p : mp) { rep(i, p.se) { lcm *= p.fi; } } cout << lcm.x << '\n'; return 0; }