結果

問題 No.48 ロボットの操縦
ユーザー 綾地寧々綾地寧々
提出日時 2015-05-14 17:36:00
言語 PHP
(8.3.4)
結果
AC  
実行時間 43 ms / 5,000 ms
コード長 273 bytes
コンパイル時間 2,948 ms
コンパイル使用メモリ 32,148 KB
実行使用メモリ 31,328 KB
最終ジャッジ日時 2024-11-21 18:18:59
合計ジャッジ時間 4,818 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
31,048 KB
testcase_01 AC 41 ms
31,000 KB
testcase_02 AC 41 ms
30,964 KB
testcase_03 AC 42 ms
31,264 KB
testcase_04 AC 42 ms
30,992 KB
testcase_05 AC 42 ms
30,860 KB
testcase_06 AC 40 ms
30,912 KB
testcase_07 AC 41 ms
31,160 KB
testcase_08 AC 40 ms
31,192 KB
testcase_09 AC 40 ms
30,916 KB
testcase_10 AC 41 ms
31,248 KB
testcase_11 AC 41 ms
31,156 KB
testcase_12 AC 40 ms
30,996 KB
testcase_13 AC 41 ms
30,904 KB
testcase_14 AC 41 ms
31,328 KB
testcase_15 AC 40 ms
31,232 KB
testcase_16 AC 41 ms
31,272 KB
testcase_17 AC 40 ms
30,796 KB
testcase_18 AC 40 ms
30,872 KB
testcase_19 AC 39 ms
31,012 KB
testcase_20 AC 41 ms
31,012 KB
testcase_21 AC 40 ms
30,956 KB
testcase_22 AC 41 ms
31,212 KB
testcase_23 AC 43 ms
30,792 KB
testcase_24 AC 42 ms
31,172 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
$ew = trim(fgets(STDIN));
$ns = trim(fgets(STDIN));
$walk_max = trim(fgets(STDIN));
$cue_time = ceil(abs($ew)/$walk_max);
$cue_time += ceil(abs($ns)/$walk_max);
$cue_time += ($ew != 0) ? 1:0;
if ( $ns < 0 ) {
	$cue_time += ($ew == 0) ? 2:1;
}
echo $cue_time.PHP_EOL;
0