結果

問題 No.172 UFOを捕まえろ
ユーザー mitsuomitsuo
提出日時 2016-05-05 10:18:45
言語 Java21
(openjdk 21)
結果
AC  
実行時間 135 ms / 5,000 ms
コード長 689 bytes
コンパイル時間 3,858 ms
コンパイル使用メモリ 76,852 KB
実行使用メモリ 54,480 KB
最終ジャッジ日時 2024-10-15 15:10:11
合計ジャッジ時間 6,517 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
53,964 KB
testcase_01 AC 129 ms
54,144 KB
testcase_02 AC 131 ms
54,088 KB
testcase_03 AC 132 ms
54,304 KB
testcase_04 AC 132 ms
53,788 KB
testcase_05 AC 131 ms
54,112 KB
testcase_06 AC 131 ms
54,012 KB
testcase_07 AC 133 ms
53,932 KB
testcase_08 AC 133 ms
53,784 KB
testcase_09 AC 133 ms
54,180 KB
testcase_10 AC 132 ms
53,972 KB
testcase_11 AC 135 ms
54,480 KB
testcase_12 AC 131 ms
53,964 KB
testcase_13 AC 130 ms
53,756 KB
testcase_14 AC 131 ms
53,964 KB
testcase_15 AC 133 ms
53,908 KB
testcase_16 AC 132 ms
53,992 KB
testcase_17 AC 132 ms
53,788 KB
testcase_18 AC 132 ms
53,968 KB
testcase_19 AC 132 ms
53,976 KB
testcase_20 AC 131 ms
54,156 KB
testcase_21 AC 131 ms
54,384 KB
testcase_22 AC 134 ms
53,928 KB
testcase_23 AC 132 ms
53,980 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayList;
import java.util.List;
import java.util.Scanner;

public class Main {
	public static final double R2 = Math.pow(2, 0.5);

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		List<String> input = new ArrayList<>();
		while (sc.hasNext()) {
			input.add(sc.nextLine());
		}

		System.out.println(solve(input));

		sc.close();
	}

	public static int solve(List<String> in) {
		double x = Double.valueOf(in.get(0).split(" ")[0]);
		double y = Double.valueOf(in.get(0).split(" ")[1]);
		double r = Double.valueOf(in.get(0).split(" ")[2]);

		double D = r * R2 + Math.abs(x) + Math.abs(y);

		return new Double(D).intValue() + 1;
	}
}
0