結果

問題 No.3 ビットすごろく
ユーザー DAZYDAZY
提出日時 2017-05-18 16:37:18
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 741 bytes
コンパイル時間 6,907 ms
コンパイル使用メモリ 77,640 KB
実行使用メモリ 41,512 KB
最終ジャッジ日時 2024-09-18 19:09:30
合計ジャッジ時間 12,259 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 139 ms
41,280 KB
testcase_01 AC 144 ms
41,512 KB
testcase_02 AC 139 ms
41,468 KB
testcase_03 AC 143 ms
41,276 KB
testcase_04 AC 139 ms
41,104 KB
testcase_05 AC 146 ms
41,316 KB
testcase_06 AC 139 ms
41,040 KB
testcase_07 AC 137 ms
41,216 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 138 ms
41,160 KB
testcase_13 AC 137 ms
41,192 KB
testcase_14 AC 143 ms
41,276 KB
testcase_15 AC 142 ms
41,468 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 145 ms
41,220 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 136 ms
41,252 KB
testcase_22 AC 141 ms
41,136 KB
testcase_23 AC 148 ms
40,984 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 123 ms
41,132 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 141 ms
41,268 KB
testcase_32 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class No3 {
    public static void main (String[] args) {
        Scanner scan = new Scanner(System.in);
        int N = scan.nextInt();
        int tmp = 1;
        int ans = 1;
        int mov;
        int loc = 1;

        while (true) {
            if (loc == N) break;
            mov = 0;
            while (tmp != 0) {
                mov += tmp & 1;
                tmp = tmp >> 1;
            }
            //System.out.println(ans);
            if (ans > N) {
                ans = -1;
                break;
            } else if (loc + mov < N + 1) loc += mov;
            else if (loc - mov > 0) loc -= mov;
            tmp = loc;
            ans ++;
        }
        System.out.print(ans);
    }
}
0