結果

問題 No.3 ビットすごろく
ユーザー FpmpAmpmFpmpAmpm
提出日時 2016-10-22 18:00:35
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,026 bytes
コンパイル時間 2,642 ms
コンパイル使用メモリ 80,664 KB
実行使用メモリ 41,668 KB
最終ジャッジ日時 2024-05-02 22:15:11
合計ジャッジ時間 8,368 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
41,012 KB
testcase_01 AC 133 ms
41,044 KB
testcase_02 AC 116 ms
40,304 KB
testcase_03 AC 133 ms
41,300 KB
testcase_04 AC 131 ms
41,148 KB
testcase_05 AC 133 ms
41,236 KB
testcase_06 AC 138 ms
41,236 KB
testcase_07 AC 133 ms
40,952 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 123 ms
40,364 KB
testcase_13 AC 137 ms
40,968 KB
testcase_14 AC 133 ms
41,228 KB
testcase_15 AC 141 ms
41,540 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 136 ms
41,628 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 132 ms
41,236 KB
testcase_22 AC 136 ms
41,176 KB
testcase_23 AC 141 ms
41,168 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 133 ms
41,376 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 135 ms
41,256 KB
testcase_32 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.lang.*;
import java.io.*;

/* Name of the class has to be "Main" only if the class is public. */
class Ideone
{
	public static void main (String[] args) throws java.lang.Exception
	{
		// your code goes here
		Scanner sc = new Scanner(System.in);
    	int N = sc.nextInt();
    	int m = 1;
    	int distance = 0;
    	int target;
    	Map<Integer,Integer> muripo = new HashMap<>();
    	int count = 1;
    	while (m != N) {
    		count++;
    		distance = 0;
    		
    		char[] c = Integer.toBinaryString(m).toCharArray();
    		for (int i = 0;i < c.length;i++) {
    			if (c[i] == '1') {
    				distance++;
    			}
    		}
    		//get target
    		if (N < m + distance) {
    			target = m - distance;
    			// 以前同じmで戻っている
    			if (muripo.containsKey(m)) {
    				System.out.println(-1);
    				return;
    			}
    			muripo.put(m, m);
    		} else {
    			target = m + distance;
    		}
    		//move
    		m = target;
    	}
    	System.out.println(count);
	}
}
0