結果

問題 No.172 UFOを捕まえろ
ユーザー AOSM_saltoneAOSM_saltone
提出日時 2017-05-21 12:02:50
言語 Java
(openjdk 23)
結果
AC  
実行時間 131 ms / 5,000 ms
コード長 352 bytes
コンパイル時間 1,949 ms
コンパイル使用メモリ 74,200 KB
実行使用メモリ 41,664 KB
最終ジャッジ日時 2024-09-19 08:05:59
合計ジャッジ時間 6,000 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 21
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args){
        Scanner sc = new Scanner(System.in);
        int x = sc.nextInt();
        int y = sc.nextInt();
        double r = sc.nextInt();
        
        int lastR = (int)(Math.ceil(r*Math.sqrt(2)));
        System.out.println(Math.abs(x)+Math.abs(y)+lastR);
    }
}
0