結果

問題 No.172 UFOを捕まえろ
ユーザー takutakutakutaku
提出日時 2021-06-08 10:46:22
言語 PHP
(8.3.4)
結果
AC  
実行時間 38 ms / 5,000 ms
コード長 228 bytes
コンパイル時間 1,767 ms
コンパイル使用メモリ 30,528 KB
実行使用メモリ 31,076 KB
最終ジャッジ日時 2024-05-04 20:24:29
合計ジャッジ時間 3,920 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
30,788 KB
testcase_01 AC 37 ms
30,788 KB
testcase_02 AC 38 ms
30,944 KB
testcase_03 AC 38 ms
30,844 KB
testcase_04 AC 35 ms
30,880 KB
testcase_05 AC 36 ms
30,852 KB
testcase_06 AC 36 ms
30,756 KB
testcase_07 AC 36 ms
30,944 KB
testcase_08 AC 35 ms
30,588 KB
testcase_09 AC 35 ms
30,700 KB
testcase_10 AC 34 ms
30,700 KB
testcase_11 AC 36 ms
30,876 KB
testcase_12 AC 36 ms
30,848 KB
testcase_13 AC 37 ms
30,888 KB
testcase_14 AC 37 ms
30,880 KB
testcase_15 AC 36 ms
30,864 KB
testcase_16 AC 37 ms
30,780 KB
testcase_17 AC 36 ms
30,588 KB
testcase_18 AC 36 ms
31,076 KB
testcase_19 AC 37 ms
30,580 KB
testcase_20 AC 36 ms
30,828 KB
testcase_21 AC 35 ms
30,784 KB
testcase_22 AC 38 ms
30,996 KB
testcase_23 AC 37 ms
31,036 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
    
    $array_n = explode(" ",trim(fgets(STDIN)));
    $x = abs($array_n[0]);
    $y = abs($array_n[1]);
    $r = abs($array_n[2]);
    
    $result = $x + $y + ($r * 1.41421356);
    
    echo ceil($result).PHP_EOL;
?>
0