結果

問題 No.3 ビットすごろく
ユーザー FpmpAmpmFpmpAmpm
提出日時 2016-10-22 17:12:29
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 1,214 bytes
コンパイル時間 2,198 ms
コンパイル使用メモリ 74,400 KB
実行使用メモリ 110,908 KB
最終ジャッジ日時 2024-11-23 17:07:41
合計ジャッジ時間 43,039 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
46,568 KB
testcase_01 AC 123 ms
86,400 KB
testcase_02 AC 125 ms
47,028 KB
testcase_03 TLE -
testcase_04 AC 127 ms
86,452 KB
testcase_05 TLE -
testcase_06 AC 116 ms
46,808 KB
testcase_07 AC 128 ms
54,296 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 AC 130 ms
41,628 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 129 ms
41,308 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 130 ms
41,416 KB
testcase_22 AC 129 ms
41,684 KB
testcase_23 AC 128 ms
41,380 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 113 ms
41,092 KB
testcase_27 WA -
testcase_28 TLE -
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 124 ms
41,708 KB
testcase_32 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

/* package whatever; // don't place package name! */

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;
    	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++;
    			}
    		}
    		//System.out.println("distance:" + distance);
    		//get target
    		if (N < m + distance) {
    			target = m - distance;
    			// 以前同じmで戻っている
    			if (m == muripo) {
    				System.out.println(-1);
    				return;
    			}
    			muripo = m;
    		} else {
    			target = m + distance;
    		}
    		//System.out.println("target:" + target);
    		//move
    		m = target;
    		//System.out.println("m:" + m);
    	}
    	System.out.println(count);
	}
}
0