結果

問題 No.172 UFOを捕まえろ
ユーザー matsuyoshi30matsuyoshi30
提出日時 2016-02-14 23:08:54
言語 Java21
(openjdk 21)
結果
AC  
実行時間 136 ms / 5,000 ms
コード長 382 bytes
コンパイル時間 2,188 ms
コンパイル使用メモリ 75,292 KB
実行使用メモリ 41,656 KB
最終ジャッジ日時 2024-10-15 14:36:33
合計ジャッジ時間 6,386 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
41,656 KB
testcase_01 AC 133 ms
41,628 KB
testcase_02 AC 136 ms
41,256 KB
testcase_03 AC 132 ms
41,460 KB
testcase_04 AC 136 ms
40,968 KB
testcase_05 AC 117 ms
40,792 KB
testcase_06 AC 121 ms
41,072 KB
testcase_07 AC 121 ms
41,504 KB
testcase_08 AC 114 ms
40,964 KB
testcase_09 AC 103 ms
39,928 KB
testcase_10 AC 104 ms
39,772 KB
testcase_11 AC 118 ms
41,044 KB
testcase_12 AC 101 ms
39,996 KB
testcase_13 AC 111 ms
40,816 KB
testcase_14 AC 97 ms
39,348 KB
testcase_15 AC 113 ms
41,020 KB
testcase_16 AC 128 ms
41,580 KB
testcase_17 AC 122 ms
41,216 KB
testcase_18 AC 104 ms
39,836 KB
testcase_19 AC 116 ms
41,056 KB
testcase_20 AC 105 ms
39,892 KB
testcase_21 AC 106 ms
40,152 KB
testcase_22 AC 115 ms
40,748 KB
testcase_23 AC 123 ms
41,132 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

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