結果

問題 No.376 立方体のN等分 (2)
ユーザー はまやんはまやんはまやんはまやん
提出日時 2018-02-05 11:25:00
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
TLE  
実行時間 -
コード長 1,888 bytes
コンパイル時間 1,434 ms
コンパイル使用メモリ 172,920 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-06 19:46:56
合計ジャッジ時間 36,737 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 403 ms
6,940 KB
testcase_03 AC 775 ms
6,940 KB
testcase_04 AC 538 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 12 ms
6,944 KB
testcase_09 AC 51 ms
6,944 KB
testcase_10 AC 719 ms
6,940 KB
testcase_11 AC 149 ms
6,944 KB
testcase_12 AC 339 ms
6,944 KB
testcase_13 AC 161 ms
6,940 KB
testcase_14 AC 200 ms
6,944 KB
testcase_15 AC 147 ms
6,944 KB
testcase_16 AC 4,877 ms
6,940 KB
testcase_17 AC 346 ms
6,940 KB
testcase_18 AC 170 ms
6,940 KB
testcase_19 AC 615 ms
6,944 KB
testcase_20 AC 200 ms
6,944 KB
testcase_21 TLE -
testcase_22 AC 179 ms
6,944 KB
testcase_23 TLE -
testcase_24 TLE -
testcase_25 AC 182 ms
6,940 KB
testcase_26 TLE -
testcase_27 AC 248 ms
6,944 KB
testcase_28 AC 194 ms
6,944 KB
testcase_29 AC 360 ms
6,944 KB
testcase_30 AC 258 ms
6,940 KB
testcase_31 AC 185 ms
6,940 KB
testcase_32 AC 251 ms
6,944 KB
testcase_33 AC 189 ms
6,944 KB
testcase_34 AC 184 ms
6,944 KB
testcase_35 AC 294 ms
6,944 KB
testcase_36 AC 185 ms
6,944 KB
testcase_37 AC 187 ms
6,944 KB
testcase_38 AC 312 ms
6,940 KB
testcase_39 AC 381 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
#define rep(i,a,b) for(int i=a;i<b;i++)
#define rrep(i,a,b) for(int i=a;i>=b;i--)
#define fore(i,a) for(auto &i:a)
#define all(x) (x).begin(),(x).end()
#pragma GCC optimize ("-O3")
using namespace std; void _main(); int main() { cin.tie(0); ios::sync_with_stdio(false); _main(); }
typedef long long ll; const int inf = INT_MAX / 2; const ll infl = 1LL << 60;
template<class T>bool chmax(T &a, const T &b) { if (a<b) { a = b; return 1; } return 0; }
template<class T>bool chmin(T &a, const T &b) { if (b<a) { a = b; return 1; } return 0; }
//---------------------------------------------------------------------------------------------------
vector<ll> enumdiv(ll n) {
    vector<ll> S;
    for (ll i = 1; i*i <= n; i++) if (n%i == 0) { S.push_back(i); if (i*i != n) S.push_back(n / i); }
    sort(S.begin(), S.end());
    return S;
}
/*---------------------------------------------------------------------------------------------------
            ∧_∧  
      ∧_∧  (´<_` )  Welcome to My Coding Space!
     ( ´_ゝ`) /  ⌒i     
    /   \     | |     
    /   / ̄ ̄ ̄ ̄/  |  
  __(__ニつ/     _/ .| .|____  
     \/____/ (u ⊃  
---------------------------------------------------------------------------------------------------*/






ll N;
//---------------------------------------------------------------------------------------------------
void _main() {
    cin >> N;
    ll tmin = infl, tmax = -infl;
    
    auto dv = enumdiv(N);
    fore(a, dv) {
        ll rest = N / a;
        auto dv2 = enumdiv(rest);
        fore(b, dv2) {
            ll c = rest / b;

            chmin(tmin, a + b + c - 3);
            chmax(tmax, a + b + c - 3);
        }
    }

    printf("%lld %lld\n", tmin, tmax);
}
0