結果

問題 No.172 UFOを捕まえろ
ユーザー papinianuspapinianus
提出日時 2016-07-27 12:39:09
言語 PHP
(8.3.4)
結果
WA  
実行時間 -
コード長 114 bytes
コンパイル時間 129 ms
コンパイル使用メモリ 31,000 KB
実行使用メモリ 31,388 KB
最終ジャッジ日時 2024-11-06 17:55:08
合計ジャッジ時間 2,074 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 42 ms
30,780 KB
testcase_02 AC 42 ms
31,388 KB
testcase_03 AC 41 ms
30,932 KB
testcase_04 AC 42 ms
31,180 KB
testcase_05 AC 43 ms
31,228 KB
testcase_06 AC 42 ms
30,896 KB
testcase_07 AC 42 ms
31,152 KB
testcase_08 AC 43 ms
31,184 KB
testcase_09 AC 42 ms
31,008 KB
testcase_10 AC 43 ms
30,772 KB
testcase_11 AC 42 ms
30,968 KB
testcase_12 AC 42 ms
31,260 KB
testcase_13 AC 42 ms
31,244 KB
testcase_14 AC 42 ms
31,248 KB
testcase_15 AC 42 ms
30,956 KB
testcase_16 AC 41 ms
31,080 KB
testcase_17 AC 42 ms
31,168 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 41 ms
30,808 KB
testcase_21 AC 41 ms
31,096 KB
testcase_22 AC 43 ms
30,952 KB
testcase_23 AC 42 ms
30,956 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

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