結果

問題 No.376 立方体のN等分 (2)
ユーザー imulanimulan
提出日時 2019-04-15 00:34:41
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 3,001 ms / 5,000 ms
コード長 1,109 bytes
コンパイル時間 1,635 ms
コンパイル使用メモリ 174,248 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-09-19 19:49:27
合計ジャッジ時間 18,998 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 86 ms
6,944 KB
testcase_03 AC 85 ms
6,944 KB
testcase_04 AC 92 ms
6,944 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 1 ms
6,944 KB
testcase_08 AC 5 ms
6,940 KB
testcase_09 AC 21 ms
6,940 KB
testcase_10 AC 189 ms
6,944 KB
testcase_11 AC 44 ms
6,944 KB
testcase_12 AC 60 ms
6,944 KB
testcase_13 AC 59 ms
6,940 KB
testcase_14 AC 69 ms
6,940 KB
testcase_15 AC 74 ms
6,944 KB
testcase_16 AC 2,630 ms
6,940 KB
testcase_17 AC 82 ms
6,944 KB
testcase_18 AC 84 ms
6,940 KB
testcase_19 AC 87 ms
6,940 KB
testcase_20 AC 90 ms
6,940 KB
testcase_21 AC 2,644 ms
6,940 KB
testcase_22 AC 92 ms
6,940 KB
testcase_23 AC 2,724 ms
6,940 KB
testcase_24 AC 2,651 ms
6,940 KB
testcase_25 AC 95 ms
6,944 KB
testcase_26 AC 3,001 ms
6,940 KB
testcase_27 AC 97 ms
6,940 KB
testcase_28 AC 98 ms
6,940 KB
testcase_29 AC 99 ms
6,940 KB
testcase_30 AC 98 ms
6,940 KB
testcase_31 AC 97 ms
6,940 KB
testcase_32 AC 96 ms
6,940 KB
testcase_33 AC 98 ms
6,940 KB
testcase_34 AC 101 ms
6,940 KB
testcase_35 AC 99 ms
6,944 KB
testcase_36 AC 100 ms
6,944 KB
testcase_37 AC 97 ms
6,940 KB
testcase_38 AC 100 ms
6,940 KB
testcase_39 AC 98 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
#define rep(i,n) for(int (i)=0;(i)<(int)(n);++(i))
#define all(x) (x).begin(),(x).end()
#define pb push_back
#define fi first
#define se second
#define dbg(x) cout<<#x" = "<<((x))<<endl
template<class T,class U> ostream& operator<<(ostream& o, const pair<T,U> &p){o<<"("<<p.fi<<","<<p.se<<")";return o;}
template<class T> ostream& operator<<(ostream& o, const vector<T> &v){o<<"[";for(T t:v){o<<t<<",";}o<<"]";return o;}

const ll INF = LLONG_MAX/3;

vector<ll> divisor(ll n){
    vector<ll> ret;
    for(ll i=1; i*i<=n; ++i){
        if(n%i == 0){
            ret.pb(i);
            if(n/i != i) ret.pb(n/i);
        }
    }
    sort(all(ret));
    return ret;
}

int main(){
    ll n;
    cin >>n;

    vector<ll> d = divisor(n);
    int D = d.size();

    ll ans = INF;
    rep(i,D){
        ll a = d[i];

        ll x = n/a;
        rep(j,D){
            ll b = d[j];
            if(x%b != 0) continue;
            ll c = x/b;

            ans = min(ans, a+b+c-3);
        }
    }

    cout << ans << " " << n-1 << "\n";
    return 0;
}
0