結果

問題 No.172 UFOを捕まえろ
ユーザー koukonkokoukonko
提出日時 2015-12-13 15:34:17
言語 Java21
(openjdk 21)
結果
AC  
実行時間 53 ms / 5,000 ms
コード長 654 bytes
コンパイル時間 2,036 ms
コンパイル使用メモリ 73,888 KB
実行使用メモリ 37,060 KB
最終ジャッジ日時 2024-10-15 14:34:16
合計ジャッジ時間 4,131 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
36,728 KB
testcase_01 AC 53 ms
36,384 KB
testcase_02 AC 52 ms
36,888 KB
testcase_03 AC 52 ms
37,060 KB
testcase_04 AC 53 ms
36,740 KB
testcase_05 AC 53 ms
36,584 KB
testcase_06 AC 52 ms
36,848 KB
testcase_07 AC 52 ms
36,956 KB
testcase_08 AC 52 ms
36,904 KB
testcase_09 AC 52 ms
36,692 KB
testcase_10 AC 51 ms
36,860 KB
testcase_11 AC 52 ms
36,516 KB
testcase_12 AC 52 ms
36,916 KB
testcase_13 AC 52 ms
36,948 KB
testcase_14 AC 52 ms
36,696 KB
testcase_15 AC 52 ms
36,612 KB
testcase_16 AC 53 ms
36,496 KB
testcase_17 AC 52 ms
36,860 KB
testcase_18 AC 52 ms
36,912 KB
testcase_19 AC 52 ms
36,660 KB
testcase_20 AC 53 ms
36,504 KB
testcase_21 AC 52 ms
36,868 KB
testcase_22 AC 52 ms
36,888 KB
testcase_23 AC 51 ms
36,708 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;

public class Main {
	public static void main(String[] args) {
		BufferedReader read = new BufferedReader(new InputStreamReader(System.in));
		try {
			String[] box = read.readLine().split(" ");
			int[] cir = new int[3];

			for (int i = 0; i < 3; ++i) {
				cir[i] = Math.abs(Integer.parseInt(box[i]));
			}

			double x = cir[0] + (cir[2] * 1.0 / Math.sqrt(2));
			double y = cir[1] + (cir[2] * 1.0 / Math.sqrt(2));

			int i;
			for (i = 0; true; ++i) {
				if (x + y < i) {
					break;
				}
			}

			System.out.println(i);

		} catch (Exception e) {
			e.printStackTrace();
		}
	}
}
0