結果
問題 | No.3 ビットすごろく |
ユーザー | jake_taro |
提出日時 | 2015-09-07 15:18:01 |
言語 | PHP (8.3.4) |
結果 |
WA
|
実行時間 | - |
コード長 | 442 bytes |
コンパイル時間 | 142 ms |
コンパイル使用メモリ | 32,272 KB |
実行使用メモリ | 31,500 KB |
最終ジャッジ日時 | 2024-07-19 04:53:17 |
合計ジャッジ時間 | 2,529 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 41 ms
31,236 KB |
testcase_01 | AC | 42 ms
31,420 KB |
testcase_02 | AC | 42 ms
31,060 KB |
testcase_03 | AC | 43 ms
30,968 KB |
testcase_04 | AC | 42 ms
31,340 KB |
testcase_05 | AC | 42 ms
31,500 KB |
testcase_06 | AC | 42 ms
31,312 KB |
testcase_07 | AC | 41 ms
31,180 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | AC | 42 ms
30,952 KB |
testcase_13 | AC | 42 ms
30,960 KB |
testcase_14 | AC | 42 ms
31,116 KB |
testcase_15 | AC | 42 ms
31,120 KB |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | AC | 41 ms
31,024 KB |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | AC | 41 ms
31,096 KB |
testcase_22 | AC | 42 ms
31,096 KB |
testcase_23 | AC | 42 ms
31,228 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
31,116 KB |
testcase_32 | WA | - |
コンパイルメッセージ
No syntax errors detected in Main.php
ソースコード
<?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 > 10000){ echo -1, PHP_EOL; exit; } }while($start < $N); echo $count + 1, PHP_EOL;