結果

問題 No.172 UFOを捕まえろ
ユーザー GrenacheGrenache
提出日時 2015-11-02 00:25:17
言語 Java
(openjdk 23)
結果
AC  
実行時間 133 ms / 5,000 ms
コード長 464 bytes
コンパイル時間 3,493 ms
コンパイル使用メモリ 75,000 KB
実行使用メモリ 41,584 KB
最終ジャッジ日時 2024-10-15 14:33:49
合計ジャッジ時間 7,464 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 21
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;


public class Main_yukicoder172 {

    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 r = sc.nextInt();
        int min = Math.min(x, y);
        int tmp = (int)Math.ceil((Math.sqrt(2.0) * min + r) * Math.sqrt(2.0));
        System.out.println(Math.abs(x - y) + tmp);
        
        sc.close();
    }
}
0