結果
問題 | No.1529 Constant Lcm |
ユーザー | sten_san |
提出日時 | 2021-06-04 20:34:13 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 701 ms / 3,000 ms |
コード長 | 2,566 bytes |
コンパイル時間 | 2,532 ms |
コンパイル使用メモリ | 221,320 KB |
実行使用メモリ | 76,840 KB |
最終ジャッジ日時 | 2024-11-19 09:34:20 |
合計ジャッジ時間 | 10,427 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 3 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | AC | 2 ms
5,248 KB |
testcase_07 | AC | 2 ms
5,248 KB |
testcase_08 | AC | 2 ms
5,248 KB |
testcase_09 | AC | 3 ms
5,248 KB |
testcase_10 | AC | 618 ms
70,320 KB |
testcase_11 | AC | 216 ms
29,800 KB |
testcase_12 | AC | 11 ms
5,248 KB |
testcase_13 | AC | 509 ms
60,796 KB |
testcase_14 | AC | 300 ms
40,320 KB |
testcase_15 | AC | 343 ms
42,540 KB |
testcase_16 | AC | 258 ms
33,536 KB |
testcase_17 | AC | 133 ms
19,840 KB |
testcase_18 | AC | 145 ms
21,240 KB |
testcase_19 | AC | 325 ms
41,344 KB |
testcase_20 | AC | 701 ms
76,800 KB |
testcase_21 | AC | 681 ms
76,840 KB |
testcase_22 | AC | 689 ms
76,744 KB |
testcase_23 | AC | 700 ms
76,664 KB |
testcase_24 | AC | 689 ms
76,600 KB |
testcase_25 | AC | 673 ms
76,768 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; struct iofast_t { iofast_t() { ios::sync_with_stdio(false); cin.tie(nullptr); } } iofast; struct uns_t {} uns; template <typename Element, typename Head, typename ...Args> auto vec(Element init, Head arg, Args ...args) { if constexpr (sizeof...(Args) == 0) return std::vector(arg, init); else return std::vector(arg, vec(init, args...)); } template <typename Element, typename Head, typename ...Args> auto vec(uns_t, Head arg, Args ...args) { return vec(Element(), arg, args...); } template <typename T, typename Compare = less<T>> T &chmin(T &l, T r, Compare &&f = less<T>()) { return l = min(l, r, f); } template <typename T, typename Compare = less<T>> T &chmax(T &l, T r, Compare &&f = less<T>()) { return l = max(l, r, f); } #include <atcoder/modint> using mint = atcoder::modint998244353; int main() { int n; cin >> n; auto sieve = vec<int>(uns, n + 1); iota(begin(sieve), end(sieve), 0); for (int i = 2; i <= n / i; ++i) { if (sieve[i] != i) { continue; } for (int j = i * i; j <= n; j += i) { if (sieve[j] == j) { sieve[j] = i; } } } auto p = vec<tuple<int, int>>(uns, n + 1, 0); for (int i = 2; i <= n; ++i) { auto &pf = p[i]; int x = i; while (x != 1) { int d = sieve[x]; int c = 0; while (x % d == 0) { ++c; x /= d; } pf.push_back({ d, c }); } } map<int, int> f; for (int i = 1; i <= n - 1; ++i) { auto iter1 = begin(p[i]); auto iter2 = begin(p[n - i]); while (iter1 != end(p[i]) && iter2 != end(p[n - i])) { auto [a1, b1] = *iter1; auto [a2, b2] = *iter2; if (a1 < a2) { chmax(f[a1], b1); ++iter1; continue; } if (a1 > a2) { chmax(f[a2], b2); ++iter2; continue; } chmax(f[a1], b1 + b2); ++iter1; ++iter2; } while (iter1 != end(p[i])) { chmax(f[get<0>(*iter1)], get<1>(*iter1)); ++iter1; } while (iter2 != end(p[n - i])) { chmax(f[get<0>(*iter2)], get<1>(*iter2)); ++iter2; } } mint ans = 1; for (auto [a, b] : f) { ans *= mint(a).pow(b); } cout << ans.val() << endl; }