結果

問題 No.3 ビットすごろく
ユーザー oga00826oga00826
提出日時 2019-06-11 13:29:07
言語 PHP
(8.3.4)
結果
WA  
実行時間 -
コード長 604 bytes
コンパイル時間 1,081 ms
コンパイル使用メモリ 31,024 KB
実行使用メモリ 31,484 KB
最終ジャッジ日時 2024-10-06 01:15:37
合計ジャッジ時間 2,180 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
31,124 KB
testcase_01 AC 34 ms
30,864 KB
testcase_02 AC 35 ms
31,484 KB
testcase_03 AC 35 ms
31,092 KB
testcase_04 AC 34 ms
31,176 KB
testcase_05 AC 35 ms
31,248 KB
testcase_06 AC 36 ms
31,124 KB
testcase_07 AC 35 ms
30,996 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 36 ms
30,896 KB
testcase_13 AC 37 ms
31,060 KB
testcase_14 AC 36 ms
31,308 KB
testcase_15 AC 35 ms
31,344 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 36 ms
31,408 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 35 ms
31,020 KB
testcase_22 AC 34 ms
31,424 KB
testcase_23 AC 34 ms
31,072 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 37 ms
31,376 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 36 ms
31,332 KB
testcase_32 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php


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

if ($goal == 1) {
    echo "1"."\n";
    exit();
}

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

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

    if ( ($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[] = $here; // 既に使用した
}

echo $count."\n";
0