結果

問題 No.376 立方体のN等分 (2)
ユーザー recososorecososo
提出日時 2022-06-28 21:43:58
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
(最新)
WA  
(最初)
実行時間 -
コード長 535 bytes
コンパイル時間 2,133 ms
コンパイル使用メモリ 204,380 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-11-21 16:10:29
合計ジャッジ時間 34,131 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 352 ms
6,820 KB
testcase_03 AC 755 ms
6,816 KB
testcase_04 AC 501 ms
6,816 KB
testcase_05 AC 2 ms
6,820 KB
testcase_06 AC 2 ms
6,820 KB
testcase_07 AC 2 ms
6,820 KB
testcase_08 AC 10 ms
6,820 KB
testcase_09 AC 36 ms
6,820 KB
testcase_10 AC 653 ms
6,820 KB
testcase_11 AC 121 ms
6,816 KB
testcase_12 AC 301 ms
6,820 KB
testcase_13 AC 115 ms
6,820 KB
testcase_14 AC 148 ms
6,820 KB
testcase_15 AC 87 ms
6,816 KB
testcase_16 AC 4,185 ms
6,816 KB
testcase_17 AC 296 ms
6,816 KB
testcase_18 AC 99 ms
6,816 KB
testcase_19 AC 598 ms
6,816 KB
testcase_20 AC 129 ms
6,816 KB
testcase_21 AC 4,683 ms
6,816 KB
testcase_22 AC 105 ms
6,820 KB
testcase_23 AC 4,937 ms
6,816 KB
testcase_24 AC 4,970 ms
6,820 KB
testcase_25 AC 106 ms
6,816 KB
testcase_26 TLE -
testcase_27 WA -
testcase_28 AC 106 ms
6,816 KB
testcase_29 AC 284 ms
6,816 KB
testcase_30 AC 183 ms
6,816 KB
testcase_31 AC 106 ms
6,816 KB
testcase_32 AC 179 ms
6,816 KB
testcase_33 AC 106 ms
6,820 KB
testcase_34 AC 105 ms
6,816 KB
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 AC 278 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
int main(){
    ll n;cin >> n;
    vector<ll> v;
    for(ll i=1;i*i*i<=n;i++){
        if(n%i==0){
            v.push_back(i);
            if(i*i!=n){
                v.push_back(n/i);
            }
        }
    }
    ll p=1e12;
    int t=v.size();
    for(int i=0;i<t;i++){
        ll num=n/v[i];
        for(ll j=1;j*j<=num;j++){
            if(num%j==0){
                p=min(p,v[i]+j+num/j-3);
            }
        }
    }
    cout << p << " " << n-1 << endl;
}
0