結果

問題 No.172 UFOを捕まえろ
ユーザー t8m8⛄️t8m8⛄️
提出日時 2015-03-30 17:59:29
言語 Java
(openjdk 23)
結果
AC  
実行時間 126 ms / 5,000 ms
コード長 784 bytes
コンパイル時間 3,513 ms
コンパイル使用メモリ 75,400 KB
実行使用メモリ 41,480 KB
最終ジャッジ日時 2024-10-15 14:03:26
合計ジャッジ時間 6,738 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
41,212 KB
testcase_01 AC 105 ms
39,760 KB
testcase_02 AC 121 ms
41,076 KB
testcase_03 AC 116 ms
41,256 KB
testcase_04 AC 116 ms
41,332 KB
testcase_05 AC 115 ms
41,412 KB
testcase_06 AC 106 ms
40,284 KB
testcase_07 AC 118 ms
41,188 KB
testcase_08 AC 123 ms
41,416 KB
testcase_09 AC 118 ms
40,904 KB
testcase_10 AC 119 ms
41,324 KB
testcase_11 AC 114 ms
41,156 KB
testcase_12 AC 115 ms
41,328 KB
testcase_13 AC 123 ms
41,212 KB
testcase_14 AC 120 ms
41,064 KB
testcase_15 AC 110 ms
40,064 KB
testcase_16 AC 111 ms
39,916 KB
testcase_17 AC 125 ms
41,312 KB
testcase_18 AC 117 ms
41,068 KB
testcase_19 AC 119 ms
41,264 KB
testcase_20 AC 114 ms
41,096 KB
testcase_21 AC 102 ms
39,816 KB
testcase_22 AC 119 ms
41,480 KB
testcase_23 AC 121 ms
41,336 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

//No.172 UFOを捕まえろ

import java.util.*;
import java.io.*;
import static java.util.Arrays.*;
import static java.lang.Math.*;

public class No172 {
    
    static final Scanner sc = new Scanner(System.in);
    static final PrintWriter out = new PrintWriter(System.out,false);

    static void solve() {
        int x = abs(sc.nextInt());
        int y = abs(sc.nextInt());
        int r = sc.nextInt();
        out.println((int)ceil(x+y+r*sqrt(2)));
    }

    public static void main(String[] args) {
        long start = System.currentTimeMillis();

        solve();
        out.flush();

        long end = System.currentTimeMillis();
        //trace(end-start + "ms");
        sc.close();
    }

    static void trace(Object... o) { System.out.println(deepToString(o));}
}
0