結果
問題 | No.811 約数の個数の最大化 |
ユーザー | xuzijian629 |
提出日時 | 2019-04-13 00:55:10 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 48 ms / 2,000 ms |
コード長 | 883 bytes |
コンパイル時間 | 2,111 ms |
コンパイル使用メモリ | 207,348 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-09-15 06:32:12 |
合計ジャッジ時間 | 2,862 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 15 ms
5,248 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 3 ms
5,376 KB |
testcase_07 | AC | 4 ms
5,376 KB |
testcase_08 | AC | 9 ms
5,376 KB |
testcase_09 | AC | 13 ms
5,376 KB |
testcase_10 | AC | 7 ms
5,376 KB |
testcase_11 | AC | 13 ms
5,376 KB |
testcase_12 | AC | 5 ms
5,376 KB |
testcase_13 | AC | 48 ms
5,376 KB |
testcase_14 | AC | 16 ms
5,376 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; int cnt(int a, int b) { int g = __gcd(a, b); int ret = 0; for (int i = 2; i * i <= g; i++) { while (g % i == 0) { ret++; g /= i; } } if (g > 1) { ret++; } return ret; } int main() { int n, k; cin >> n >> k; vector<pair<int, int>> ans; for (int i = 2; i < n; i++) { if (cnt(i, n) >= k) { int num = 0; for (int j = 1; j * j <= i; j++) { if (i % j == 0) { num++; if (i / j != j) num++; } } ans.emplace_back(i, num); } } sort(ans.begin(), ans.end(), [](auto& a, auto& b) { return (a.second != b.second ? a.second > b.second : a.first < b.first); }); cout << ans.front().first << endl; }