結果

問題 No.3 ビットすごろく
ユーザー FpmpAmpmFpmpAmpm
提出日時 2016-10-22 17:42:06
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 1,432 bytes
コンパイル時間 1,984 ms
コンパイル使用メモリ 74,364 KB
実行使用メモリ 63,048 KB
最終ジャッジ日時 2024-05-02 22:10:36
合計ジャッジ時間 9,028 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
41,364 KB
testcase_01 AC 117 ms
39,924 KB
testcase_02 AC 104 ms
41,088 KB
testcase_03 TLE -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;



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();
		//long start = System.currentTimeMillis();
    	//無理か判断
    	int m = 1;
    	int distance = 0;
    	int target;
    	int muripo = 0;
    	int count = 1;
    	while (m != N) {
    		count++;
    		distance = 0;
    		//System.out.println("----count:" + count);
    		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 (m == muripo) {
    				System.out.println(-1);
    				//long end = System.currentTimeMillis();
    				//System.out.println((end - start)  + "ms");
    				return;
    			}
    			if (0 == muripo) {
    				muripo = m;
    			}
    		} else {
    			target = m + distance;
    		}
    		//System.out.println("target:" + target);
    		//move
    		m = target;
    		//System.out.println("m:" + m);
    	}
    	//long end = System.currentTimeMillis();
    	//System.out.println((end - start)  + "ms");
    	System.out.println(count);
	}
}
0