結果

問題 No.3 ビットすごろく
ユーザー jake_tarojake_taro
提出日時 2015-09-07 15:26:34
言語 PHP
(8.3.4)
結果
WA  
実行時間 -
コード長 441 bytes
コンパイル時間 75 ms
コンパイル使用メモリ 31,212 KB
実行使用メモリ 31,392 KB
最終ジャッジ日時 2024-07-19 04:53:24
合計ジャッジ時間 2,372 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
30,852 KB
testcase_01 AC 41 ms
30,904 KB
testcase_02 AC 40 ms
31,164 KB
testcase_03 AC 40 ms
31,172 KB
testcase_04 AC 41 ms
30,800 KB
testcase_05 AC 41 ms
31,280 KB
testcase_06 AC 45 ms
31,084 KB
testcase_07 AC 41 ms
31,112 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 42 ms
31,104 KB
testcase_13 AC 41 ms
31,304 KB
testcase_14 AC 42 ms
31,044 KB
testcase_15 AC 41 ms
31,024 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 40 ms
30,988 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 41 ms
31,160 KB
testcase_22 AC 42 ms
31,180 KB
testcase_23 AC 41 ms
31,280 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 41 ms
30,964 KB
testcase_32 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php

$N = (int)trim(fgets(STDIN)); // マス数N
$start = 1; //スタート地点
$count = 0; //移動回数
do{
	if($N == 1){
		echo 0,PHP_EOL;
		exit;
	}
	$number_2 = decbin($start); //2進数表記
	$shift = substr_count($number_2, "1");
	$start += $shift;
	if($start > $N){
		$start -= 2 * $shift;
	}
	$count++;
	# echo $start, PHP_EOL;
	if($count > 3000){
		echo -1, PHP_EOL;
		exit;
	}
}while($start < $N);

echo $count + 1, PHP_EOL;
0