結果
問題 | No.1529 Constant Lcm |
ユーザー | yakki |
提出日時 | 2021-06-04 21:08:33 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,942 bytes |
コンパイル時間 | 1,803 ms |
コンパイル使用メモリ | 135,344 KB |
実行使用メモリ | 13,988 KB |
最終ジャッジ日時 | 2024-11-19 11:22:42 |
合計ジャッジ時間 | 48,516 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
10,496 KB |
testcase_01 | AC | 3 ms
12,160 KB |
testcase_02 | AC | 2 ms
10,496 KB |
testcase_03 | AC | 2 ms
11,648 KB |
testcase_04 | AC | 2 ms
10,496 KB |
testcase_05 | AC | 2 ms
12,416 KB |
testcase_06 | AC | 2 ms
10,496 KB |
testcase_07 | AC | 2 ms
12,544 KB |
testcase_08 | AC | 2 ms
10,496 KB |
testcase_09 | AC | 2 ms
12,544 KB |
testcase_10 | TLE | - |
testcase_11 | AC | 1,654 ms
12,416 KB |
testcase_12 | AC | 27 ms
12,068 KB |
testcase_13 | TLE | - |
testcase_14 | AC | 2,675 ms
12,544 KB |
testcase_15 | AC | 2,906 ms
5,376 KB |
testcase_16 | AC | 2,005 ms
5,248 KB |
testcase_17 | AC | 833 ms
5,248 KB |
testcase_18 | AC | 933 ms
5,248 KB |
testcase_19 | AC | 2,771 ms
5,248 KB |
testcase_20 | TLE | - |
testcase_21 | TLE | - |
testcase_22 | TLE | - |
testcase_23 | TLE | - |
testcase_24 | TLE | - |
testcase_25 | TLE | - |
ソースコード
#include<iostream> #include<string> #include<vector> #include<algorithm> #include<bitset> #include<set> #include<map> #include<stack> #include<queue> #include<deque> #include<list> #include<iomanip> #include<cmath> #include<cstring> #include<functional> #include<cstdio> #include<cstdlib> #include<numeric> //#include<atcoder/all> using namespace std; //using namespace atcoder; #define repr(i, a, b) for (int i = (int)(a); i < (int)(b); i++) #define rep(i, n) repr(i, 0, n) #define INF 2e9 //#define MOD 1000000007 #define MOD 998244353 #define LINF (long long)4e18 #define jck 3.141592 #define PI acos(-1.0) const double EPS = 1e-10; using ll = long long; using Pi = pair<int,int>; using Pl = pair<ll,ll>; //using mint = modint998244353; int dh[] = {-1,0,1,0}; int dw[] = {0,1,0,-1}; vector<pair<ll,int>> factorize(ll n){ vector<pair<ll,int>> div; ll d = n; for(ll i = 2; i*i <= n; i++){ pair<ll,int> p; if(d % i == 0){ p = make_pair(i,0); while(d % i == 0){ d /= i; p.second++; } div.emplace_back(p); } } if(d != 1) div.emplace_back(d,1); return div; } ll modpow(ll a, ll n, ll m){ if(n == 0) return 1; ll half = modpow(a,n/2,m); ll res = half * half % m; if(n & 1) res = res * (a%m) % m; return res; } int main(){ int n; cin >> n; vector<int> cnt(n+1); ll ans = 1; for(int i = 1; i <= n-i; i++){ auto div1 = factorize(i); auto div2 = factorize(n-i); map<int,int> cnt2; for(auto [u,v] : div1) cnt2[u] += v; for(auto [u,v] : div2) cnt2[u] += v; for(auto [u,v] : cnt2){ if(cnt[u] < cnt2[u]){ ans *= modpow(u,cnt2[u]-cnt[u],MOD); ans %= MOD; cnt[u] = cnt2[u]; } } //cout << i << " " << ans << endl; } cout << ans << endl; }