結果
問題 | No.1396 Giri |
ユーザー | だれ |
提出日時 | 2021-02-28 22:12:26 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 11 ms / 2,000 ms |
コード長 | 1,699 bytes |
コンパイル時間 | 4,311 ms |
コンパイル使用メモリ | 261,780 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-02 22:33:26 |
合計ジャッジ時間 | 5,417 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 11 ms
5,248 KB |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | AC | 11 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 | 2 ms
5,248 KB |
testcase_10 | AC | 1 ms
5,248 KB |
testcase_11 | AC | 2 ms
5,248 KB |
testcase_12 | AC | 1 ms
5,248 KB |
testcase_13 | AC | 2 ms
5,248 KB |
testcase_14 | AC | 2 ms
5,248 KB |
testcase_15 | AC | 2 ms
5,248 KB |
testcase_16 | AC | 2 ms
5,248 KB |
testcase_17 | AC | 2 ms
5,248 KB |
testcase_18 | AC | 3 ms
5,248 KB |
testcase_19 | AC | 7 ms
5,248 KB |
testcase_20 | AC | 8 ms
5,248 KB |
testcase_21 | AC | 10 ms
5,248 KB |
testcase_22 | AC | 10 ms
5,248 KB |
testcase_23 | AC | 10 ms
5,248 KB |
testcase_24 | AC | 11 ms
5,248 KB |
testcase_25 | AC | 11 ms
5,248 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; #if __has_include(<atcoder/all>) #include <atcoder/all> using namespace atcoder; #endif #define GET_MACRO(_1, _2, _3, NAME, ...) NAME #define _rep(i, n) _rep2(i, 0, n) #define _rep2(i, a, b) for(int i = (int)(a); i < (int)(b); i++) #define rep(...) GET_MACRO(__VA_ARGS__, _rep2, _rep)(__VA_ARGS__) #define all(x) (x).begin(), (x).end() #define i64 long long template<class T> bool chmin(T& a, const T& b) { return (b < a) ? (a = b, true) : false; } template<class T> bool chmax(T& a, const T& b) { return (b > a) ? (a = b, true) : false; } long long modpow(long long a, long long n, long long mod) { long long res = 1; while (n > 0) { if (n & 1) res = res * a % mod; a = a * a % mod; n >>= 1; } return res; } vector<bool> erat(long long n) { vector<bool> res(n + 1, true); res[0] = false; res[1] = false; for(long long i = 2; i <= n; i++) { if(res[i]) { if(i * i <= n) { for(long long j = i * i; j <= n; j += i) { res[j] = false; } } } } return res; } int main() { int n; cin >> n; auto f = erat(n); i64 ans = 1; int k = 1; for (int i = 1; i <= n; i++) { if(f[i]) { auto u = n; auto x = n / i; if(x == 1) k = i; while(u >= i) { ans *= i; ans %= 998244353; u /= i; } } } auto x = modpow(k, 998244351, 998244353); ans *= x; ans %= 998244353; cout << ans << endl; }