結果

問題 No.376 立方体のN等分 (2)
ユーザー Lay_ecLay_ec
提出日時 2016-06-05 00:02:15
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 4,522 ms / 5,000 ms
コード長 456 bytes
コンパイル時間 598 ms
コンパイル使用メモリ 68,432 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-10-08 12:56:03
合計ジャッジ時間 31,186 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 413 ms
5,248 KB
testcase_03 AC 784 ms
5,248 KB
testcase_04 AC 554 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 13 ms
5,248 KB
testcase_09 AC 51 ms
5,248 KB
testcase_10 AC 594 ms
5,248 KB
testcase_11 AC 150 ms
5,248 KB
testcase_12 AC 328 ms
5,248 KB
testcase_13 AC 161 ms
5,248 KB
testcase_14 AC 206 ms
5,248 KB
testcase_15 AC 160 ms
5,248 KB
testcase_16 AC 3,639 ms
5,248 KB
testcase_17 AC 343 ms
5,248 KB
testcase_18 AC 172 ms
5,248 KB
testcase_19 AC 623 ms
5,248 KB
testcase_20 AC 204 ms
5,248 KB
testcase_21 AC 4,117 ms
5,248 KB
testcase_22 AC 187 ms
5,248 KB
testcase_23 AC 4,334 ms
5,248 KB
testcase_24 AC 4,300 ms
5,248 KB
testcase_25 AC 190 ms
5,248 KB
testcase_26 AC 4,522 ms
5,248 KB
testcase_27 AC 250 ms
5,248 KB
testcase_28 AC 188 ms
5,248 KB
testcase_29 AC 344 ms
5,248 KB
testcase_30 AC 255 ms
5,248 KB
testcase_31 AC 185 ms
5,248 KB
testcase_32 AC 252 ms
5,248 KB
testcase_33 AC 194 ms
5,248 KB
testcase_34 AC 185 ms
5,248 KB
testcase_35 AC 296 ms
5,248 KB
testcase_36 AC 188 ms
5,248 KB
testcase_37 AC 193 ms
5,248 KB
testcase_38 AC 324 ms
5,248 KB
testcase_39 AC 343 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <cmath>
int main()
{
    
    long long n;
    scanf("%lld",&n);
    long long Tmin=2*n;
    
    long long N=sqrt(n);
    N++;
    long long a,b,m,M;
    for(a=1;a<=N;++a){
        if(n%a) continue;
        m=n/a;
        M=sqrt(m)+1;
        for(b=a;b<=M;++b){
            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