結果
問題 | No.1529 Constant Lcm |
ユーザー | Hideaki Ito |
提出日時 | 2021-06-04 21:48:56 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 587 ms / 3,000 ms |
コード長 | 1,750 bytes |
コンパイル時間 | 1,961 ms |
コンパイル使用メモリ | 180,224 KB |
実行使用メモリ | 10,880 KB |
最終ジャッジ日時 | 2024-11-19 13:49:25 |
合計ジャッジ時間 | 8,728 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 9 ms
7,080 KB |
testcase_01 | AC | 10 ms
7,128 KB |
testcase_02 | AC | 9 ms
7,124 KB |
testcase_03 | AC | 9 ms
7,116 KB |
testcase_04 | AC | 9 ms
7,116 KB |
testcase_05 | AC | 9 ms
7,116 KB |
testcase_06 | AC | 9 ms
6,952 KB |
testcase_07 | AC | 9 ms
7,148 KB |
testcase_08 | AC | 8 ms
6,952 KB |
testcase_09 | AC | 9 ms
7,128 KB |
testcase_10 | AC | 506 ms
10,484 KB |
testcase_11 | AC | 188 ms
8,592 KB |
testcase_12 | AC | 18 ms
7,296 KB |
testcase_13 | AC | 432 ms
10,072 KB |
testcase_14 | AC | 255 ms
9,060 KB |
testcase_15 | AC | 289 ms
9,156 KB |
testcase_16 | AC | 225 ms
8,816 KB |
testcase_17 | AC | 119 ms
8,064 KB |
testcase_18 | AC | 128 ms
8,156 KB |
testcase_19 | AC | 273 ms
9,132 KB |
testcase_20 | AC | 575 ms
10,872 KB |
testcase_21 | AC | 575 ms
10,800 KB |
testcase_22 | AC | 567 ms
10,788 KB |
testcase_23 | AC | 587 ms
10,664 KB |
testcase_24 | AC | 567 ms
10,816 KB |
testcase_25 | AC | 560 ms
10,880 KB |
コンパイルメッセージ
main.cpp: In function 'int main()': main.cpp:70:14: warning: structured bindings only available with '-std=c++17' or '-std=gnu++17' [-Wc++17-extensions] 70 | for(auto [a, v]: tmp) { | ^ main.cpp:75:12: warning: structured bindings only available with '-std=c++17' or '-std=gnu++17' [-Wc++17-extensions] 75 | for(auto [a, v]: cnt) (ans *= modpow(a, v)) %= mod; | ^
ソースコード
#include <bits/stdc++.h> using namespace std; #define ll long long #define ld long double #define REP(i,m,n) for(int i=(int)(m); i<(int)(n); i++) #define rep(i,n) REP(i,0,n) #define RREP(i,m,n) for(int i=(int)(m); i>=(int)(n); i--) #define rrep(i,n) RREP(i,(n)-1,0) #define all(v) v.begin(), v.end() #define endk '\n' const int inf = 1e9+7; const ll longinf = 1LL<<60; const ll mod = 998244353; const ld eps = 1e-10; template<typename T1, typename T2> inline void chmin(T1 &a, T2 b){if(a>b) a=b;} template<typename T1, typename T2> inline void chmax(T1 &a, T2 b){if(a<b) a=b;} ll modpow(ll a, ll N) { ll ans = 1; ll tmp = a; while(N > 0) { if(N % 2 == 1) (ans *= tmp) %= mod; (tmp *= tmp) %= mod; N /= 2; } return ans; } template<typename T> vector<T> smallest_prime_factors(T n) { vector<T> spf(n + 1); for(int i=0; i<=n; i++) spf[i] = i; for(T i=2; i*i<=n; i++) { if(spf[i] == i) { for(T j=i*i; j<=n; j+=i) { if(spf[j] == j) { spf[j] = i; } } } } return spf; } template<typename T> vector<T> factorization(T x, vector<T>& spf) { vector<T> ret; while(x != 1) { ret.push_back(spf[x]); x /= spf[x]; } sort(ret.begin(), ret.end()); return ret; } int main() { cin.tie(0); ios::sync_with_stdio(false); int MAX = 1000001; auto spf = smallest_prime_factors(MAX); int n; cin >> n; map<int, int> cnt; for(int i=1; i<=n-i; i++) { map<int, int> tmp; for(int a: factorization(i, spf)) { tmp[a]++; } for(int a: factorization(n-i, spf)) { tmp[a]++; } for(auto [a, v]: tmp) { chmax(cnt[a], v); } } ll ans = 1; for(auto [a, v]: cnt) (ans *= modpow(a, v)) %= mod; cout << ans << endk; return 0; }