結果

問題 No.172 UFOを捕まえろ
ユーザー fkwnw3_1243fkwnw3_1243
提出日時 2017-04-30 09:41:08
言語 Java21
(openjdk 21)
結果
AC  
実行時間 57 ms / 5,000 ms
コード長 612 bytes
コンパイル時間 2,483 ms
コンパイル使用メモリ 74,816 KB
実行使用メモリ 50,452 KB
最終ジャッジ日時 2024-09-13 23:29:02
合計ジャッジ時間 4,852 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
49,964 KB
testcase_01 AC 56 ms
50,036 KB
testcase_02 AC 55 ms
50,164 KB
testcase_03 AC 54 ms
50,192 KB
testcase_04 AC 56 ms
50,104 KB
testcase_05 AC 55 ms
50,300 KB
testcase_06 AC 56 ms
50,416 KB
testcase_07 AC 56 ms
50,208 KB
testcase_08 AC 56 ms
50,360 KB
testcase_09 AC 56 ms
50,452 KB
testcase_10 AC 57 ms
50,192 KB
testcase_11 AC 57 ms
50,156 KB
testcase_12 AC 56 ms
49,836 KB
testcase_13 AC 55 ms
50,108 KB
testcase_14 AC 55 ms
49,988 KB
testcase_15 AC 55 ms
50,032 KB
testcase_16 AC 56 ms
49,888 KB
testcase_17 AC 56 ms
50,072 KB
testcase_18 AC 56 ms
49,896 KB
testcase_19 AC 56 ms
50,208 KB
testcase_20 AC 56 ms
50,052 KB
testcase_21 AC 55 ms
49,872 KB
testcase_22 AC 55 ms
50,112 KB
testcase_23 AC 55 ms
50,280 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

import static java.lang.System.in;

public class Main {
    public static void main(String[] args) throws IOException {
        BufferedReader reader = new BufferedReader(new InputStreamReader(in));
        String[] inputs = reader.readLine().split(" ");
        int x = Integer.parseInt(inputs[0]);
        int y = Integer.parseInt(inputs[1]);
        int r = Integer.parseInt(inputs[2]);
        x = Math.abs(x);
        y = Math.abs(y);
        System.out.println((int)Math.ceil(x + y + r * Math.sqrt(2)));
    }

}
0