結果

問題 No.680 作れる数
ユーザー htensaihtensai
提出日時 2020-01-15 20:50:28
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 624 bytes
コンパイル時間 2,102 ms
コンパイル使用メモリ 74,196 KB
実行使用メモリ 54,176 KB
最終ジャッジ日時 2024-06-11 19:45:47
合計ジャッジ時間 15,533 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 103 ms
52,716 KB
testcase_01 AC 99 ms
52,912 KB
testcase_02 AC 119 ms
54,052 KB
testcase_03 AC 109 ms
53,064 KB
testcase_04 AC 115 ms
54,176 KB
testcase_05 AC 106 ms
52,932 KB
testcase_06 AC 112 ms
54,020 KB
testcase_07 AC 106 ms
53,160 KB
testcase_08 AC 106 ms
53,308 KB
testcase_09 AC 287 ms
52,892 KB
testcase_10 WA -
testcase_11 AC 102 ms
53,144 KB
testcase_12 AC 1,426 ms
52,936 KB
testcase_13 AC 754 ms
53,048 KB
testcase_14 AC 1,290 ms
52,968 KB
testcase_15 AC 1,142 ms
53,284 KB
testcase_16 AC 999 ms
53,052 KB
testcase_17 AC 1,564 ms
53,796 KB
testcase_18 AC 1,718 ms
53,024 KB
testcase_19 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    static int n;
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        n = sc.nextInt();
        if (calc(0, 1)) {
            System.out.println("YES");
        } else {
            System.out.println("NO");
        }
    }
    
    static boolean calc(int s, int t) {
        s += t;
        if (s == n) {
            return true;
        } else if (s > n) {
            return false;
        }
        t *= 2;
        if (calc(s, t)) {
            return true;
        } else {
            return calc(s, t + 1);
        }
    }
    
}
0