結果

問題 No.376 立方体のN等分 (2)
ユーザー Lay_ecLay_ec
提出日時 2016-06-05 00:04:17
言語 C90
(gcc 11.4.0)
結果
RE  
実行時間 -
コード長 479 bytes
コンパイル時間 407 ms
コンパイル使用メモリ 23,808 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-10-08 12:57:44
合計ジャッジ時間 7,527 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 AC 1 ms
5,248 KB
testcase_02 RE -
testcase_03 RE -
testcase_04 RE -
testcase_05 AC 1 ms
5,248 KB
testcase_06 AC 1 ms
5,248 KB
testcase_07 AC 1 ms
5,248 KB
testcase_08 AC 13 ms
5,248 KB
testcase_09 RE -
testcase_10 RE -
testcase_11 AC 168 ms
5,248 KB
testcase_12 RE -
testcase_13 RE -
testcase_14 AC 225 ms
5,248 KB
testcase_15 AC 165 ms
5,248 KB
testcase_16 RE -
testcase_17 RE -
testcase_18 AC 190 ms
5,248 KB
testcase_19 RE -
testcase_20 AC 222 ms
5,248 KB
testcase_21 RE -
testcase_22 RE -
testcase_23 RE -
testcase_24 RE -
testcase_25 RE -
testcase_26 RE -
testcase_27 AC 288 ms
5,248 KB
testcase_28 AC 208 ms
5,248 KB
testcase_29 AC 391 ms
5,248 KB
testcase_30 RE -
testcase_31 RE -
testcase_32 RE -
testcase_33 RE -
testcase_34 RE -
testcase_35 AC 342 ms
5,248 KB
testcase_36 AC 210 ms
5,248 KB
testcase_37 AC 209 ms
5,248 KB
testcase_38 AC 352 ms
5,248 KB
testcase_39 RE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.c: In function ‘main’:
main.c:7:5: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    7 |     scanf("%lld",&n);
      |     ^~~~~~~~~~~~~~~~

ソースコード

diff #

#include <stdio.h>
#include <math.h>
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--){
            if(b==a-1) 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