結果
問題 | No.1529 Constant Lcm |
ユーザー | Hideaki Ito |
提出日時 | 2021-06-04 21:48:56 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 560 ms / 3,000 ms |
コード長 | 1,750 bytes |
コンパイル時間 | 1,919 ms |
コンパイル使用メモリ | 179,660 KB |
実行使用メモリ | 10,880 KB |
最終ジャッジ日時 | 2024-04-30 02:24:54 |
合計ジャッジ時間 | 8,069 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 9 ms
7,172 KB |
testcase_01 | AC | 9 ms
7,148 KB |
testcase_02 | AC | 8 ms
7,128 KB |
testcase_03 | AC | 8 ms
7,120 KB |
testcase_04 | AC | 9 ms
7,128 KB |
testcase_05 | AC | 8 ms
7,128 KB |
testcase_06 | AC | 10 ms
7,168 KB |
testcase_07 | AC | 8 ms
7,040 KB |
testcase_08 | AC | 9 ms
7,168 KB |
testcase_09 | AC | 8 ms
6,952 KB |
testcase_10 | AC | 479 ms
10,524 KB |
testcase_11 | AC | 178 ms
8,576 KB |
testcase_12 | AC | 15 ms
7,284 KB |
testcase_13 | AC | 406 ms
10,112 KB |
testcase_14 | AC | 240 ms
9,216 KB |
testcase_15 | AC | 278 ms
9,176 KB |
testcase_16 | AC | 218 ms
8,792 KB |
testcase_17 | AC | 117 ms
8,048 KB |
testcase_18 | AC | 126 ms
8,192 KB |
testcase_19 | AC | 263 ms
9,212 KB |
testcase_20 | AC | 555 ms
10,856 KB |
testcase_21 | AC | 546 ms
10,844 KB |
testcase_22 | AC | 542 ms
10,880 KB |
testcase_23 | AC | 560 ms
10,752 KB |
testcase_24 | AC | 536 ms
10,880 KB |
testcase_25 | AC | 517 ms
10,812 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; }