結果

問題 No.376 立方体のN等分 (2)
ユーザー ikunhorroikunhorro
提出日時 2024-10-14 19:51:22
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 544 ms / 5,000 ms
コード長 1,238 bytes
コンパイル時間 1,246 ms
コンパイル使用メモリ 112,444 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-10-14 19:51:32
合計ジャッジ時間 7,059 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 82 ms
5,248 KB
testcase_03 AC 79 ms
5,248 KB
testcase_04 AC 95 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 6 ms
5,248 KB
testcase_09 AC 21 ms
5,248 KB
testcase_10 AC 56 ms
5,248 KB
testcase_11 AC 44 ms
5,248 KB
testcase_12 AC 58 ms
5,248 KB
testcase_13 AC 62 ms
5,248 KB
testcase_14 AC 67 ms
5,248 KB
testcase_15 AC 77 ms
5,248 KB
testcase_16 AC 479 ms
5,248 KB
testcase_17 AC 84 ms
5,248 KB
testcase_18 AC 87 ms
5,248 KB
testcase_19 AC 89 ms
5,248 KB
testcase_20 AC 91 ms
5,248 KB
testcase_21 AC 460 ms
5,248 KB
testcase_22 AC 93 ms
5,248 KB
testcase_23 AC 488 ms
5,248 KB
testcase_24 AC 464 ms
5,248 KB
testcase_25 AC 95 ms
5,248 KB
testcase_26 AC 544 ms
5,248 KB
testcase_27 AC 99 ms
5,248 KB
testcase_28 AC 98 ms
5,248 KB
testcase_29 AC 107 ms
5,248 KB
testcase_30 AC 97 ms
5,248 KB
testcase_31 AC 98 ms
5,248 KB
testcase_32 AC 95 ms
5,248 KB
testcase_33 AC 97 ms
5,248 KB
testcase_34 AC 99 ms
5,248 KB
testcase_35 AC 95 ms
5,248 KB
testcase_36 AC 98 ms
5,248 KB
testcase_37 AC 96 ms
5,248 KB
testcase_38 AC 105 ms
5,248 KB
testcase_39 AC 97 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <iomanip>
#include <cstring>
#include <string>
#include <algorithm>
#include <math.h>
#include <vector>
#include <stack>
#include <queue>
#include <set>
#include <map>
#include <unordered_set>
#include <unordered_map>
#include <random>

#define int long long

using namespace std;

inline void sol() {
    int n;
    cin >> n;
    vector<int> v;
    for (int i = 2; i * i <= n; i++) {
        if (n % i == 0) {
            v.push_back(i);
            if (i * i != n) {
                v.push_back(n / i);
            }
        }
    }
    sort(v.begin(), v.end());
    int sz = v.size();
    int ans = n - 1;
    for (int i = 0; i < sz; i++) {
        if (ans + 3 <= 2 * v[i]) break;
        for (int j = i; j < sz; j++) {
            int tmp = v[i] * v[j];
            if (tmp > n) break;
            if (n % tmp) continue;
            tmp = n / tmp;
            ans = min(ans, v[i] + v[j] + tmp - 3);
        }
    }
    cout << ans << " " << n - 1 << "\n";
}

signed main() {
#ifdef ikun
    freopen("1.in", "r", stdin);
    freopen("1.out", "w", stdout);
#endif
    ios::sync_with_stdio(0);
    cin.tie(0); cout.tie(0);
    // init();
    int T = 1;
    // cin >> T;
    while (T--) sol();
    return 0;
}
0