結果

問題 No.172 UFOを捕まえろ
ユーザー papinianuspapinianus
提出日時 2016-07-27 12:47:09
言語 PHP
(8.3.4)
結果
AC  
実行時間 44 ms / 5,000 ms
コード長 110 bytes
コンパイル時間 338 ms
コンパイル使用メモリ 30,748 KB
実行使用メモリ 31,528 KB
最終ジャッジ日時 2024-11-06 17:55:16
合計ジャッジ時間 2,125 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
31,368 KB
testcase_01 AC 43 ms
31,212 KB
testcase_02 AC 44 ms
31,072 KB
testcase_03 AC 42 ms
31,396 KB
testcase_04 AC 42 ms
31,080 KB
testcase_05 AC 42 ms
31,096 KB
testcase_06 AC 42 ms
31,196 KB
testcase_07 AC 42 ms
31,136 KB
testcase_08 AC 42 ms
31,300 KB
testcase_09 AC 43 ms
30,948 KB
testcase_10 AC 43 ms
31,116 KB
testcase_11 AC 43 ms
31,528 KB
testcase_12 AC 43 ms
31,396 KB
testcase_13 AC 43 ms
31,352 KB
testcase_14 AC 42 ms
31,452 KB
testcase_15 AC 42 ms
31,136 KB
testcase_16 AC 43 ms
31,092 KB
testcase_17 AC 43 ms
30,940 KB
testcase_18 AC 42 ms
31,432 KB
testcase_19 AC 41 ms
31,284 KB
testcase_20 AC 42 ms
31,084 KB
testcase_21 AC 41 ms
31,312 KB
testcase_22 AC 42 ms
31,140 KB
testcase_23 AC 41 ms
31,420 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
list($x, $y, $r) = explode(" ", trim(fgets(STDIN)));
echo abs($x)+abs($y)+ceil($r*1.4142);
echo PHP_EOL;
0