結果

問題 No.3 ビットすごろく
ユーザー n_gojon_gojo
提出日時 2020-04-10 16:12:49
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 643 bytes
コンパイル時間 3,489 ms
コンパイル使用メモリ 74,600 KB
実行使用メモリ 41,524 KB
最終ジャッジ日時 2024-09-15 04:15:23
合計ジャッジ時間 8,921 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
41,152 KB
testcase_01 WA -
testcase_02 AC 130 ms
41,208 KB
testcase_03 AC 129 ms
41,184 KB
testcase_04 WA -
testcase_05 AC 132 ms
40,992 KB
testcase_06 AC 128 ms
41,024 KB
testcase_07 AC 128 ms
41,176 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 131 ms
41,352 KB
testcase_13 AC 130 ms
41,112 KB
testcase_14 AC 128 ms
40,996 KB
testcase_15 AC 127 ms
41,132 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 128 ms
40,952 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 131 ms
41,304 KB
testcase_22 AC 130 ms
41,336 KB
testcase_23 AC 129 ms
41,180 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 131 ms
41,136 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class No3 {
    public static void main(String[] args) {
        // 標準入力から読み込む際に、Scannerオブジェクトを使う。
        Scanner sc = new Scanner(System.in);

        int n = sc.nextInt();
        int ans = 1;
        int bid = 1;
        while (bid != n) {
            int i = bid;
            int s = 0;
            while (i > 0) {
                s += i%2;
                i/=2;
            }
            bid+=s;
            if (bid > n) {
                ans = -1;
                break;
            }
            ans++;
        }

        System.out.println(ans);
    }
}
0