結果

問題 No.3 ビットすごろく
ユーザー holegumaholeguma
提出日時 2015-07-26 02:13:02
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 781 bytes
コンパイル時間 2,376 ms
コンパイル使用メモリ 78,040 KB
実行使用メモリ 37,448 KB
最終ジャッジ日時 2024-07-08 13:57:24
合計ジャッジ時間 4,953 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
37,004 KB
testcase_01 AC 52 ms
37,172 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 51 ms
37,248 KB
testcase_05 WA -
testcase_06 AC 55 ms
37,036 KB
testcase_07 AC 53 ms
36,812 KB
testcase_08 AC 54 ms
37,036 KB
testcase_09 AC 56 ms
36,796 KB
testcase_10 WA -
testcase_11 AC 55 ms
37,224 KB
testcase_12 AC 53 ms
37,276 KB
testcase_13 WA -
testcase_14 AC 55 ms
37,192 KB
testcase_15 AC 53 ms
37,096 KB
testcase_16 AC 52 ms
37,152 KB
testcase_17 AC 52 ms
36,900 KB
testcase_18 AC 52 ms
37,132 KB
testcase_19 AC 52 ms
36,940 KB
testcase_20 AC 52 ms
37,048 KB
testcase_21 AC 54 ms
37,132 KB
testcase_22 WA -
testcase_23 AC 52 ms
37,076 KB
testcase_24 AC 52 ms
36,804 KB
testcase_25 AC 54 ms
36,788 KB
testcase_26 AC 54 ms
36,920 KB
testcase_27 AC 53 ms
36,840 KB
testcase_28 WA -
testcase_29 AC 55 ms
37,188 KB
testcase_30 AC 53 ms
37,448 KB
testcase_31 WA -
testcase_32 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.Arrays;
import java.util.Deque;
import java.util.ArrayDeque;

class Main{
final static int INF=Integer.MAX_VALUE/2;
public static void main(String[] args) throws IOException{
BufferedReader br=new BufferedReader(new InputStreamReader(System.in));
String line="";
int[] map=new int[10001];
Arrays.fill(map,INF);
Deque<Integer> que=new ArrayDeque<Integer>();
map[1]=1;
que.offerLast(1);
while(que.peekFirst()!=null){
int n=que.pollFirst();
int noo=Integer.bitCount(n);
if(n-noo>=1&&map[n-noo]>map[n]+1){
map[n-noo]=map[n]+1;
que.offerLast(n-noo);
}
if(n+noo<=10000&&map[n+noo]>map[n]+1){
map[n+noo]=map[n]+1;
que.offerLast(n+noo);
}
}
while((line=br.readLine())!=null){
int t=Integer.parseInt(line);
System.out.println(map[t]==INF?-1:map[t]);
}
}
}
0