結果

問題 No.3 ビットすごろく
ユーザー mustonmuston
提出日時 2016-05-16 15:42:48
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,044 bytes
コンパイル時間 1,799 ms
コンパイル使用メモリ 74,028 KB
実行使用メモリ 41,528 KB
最終ジャッジ日時 2024-10-06 04:33:12
合計ジャッジ時間 6,293 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 111 ms
41,308 KB
testcase_01 AC 117 ms
41,416 KB
testcase_02 AC 116 ms
41,472 KB
testcase_03 AC 117 ms
41,128 KB
testcase_04 AC 114 ms
41,300 KB
testcase_05 AC 105 ms
40,212 KB
testcase_06 AC 115 ms
41,316 KB
testcase_07 AC 118 ms
41,528 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 107 ms
41,260 KB
testcase_13 AC 107 ms
41,224 KB
testcase_14 AC 107 ms
41,008 KB
testcase_15 AC 106 ms
40,816 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 98 ms
40,248 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 111 ms
41,088 KB
testcase_22 AC 106 ms
41,256 KB
testcase_23 AC 105 ms
40,616 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 112 ms
41,360 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 98 ms
39,984 KB
testcase_32 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;
/*yukicoder No.3 ビットすごろく*/
class No3{
  public static void main(String[] args){
    Scanner scan = new Scanner(System.in);
    //ゴールまでのマスnを入力
    int n = scan.nextInt();
    int[] log = new int[n];
    int here = 1;  //今のマスの位置
    int move = 0;  //移動する数(マス)
    int count = 1;  //移動した回数
    while(n!=here){
      count += 1;
      move = Integer.bitCount(here);//今のマス数を2進数にしたときの1の数
      if(n<here+move){
        //ゴールマスを超えるときはその数だけ戻る
        here-=move;
      }else{
        here+=move;
      }
      if(log[here-1] == 1){
        //同じ場所に来たらループから抜ける
        count= -1;
        break;
      }else{
        log[here-1] = 1;
      }
      //ゴールマスに止まったらループから抜ける
      if(log[n-1] == 1)
        break;
    }
    //ゴールまでの移動回数を出力
    System.out.println(count);
  }
}
0