結果

問題 No.172 UFOを捕まえろ
ユーザー dazydazy
提出日時 2016-09-23 19:12:18
言語 Java
(openjdk 23)
結果
AC  
実行時間 129 ms / 5,000 ms
コード長 394 bytes
コンパイル時間 3,151 ms
コンパイル使用メモリ 74,240 KB
実行使用メモリ 41,620 KB
最終ジャッジ日時 2024-11-17 19:40:43
合計ジャッジ時間 7,063 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 21
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Run {
    final static double s = Math.sin(Math.PI/4) * 2;
    public static void main (String arg[]) {
        Scanner scan = new Scanner(System.in);
        int x = Math.abs(scan.nextInt());
        int y = Math.abs(scan.nextInt());
        int r = scan.nextInt();
        double m = Math.ceil(x + y + r * s);

        System.out.println(((int) m));
    }
}
0