結果

問題 No.3 ビットすごろく
ユーザー katsumikatsumi
提出日時 2019-01-31 13:51:00
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 815 bytes
コンパイル時間 2,182 ms
コンパイル使用メモリ 75,176 KB
実行使用メモリ 108,200 KB
最終ジャッジ日時 2024-11-14 12:47:08
合計ジャッジ時間 61,911 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
107,092 KB
testcase_01 AC 129 ms
54,056 KB
testcase_02 AC 2,390 ms
54,316 KB
testcase_03 AC 2,430 ms
54,084 KB
testcase_04 AC 126 ms
54,036 KB
testcase_05 TLE -
testcase_06 AC 2,463 ms
54,068 KB
testcase_07 AC 133 ms
54,296 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 2,418 ms
54,124 KB
testcase_13 TLE -
testcase_14 AC 2,481 ms
53,160 KB
testcase_15 AC 2,448 ms
54,328 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 124 ms
53,964 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 126 ms
54,024 KB
testcase_22 AC 2,481 ms
54,192 KB
testcase_23 AC 2,445 ms
54,508 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 114 ms
53,024 KB
testcase_27 WA -
testcase_28 TLE -
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 124 ms
52,868 KB
testcase_32 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class Main {
	
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        
        int N = sc.nextInt();
        int[] map = new int[N+1];
        for (int i = 1; i <= N; i++) {
        	map[i] = Integer.bitCount(i);
        }
        
        int ans = 1;
        int p = 1;
        while(p != N) {
        	if (p+map[p] == N) {
        		ans++;
        		break;
        	} else if (p+map[p] < N) {
        		p += map[p];
        		ans++;
        	} else if (p+map[p] > N && p-map[p] > 0) {
        		p -= map[p];
        		ans++;
        	} else {
        		ans = -1;
        		break;
        	}
        	
        	if (ans > 1000_000_000) {
        		ans = -1;
        		break;
        	}
        }
        System.out.println(ans);
    }
}

0