結果

問題 No.172 UFOを捕まえろ
ユーザー mobius_bkstmobius_bkst
提出日時 2015-04-20 18:23:48
言語 Java21
(openjdk 21)
結果
AC  
実行時間 55 ms / 5,000 ms
コード長 805 bytes
コンパイル時間 3,634 ms
コンパイル使用メモリ 75,284 KB
実行使用メモリ 37,144 KB
最終ジャッジ日時 2024-10-15 14:05:50
合計ジャッジ時間 5,824 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
36,960 KB
testcase_01 AC 52 ms
36,524 KB
testcase_02 AC 52 ms
36,916 KB
testcase_03 AC 51 ms
36,656 KB
testcase_04 AC 51 ms
36,800 KB
testcase_05 AC 51 ms
37,144 KB
testcase_06 AC 55 ms
36,900 KB
testcase_07 AC 52 ms
36,964 KB
testcase_08 AC 53 ms
36,888 KB
testcase_09 AC 52 ms
36,960 KB
testcase_10 AC 52 ms
36,532 KB
testcase_11 AC 53 ms
37,040 KB
testcase_12 AC 53 ms
36,624 KB
testcase_13 AC 53 ms
36,728 KB
testcase_14 AC 52 ms
36,832 KB
testcase_15 AC 53 ms
36,768 KB
testcase_16 AC 52 ms
37,000 KB
testcase_17 AC 52 ms
37,060 KB
testcase_18 AC 54 ms
36,840 KB
testcase_19 AC 52 ms
36,840 KB
testcase_20 AC 51 ms
36,828 KB
testcase_21 AC 52 ms
36,532 KB
testcase_22 AC 52 ms
36,892 KB
testcase_23 AC 52 ms
36,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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


public class No172 {

    /**
     * @param args
     */
    public static void main(String[] args) {
        // TODO 自動生成されたメソッド・スタブ
                try {
            BufferedReader br = new BufferedReader(new InputStreamReader(
                    System.in));
            String[] tmpArray = br.readLine().split(" ");
            int x = Integer.parseInt(tmpArray[0]);
            int y = Integer.parseInt(tmpArray[1]);
            int r = Integer.parseInt(tmpArray[2]);

            int ans = (int) Math.ceil(Math.abs(x) + Math.abs(y) + Math.sqrt(2) * r);

            System.out.println(ans);
        } catch (Exception e) {
            System.err.println("Error:" + e.getMessage());
        }
    }

}
0