結果
問題 | No.811 約数の個数の最大化 |
ユーザー | Tiramister |
提出日時 | 2019-04-12 23:10:11 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 27 ms / 2,000 ms |
コード長 | 1,900 bytes |
コンパイル時間 | 955 ms |
コンパイル使用メモリ | 82,032 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-09-15 06:12:56 |
合計ジャッジ時間 | 1,623 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 20 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 3 ms
5,376 KB |
testcase_05 | AC | 3 ms
5,376 KB |
testcase_06 | AC | 4 ms
5,376 KB |
testcase_07 | AC | 4 ms
5,376 KB |
testcase_08 | AC | 11 ms
5,376 KB |
testcase_09 | AC | 10 ms
5,376 KB |
testcase_10 | AC | 8 ms
5,376 KB |
testcase_11 | AC | 13 ms
5,376 KB |
testcase_12 | AC | 7 ms
5,376 KB |
testcase_13 | AC | 27 ms
5,376 KB |
testcase_14 | AC | 19 ms
5,376 KB |
ソースコード
#include <iostream> #include <vector> template <class T> T gcd(T a, T b) { while (b > 0) { a %= b; std::swap(a, b); } return a; } class Prime { using lint = long long; public: int MAX_V; std::vector<int> primes; std::vector<bool> isp; explicit Prime(int N) : MAX_V(N) { isp.assign(MAX_V + 1, true); isp[0] = isp[1] = false; for (int i = 2; i * i <= MAX_V; ++i) { if (isp[i]) { for (int j = i; i * j <= MAX_V; ++j) { isp[i * j] = false; } } } for (int p = 2; p <= MAX_V; ++p) { if (isp[p]) primes.push_back(p); } } bool isprime(lint N) const { if (N <= MAX_V) return isp[N]; for (lint p : primes) { if (p * p > N) break; if (N % p == 0) return false; } return true; } std::vector<std::pair<lint, int>> factorization(lint N) const { std::vector<std::pair<lint, int>> ret; for (lint p : primes) { if (p * p > N) break; if (N % p != 0) continue; int cnt = 0; while (N % p == 0) { N /= p; ++cnt; } ret.emplace_back(p, cnt); } if (N > 1) ret.emplace_back(N, 1); return ret; } }; const Prime P(100010); int main() { int N, K; std::cin >> N >> K; int ans = 0, maxf = 0; for (int n = 1; n < N; ++n) { auto facts = P.factorization(gcd(N, n)); int f = 0; for (auto p : facts) f += p.second; if (f < K) continue; facts = P.factorization(n); f = 1; for (auto p : facts) f *= (p.second + 1); if (maxf < f) { ans = n; maxf = f; } } std::cout << ans << std::endl; return 0; }