結果

問題 No.172 UFOを捕まえろ
ユーザー tsunabittsunabit
提出日時 2019-05-15 00:28:09
言語 Java21
(openjdk 21)
結果
AC  
実行時間 130 ms / 5,000 ms
コード長 555 bytes
コンパイル時間 3,932 ms
コンパイル使用メモリ 74,840 KB
実行使用メモリ 41,196 KB
最終ジャッジ日時 2024-07-20 05:20:33
合計ジャッジ時間 7,322 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
41,028 KB
testcase_01 AC 118 ms
40,728 KB
testcase_02 AC 111 ms
39,932 KB
testcase_03 AC 108 ms
40,024 KB
testcase_04 AC 123 ms
41,036 KB
testcase_05 AC 124 ms
41,068 KB
testcase_06 AC 120 ms
41,104 KB
testcase_07 AC 123 ms
41,144 KB
testcase_08 AC 126 ms
40,928 KB
testcase_09 AC 126 ms
40,868 KB
testcase_10 AC 129 ms
40,836 KB
testcase_11 AC 126 ms
40,720 KB
testcase_12 AC 124 ms
41,172 KB
testcase_13 AC 125 ms
40,764 KB
testcase_14 AC 109 ms
39,604 KB
testcase_15 AC 128 ms
41,044 KB
testcase_16 AC 117 ms
40,388 KB
testcase_17 AC 127 ms
41,052 KB
testcase_18 AC 127 ms
40,736 KB
testcase_19 AC 127 ms
41,196 KB
testcase_20 AC 126 ms
41,064 KB
testcase_21 AC 126 ms
40,960 KB
testcase_22 AC 127 ms
41,016 KB
testcase_23 AC 130 ms
41,004 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayList;
import java.util.Scanner;

public class No172 {
    public static void main(String[] args) {
        // 標準入力から読み込む際に、Scannerオブジェクトを使う。
        Scanner s = new Scanner(System.in);
        int x = s.nextInt(), y = s.nextInt(), r = s.nextInt();
//        double k = Math.sqrt(x*x + y*y);
//        // 1:1:ルート2の二等辺三角形
//        double out = (k + r) * Math.sqrt(2);
        System.out.println((int)(Math.ceil(Math.abs(x) + Math.abs(y) + Math.sqrt(2) * r)));
    }
}
0