結果

問題 No.376 立方体のN等分 (2)
ユーザー xuzijian629xuzijian629
提出日時 2018-10-31 20:43:51
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
(最新)
TLE  
(最初)
実行時間 4,846 ms / 5,000 ms
コード長 541 bytes
コンパイル時間 2,358 ms
コンパイル使用メモリ 200,480 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-11-19 13:17:30
合計ジャッジ時間 32,238 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 329 ms
6,820 KB
testcase_03 AC 719 ms
6,820 KB
testcase_04 AC 472 ms
6,820 KB
testcase_05 AC 2 ms
6,820 KB
testcase_06 AC 2 ms
6,816 KB
testcase_07 AC 2 ms
6,816 KB
testcase_08 AC 9 ms
6,820 KB
testcase_09 AC 33 ms
6,816 KB
testcase_10 AC 607 ms
6,816 KB
testcase_11 AC 114 ms
6,816 KB
testcase_12 AC 282 ms
6,820 KB
testcase_13 AC 110 ms
6,820 KB
testcase_14 AC 141 ms
6,816 KB
testcase_15 AC 82 ms
6,816 KB
testcase_16 AC 3,897 ms
6,820 KB
testcase_17 AC 277 ms
6,816 KB
testcase_18 AC 91 ms
6,820 KB
testcase_19 AC 556 ms
6,816 KB
testcase_20 AC 122 ms
6,816 KB
testcase_21 AC 4,362 ms
6,816 KB
testcase_22 AC 101 ms
6,820 KB
testcase_23 AC 4,749 ms
6,820 KB
testcase_24 AC 4,710 ms
6,816 KB
testcase_25 AC 99 ms
6,816 KB
testcase_26 AC 4,846 ms
6,816 KB
testcase_27 AC 165 ms
6,816 KB
testcase_28 AC 98 ms
6,816 KB
testcase_29 AC 276 ms
6,820 KB
testcase_30 AC 174 ms
6,816 KB
testcase_31 AC 98 ms
6,816 KB
testcase_32 AC 168 ms
6,816 KB
testcase_33 AC 99 ms
6,816 KB
testcase_34 AC 98 ms
6,820 KB
testcase_35 AC 218 ms
6,820 KB
testcase_36 AC 100 ms
6,816 KB
testcase_37 AC 101 ms
6,816 KB
testcase_38 AC 227 ms
6,820 KB
testcase_39 AC 258 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using i64 = int64_t;
using vi = vector<i64>;
using vvi = vector<vi>;

int main() {
    long long n;
    cin >> n;
    
    long long mi = 1e18;
    for (long long i = 1; i * i * i <= n; i++) {
        if (n % i == 0) {
            long long a = n / i;
            for (long long j = 1; j * j <= a; j++) {
                if (a % j == 0) {
                    mi = min(mi, (i - 1) + (j - 1) + (a / j - 1));
                }
            }
        }
    }
    cout << mi << " " << n - 1 << endl;
}
0