結果

問題 No.638 Sum of "not power of 2"
ユーザー Mcpu3Mcpu3
提出日時 2018-09-04 21:14:21
言語 C
(gcc 12.3.0)
結果
WA  
実行時間 -
コード長 288 bytes
コンパイル時間 171 ms
コンパイル使用メモリ 30,976 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-04-23 17:17:56
合計ジャッジ時間 841 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 0 ms
5,376 KB
testcase_05 WA -
testcase_06 AC 0 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 0 ms
5,376 KB
testcase_09 AC 1 ms
5,376 KB
testcase_10 AC 1 ms
5,376 KB
testcase_11 AC 1 ms
5,376 KB
testcase_12 AC 1 ms
5,376 KB
testcase_13 AC 1 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <math.h>

int main(void)
{
    long n,i;
    scanf("%ld",&n);
    if(n-3>2){
        for(i=2;i<60;++i)if((long)pow(2,i)==n-3)break;
        if(i==60)printf("3 %ld",n-3);
        else printf("5 %ld",n-5);
    }
    else puts("-1");
    return 0;
}
0