結果

問題 No.3 ビットすごろく
ユーザー n_gojon_gojo
提出日時 2020-04-10 16:28:47
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 717 bytes
コンパイル時間 3,355 ms
コンパイル使用メモリ 74,108 KB
実行使用メモリ 41,636 KB
最終ジャッジ日時 2024-09-15 04:39:26
合計ジャッジ時間 8,681 ms
ジャッジサーバーID
(参考情報)
judge1 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
39,980 KB
testcase_01 AC 118 ms
40,364 KB
testcase_02 AC 116 ms
40,184 KB
testcase_03 AC 134 ms
41,412 KB
testcase_04 AC 131 ms
41,636 KB
testcase_05 AC 135 ms
41,356 KB
testcase_06 AC 133 ms
41,300 KB
testcase_07 AC 134 ms
41,240 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 119 ms
40,260 KB
testcase_13 AC 121 ms
40,176 KB
testcase_14 AC 135 ms
41,252 KB
testcase_15 AC 136 ms
41,516 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 118 ms
40,044 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 120 ms
40,348 KB
testcase_22 AC 139 ms
41,368 KB
testcase_23 AC 130 ms
41,308 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 128 ms
41,104 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 130 ms
41,528 KB
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) {
                bid -= s*2;
            }
            ans++;
            if (ans == 10000) {
                ans = -1;
                break;
            }
        }

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