結果

問題 No.172 UFOを捕まえろ
ユーザー samplelpmassamplelpmas
提出日時 2017-01-23 15:50:09
言語 Java21
(openjdk 21)
結果
AC  
実行時間 122 ms / 5,000 ms
コード長 376 bytes
コンパイル時間 1,805 ms
コンパイル使用メモリ 74,384 KB
実行使用メモリ 41,388 KB
最終ジャッジ日時 2024-06-02 10:44:42
合計ジャッジ時間 5,452 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 112 ms
41,164 KB
testcase_01 AC 100 ms
39,908 KB
testcase_02 AC 108 ms
41,088 KB
testcase_03 AC 107 ms
40,952 KB
testcase_04 AC 102 ms
39,972 KB
testcase_05 AC 116 ms
41,016 KB
testcase_06 AC 111 ms
41,196 KB
testcase_07 AC 102 ms
39,880 KB
testcase_08 AC 111 ms
40,908 KB
testcase_09 AC 110 ms
40,980 KB
testcase_10 AC 108 ms
41,112 KB
testcase_11 AC 109 ms
41,180 KB
testcase_12 AC 110 ms
41,132 KB
testcase_13 AC 111 ms
41,388 KB
testcase_14 AC 110 ms
40,672 KB
testcase_15 AC 116 ms
40,828 KB
testcase_16 AC 102 ms
40,292 KB
testcase_17 AC 111 ms
40,940 KB
testcase_18 AC 107 ms
40,996 KB
testcase_19 AC 122 ms
40,788 KB
testcase_20 AC 108 ms
41,076 KB
testcase_21 AC 109 ms
40,208 KB
testcase_22 AC 119 ms
41,312 KB
testcase_23 AC 121 ms
41,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

    public static void main(String[] args) {

        Scanner sc = new Scanner(System.in);

        int x = Math.abs(sc.nextInt());
        int y = Math.abs(sc.nextInt());
        int radius = sc.nextInt();

        int barrier = (int) Math.ceil(x + y + (Math.sqrt(2) * radius));

        System.out.println(barrier);

    }

}
0