結果

問題 No.376 立方体のN等分 (2)
ユーザー Lay_ecLay_ec
提出日時 2016-06-05 00:07:37
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 514 bytes
コンパイル時間 631 ms
コンパイル使用メモリ 68,224 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-10-08 13:02:18
合計ジャッジ時間 36,167 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 412 ms
5,248 KB
testcase_03 AC 800 ms
5,248 KB
testcase_04 AC 548 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 12 ms
5,248 KB
testcase_09 AC 53 ms
5,248 KB
testcase_10 AC 697 ms
5,248 KB
testcase_11 AC 158 ms
5,248 KB
testcase_12 AC 338 ms
5,248 KB
testcase_13 AC 169 ms
5,248 KB
testcase_14 AC 202 ms
5,248 KB
testcase_15 AC 160 ms
5,248 KB
testcase_16 AC 4,550 ms
5,248 KB
testcase_17 AC 356 ms
5,248 KB
testcase_18 AC 170 ms
5,248 KB
testcase_19 AC 640 ms
5,248 KB
testcase_20 AC 212 ms
5,248 KB
testcase_21 AC 4,911 ms
5,248 KB
testcase_22 AC 188 ms
5,248 KB
testcase_23 TLE -
testcase_24 TLE -
testcase_25 AC 195 ms
5,248 KB
testcase_26 TLE -
testcase_27 AC 256 ms
5,248 KB
testcase_28 AC 194 ms
5,248 KB
testcase_29 AC 358 ms
5,248 KB
testcase_30 AC 267 ms
5,248 KB
testcase_31 AC 198 ms
5,248 KB
testcase_32 AC 257 ms
5,248 KB
testcase_33 AC 189 ms
5,248 KB
testcase_34 AC 191 ms
5,248 KB
testcase_35 AC 306 ms
5,248 KB
testcase_36 AC 190 ms
5,248 KB
testcase_37 AC 196 ms
5,248 KB
testcase_38 AC 324 ms
5,248 KB
testcase_39 AC 352 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <cmath>


int main()
{
    
    long long n;
    scanf("%lld",&n);
    long long Tmin=2*n;
    
    long long a=sqrt(n)+2LL,b,m,M;
    
    while(a--){
        if(a==0) break;
        if(n%a) continue;
        m=n/a;
        b=sqrt(m)+2;
        while(b--){
			//printf("%lld\n",b);
            if(b==a-1 || b==0) break;
            if(m%b==0 && Tmin>a+b+m/b) Tmin=a+b+m/b;
        }
    }
    printf("%lld %lld\n",Tmin-3,n-1);
    //cout<<Tmin-3<<" "<<n-1<<endl;

    
    return 0;
}
0