結果

問題 No.48 ロボットの操縦
ユーザー DevbotBotDevbotBot
提出日時 2015-06-25 18:07:46
言語 PHP
(8.3.4)
結果
AC  
実行時間 38 ms / 5,000 ms
コード長 314 bytes
コンパイル時間 82 ms
コンパイル使用メモリ 32,020 KB
実行使用メモリ 31,344 KB
最終ジャッジ日時 2024-05-01 13:39:16
合計ジャッジ時間 1,695 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
31,312 KB
testcase_01 AC 34 ms
31,120 KB
testcase_02 AC 36 ms
30,960 KB
testcase_03 AC 38 ms
31,156 KB
testcase_04 AC 36 ms
31,148 KB
testcase_05 AC 34 ms
31,272 KB
testcase_06 AC 33 ms
31,308 KB
testcase_07 AC 33 ms
31,344 KB
testcase_08 AC 33 ms
30,932 KB
testcase_09 AC 32 ms
31,268 KB
testcase_10 AC 33 ms
31,040 KB
testcase_11 AC 33 ms
31,200 KB
testcase_12 AC 33 ms
31,080 KB
testcase_13 AC 33 ms
30,924 KB
testcase_14 AC 33 ms
31,224 KB
testcase_15 AC 32 ms
31,060 KB
testcase_16 AC 32 ms
31,140 KB
testcase_17 AC 33 ms
31,284 KB
testcase_18 AC 33 ms
31,100 KB
testcase_19 AC 36 ms
31,072 KB
testcase_20 AC 35 ms
30,804 KB
testcase_21 AC 37 ms
31,184 KB
testcase_22 AC 35 ms
31,120 KB
testcase_23 AC 34 ms
30,912 KB
testcase_24 AC 35 ms
31,024 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
	$x = trim(fgets(STDIN));
	$y = trim(fgets(STDIN));
	$l = trim(fgets(STDIN));
	$compass = 0;
	$move = 0;

	if ( $x != 0 ) {
		$compass++;
	}
	if ( $y < 0 ) {
		$compass++;
		if ( $x == 0 ) {
			$compass++;
		}
	}
	$move = ceil(abs($x) / $l);
	$move += ceil(abs($y) / $l);

	echo (($move + $compass) . "\n");
0