結果

問題 No.48 ロボットの操縦
ユーザー mahnamahna
提出日時 2021-02-05 23:22:14
言語 PHP
(8.3.4)
結果
WA  
実行時間 -
コード長 323 bytes
コンパイル時間 1,445 ms
コンパイル使用メモリ 32,276 KB
実行使用メモリ 32,652 KB
最終ジャッジ日時 2024-07-02 14:33:40
合計ジャッジ時間 3,200 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 37 ms
32,404 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 35 ms
32,404 KB
testcase_05 WA -
testcase_06 AC 35 ms
32,532 KB
testcase_07 AC 35 ms
32,272 KB
testcase_08 WA -
testcase_09 AC 34 ms
32,400 KB
testcase_10 WA -
testcase_11 AC 33 ms
32,528 KB
testcase_12 AC 36 ms
32,276 KB
testcase_13 AC 39 ms
32,400 KB
testcase_14 AC 36 ms
32,532 KB
testcase_15 AC 36 ms
32,396 KB
testcase_16 AC 35 ms
32,528 KB
testcase_17 AC 38 ms
32,400 KB
testcase_18 WA -
testcase_19 AC 35 ms
32,400 KB
testcase_20 AC 35 ms
32,272 KB
testcase_21 AC 35 ms
32,528 KB
testcase_22 WA -
testcase_23 AC 35 ms
32,652 KB
testcase_24 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
// Your code here!

    $x = trim(fgets(STDIN));
    $y = trim(fgets(STDIN));
    $a = trim(fgets(STDIN));
    
    $ct = 0;
    
    // y方向が-1の場合+2
    if ($y < 0) {
        $ct += 2;
    }
    $ct += ceil(abs($y) / $a);
    
    //x方向
    $ct++;
    $ct += ceil(abs($x) / $a);
    
    echo $ct;
?>
0