結果
問題 | No.1396 Giri |
ユーザー | ocvret_ |
提出日時 | 2021-02-15 19:00:04 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 478 ms / 2,000 ms |
コード長 | 1,108 bytes |
コンパイル時間 | 1,791 ms |
コンパイル使用メモリ | 176,836 KB |
実行使用メモリ | 15,060 KB |
最終ジャッジ日時 | 2024-07-23 09:57:16 |
合計ジャッジ時間 | 6,716 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 14 ms
11,668 KB |
testcase_01 | AC | 14 ms
11,732 KB |
testcase_02 | AC | 475 ms
15,060 KB |
testcase_03 | AC | 13 ms
11,644 KB |
testcase_04 | AC | 13 ms
11,700 KB |
testcase_05 | AC | 478 ms
15,060 KB |
testcase_06 | AC | 14 ms
11,640 KB |
testcase_07 | AC | 14 ms
11,724 KB |
testcase_08 | AC | 14 ms
11,844 KB |
testcase_09 | AC | 14 ms
11,664 KB |
testcase_10 | AC | 13 ms
11,812 KB |
testcase_11 | AC | 14 ms
11,692 KB |
testcase_12 | AC | 14 ms
11,700 KB |
testcase_13 | AC | 14 ms
11,732 KB |
testcase_14 | AC | 14 ms
11,692 KB |
testcase_15 | AC | 14 ms
11,728 KB |
testcase_16 | AC | 14 ms
11,844 KB |
testcase_17 | AC | 18 ms
11,784 KB |
testcase_18 | AC | 42 ms
11,728 KB |
testcase_19 | AC | 239 ms
13,400 KB |
testcase_20 | AC | 337 ms
14,036 KB |
testcase_21 | AC | 423 ms
14,804 KB |
testcase_22 | AC | 467 ms
14,932 KB |
testcase_23 | AC | 473 ms
15,060 KB |
testcase_24 | AC | 463 ms
15,060 KB |
testcase_25 | AC | 469 ms
15,060 KB |
ソースコード
#include<bits/stdc++.h> // #include<atcoder/all> using namespace std; // using namespace atcoder; using ll = long long; using ull = unsigned long long; using P = pair<int,int>; #define rep(i,n) for(ll i = 0;i < (ll)n;i++) #define ALL(x) (x).begin(),(x).end() #define MOD 1000000007 vector<int> v(2000000,0); vector<int> sieve(){ v[0] = 1;v[1] = 1; vector<int> res; for(int i = 2;i <= 1000000;i++){ if(v[i])continue; res.push_back(i); for(int j = i;j <= 1000000;j+=i)v[j] = i; } return res; } void lcm(map<int,int> &mp,int k){ mp[v[k]]++; if(v[k] == k)return; lcm(mp,k/v[k]); } int mod = 998244353; int main(){ int n; cin >> n; vector<int> p(sieve()); ll x = 0; for(auto au : p){ if(au > n)break; ll k = au; while(k*au <= n)k *= au; if(k*2 > n)x = k; } ll res = 1; map<int,int> mp; for(int i = 2;i <= n;i++){ if(i == x)continue; map<int,int> mpp; lcm(mpp,i); for(auto au : mpp)mp[au.first] = max(mp[au.first],au.second); } for(auto &au : mp)while(au.second--)res = res*au.first%mod; cout << res << "\n"; return 0; }