結果

問題 No.172 UFOを捕まえろ
ユーザー ぴろずぴろず
提出日時 2015-03-26 23:24:50
言語 Java21
(openjdk 21)
結果
AC  
実行時間 128 ms / 5,000 ms
コード長 361 bytes
コンパイル時間 2,129 ms
コンパイル使用メモリ 74,072 KB
実行使用メモリ 41,352 KB
最終ジャッジ日時 2024-10-15 13:52:13
合計ジャッジ時間 5,464 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 105 ms
39,844 KB
testcase_01 AC 118 ms
40,976 KB
testcase_02 AC 121 ms
41,040 KB
testcase_03 AC 118 ms
40,836 KB
testcase_04 AC 119 ms
41,204 KB
testcase_05 AC 119 ms
41,352 KB
testcase_06 AC 102 ms
40,180 KB
testcase_07 AC 118 ms
41,276 KB
testcase_08 AC 118 ms
41,080 KB
testcase_09 AC 128 ms
40,944 KB
testcase_10 AC 108 ms
40,168 KB
testcase_11 AC 119 ms
41,104 KB
testcase_12 AC 110 ms
40,568 KB
testcase_13 AC 106 ms
39,888 KB
testcase_14 AC 109 ms
40,368 KB
testcase_15 AC 112 ms
40,944 KB
testcase_16 AC 115 ms
41,016 KB
testcase_17 AC 104 ms
40,136 KB
testcase_18 AC 112 ms
40,760 KB
testcase_19 AC 100 ms
39,820 KB
testcase_20 AC 116 ms
40,984 KB
testcase_21 AC 115 ms
41,184 KB
testcase_22 AC 118 ms
41,068 KB
testcase_23 AC 116 ms
41,104 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package no172;

import java.util.Scanner;

public class Main {

	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 x2 = x + y;
		int y2 = x - y;
		System.out.println((int) Math.ceil(1E-9 + Math.max(x2,y2) + Math.sqrt(2) * r));
	}

}
0