結果
問題 | No.811 約数の個数の最大化 |
ユーザー | ldsyb |
提出日時 | 2019-04-13 12:56:49 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 813 bytes |
コンパイル時間 | 1,651 ms |
コンパイル使用メモリ | 173,512 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-09-15 08:27:09 |
合計ジャッジ時間 | 14,420 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | TLE | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 33 ms
5,376 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | TLE | - |
testcase_12 | WA | - |
testcase_13 | TLE | - |
testcase_14 | TLE | - |
ソースコード
#include <bits/stdc++.h>using namespace std;int main() {int n, k;cin >> n >> k;map<int, int> mp;for (int i = 2, j = n; j != 1; i++) {while (j % i == 0) {mp[i]++;j /= i;}}int num = 0, ans = 0;for (int i = 2; i < n; i++) {map<int, int> tmp;for (int j = 2, k = i; k != 1; j++) {while (k % j == 0) {tmp[j]++;k /= j;}}int puni = 0, muni = 0;for (auto &p : tmp) {muni += p.second;}for (auto &p : mp) {puni += min(p.second, tmp[p.first]);}if (k <= puni && num < muni) {num = muni;ans = i;}}cout << ans << endl;return 0;}