結果

問題 No.172 UFOを捕まえろ
ユーザー samplelpmassamplelpmas
提出日時 2017-01-23 16:07:20
言語 Java21
(openjdk 21)
結果
AC  
実行時間 120 ms / 5,000 ms
コード長 376 bytes
コンパイル時間 2,031 ms
コンパイル使用メモリ 75,132 KB
実行使用メモリ 41,424 KB
最終ジャッジ日時 2024-06-02 10:45:06
合計ジャッジ時間 5,392 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 110 ms
40,748 KB
testcase_01 AC 117 ms
40,980 KB
testcase_02 AC 113 ms
41,000 KB
testcase_03 AC 115 ms
41,092 KB
testcase_04 AC 104 ms
40,136 KB
testcase_05 AC 108 ms
41,380 KB
testcase_06 AC 115 ms
41,424 KB
testcase_07 AC 117 ms
41,032 KB
testcase_08 AC 104 ms
39,968 KB
testcase_09 AC 106 ms
41,264 KB
testcase_10 AC 120 ms
40,952 KB
testcase_11 AC 117 ms
40,912 KB
testcase_12 AC 108 ms
40,072 KB
testcase_13 AC 114 ms
41,032 KB
testcase_14 AC 109 ms
41,256 KB
testcase_15 AC 101 ms
39,884 KB
testcase_16 AC 101 ms
39,980 KB
testcase_17 AC 114 ms
40,912 KB
testcase_18 AC 118 ms
41,336 KB
testcase_19 AC 119 ms
40,916 KB
testcase_20 AC 114 ms
41,096 KB
testcase_21 AC 116 ms
41,096 KB
testcase_22 AC 111 ms
40,704 KB
testcase_23 AC 119 ms
41,224 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