結果

問題 No.48 ロボットの操縦
ユーザー mondomondo
提出日時 2019-07-25 15:18:54
言語 PHP
(8.3.4)
結果
AC  
実行時間 44 ms / 5,000 ms
コード長 486 bytes
コンパイル時間 70 ms
コンパイル使用メモリ 30,904 KB
実行使用メモリ 31,308 KB
最終ジャッジ日時 2024-07-02 06:03:46
合計ジャッジ時間 2,035 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
31,036 KB
testcase_01 AC 43 ms
31,088 KB
testcase_02 AC 44 ms
31,032 KB
testcase_03 AC 42 ms
31,168 KB
testcase_04 AC 40 ms
31,308 KB
testcase_05 AC 40 ms
31,120 KB
testcase_06 AC 40 ms
31,056 KB
testcase_07 AC 43 ms
31,096 KB
testcase_08 AC 41 ms
31,000 KB
testcase_09 AC 41 ms
31,000 KB
testcase_10 AC 42 ms
30,884 KB
testcase_11 AC 41 ms
31,032 KB
testcase_12 AC 40 ms
30,904 KB
testcase_13 AC 41 ms
31,016 KB
testcase_14 AC 41 ms
31,044 KB
testcase_15 AC 40 ms
30,948 KB
testcase_16 AC 41 ms
31,184 KB
testcase_17 AC 40 ms
30,996 KB
testcase_18 AC 41 ms
30,932 KB
testcase_19 AC 41 ms
30,964 KB
testcase_20 AC 40 ms
30,916 KB
testcase_21 AC 41 ms
30,896 KB
testcase_22 AC 41 ms
31,216 KB
testcase_23 AC 41 ms
31,104 KB
testcase_24 AC 40 ms
30,968 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
while($line = fgets(STDIN)){
    $array[] = trim($line);
}
$x = abs($array[0]);
$y = $array[1];
$l = $array[2];
$cnt=0;

// $yが負だったら2回回転がある(※$xは0以外回転するので条件によってはかわらない)
if($y < 0){
    $cnt += 2;
} else if ($x !== 0){
    $cnt += 1;
}
// $x / $lと、$y / $lが割り切れないときはceil関数で切り上げし+1回または2回動くと考える
echo ceil(abs($x / $l)) + ceil(abs($y / $l)) + $cnt;
?>
0