結果

問題 No.3 ビットすごろく
ユーザー oga00826oga00826
提出日時 2019-06-11 12:57:04
言語 PHP
(8.3.4)
結果
WA  
実行時間 -
コード長 654 bytes
コンパイル時間 2,129 ms
コンパイル使用メモリ 30,860 KB
実行使用メモリ 31,496 KB
最終ジャッジ日時 2024-10-06 01:12:51
合計ジャッジ時間 4,100 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
31,024 KB
testcase_01 AC 38 ms
31,064 KB
testcase_02 AC 36 ms
31,020 KB
testcase_03 AC 35 ms
31,024 KB
testcase_04 AC 34 ms
31,148 KB
testcase_05 AC 34 ms
31,140 KB
testcase_06 AC 34 ms
31,160 KB
testcase_07 AC 35 ms
30,856 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 34 ms
31,076 KB
testcase_13 AC 35 ms
31,156 KB
testcase_14 AC 34 ms
30,912 KB
testcase_15 AC 35 ms
31,036 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 35 ms
31,028 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 35 ms
31,104 KB
testcase_22 AC 36 ms
31,192 KB
testcase_23 AC 35 ms
30,840 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 34 ms
31,112 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 34 ms
31,012 KB
testcase_32 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php


$goal = trim(fgets(STDIN));
$here = 1;
$count = 1;
$used_array = [];

for ($i=1; $i<=$goal; $i++) {

    $i = $here; // 現在地に書き換え

    $binary = decbin($i);
    $move = substr_count( $binary, 1 );
    $count++;

    if ($goal == 1) {
        $count--;
        break;
    } elseif ( ($here + $move) == $goal ) {
        break;
    } elseif ( ($here + $move) > $goal ) {
        $here = $here - $move;
        if (array_search($here, $used_array) !== FALSE) {
            $count = -1;
            break;
        }

    } else {
        $here = $here + $move;
    }

    $used_array[] = $i; // 既に使用した
}


echo $count."\n";
0