結果

問題 No.172 UFOを捕まえろ
ユーザー papinianuspapinianus
提出日時 2016-07-27 12:39:09
言語 PHP
(8.3.4)
結果
WA  
実行時間 -
コード長 114 bytes
コンパイル時間 342 ms
コンパイル使用メモリ 31,064 KB
実行使用メモリ 31,184 KB
最終ジャッジ日時 2024-04-24 10:19:55
合計ジャッジ時間 1,792 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 35 ms
30,860 KB
testcase_02 AC 36 ms
30,508 KB
testcase_03 AC 37 ms
30,768 KB
testcase_04 AC 36 ms
31,048 KB
testcase_05 AC 36 ms
30,620 KB
testcase_06 AC 34 ms
30,724 KB
testcase_07 AC 36 ms
30,852 KB
testcase_08 AC 35 ms
30,704 KB
testcase_09 AC 33 ms
30,660 KB
testcase_10 AC 34 ms
30,796 KB
testcase_11 AC 34 ms
30,712 KB
testcase_12 AC 36 ms
30,668 KB
testcase_13 AC 33 ms
30,820 KB
testcase_14 AC 36 ms
30,712 KB
testcase_15 AC 35 ms
30,888 KB
testcase_16 AC 35 ms
30,700 KB
testcase_17 AC 36 ms
30,644 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 34 ms
30,536 KB
testcase_21 AC 38 ms
30,916 KB
testcase_22 AC 37 ms
30,588 KB
testcase_23 AC 35 ms
30,584 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