結果

問題 No.172 UFOを捕まえろ
ユーザー YamaKasaYamaKasa
提出日時 2018-05-17 23:44:18
言語 Java21
(openjdk 21)
結果
AC  
実行時間 135 ms / 5,000 ms
コード長 362 bytes
コンパイル時間 1,945 ms
コンパイル使用メモリ 74,196 KB
実行使用メモリ 54,320 KB
最終ジャッジ日時 2024-06-28 13:37:37
合計ジャッジ時間 5,843 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
54,072 KB
testcase_01 AC 129 ms
53,732 KB
testcase_02 AC 127 ms
53,656 KB
testcase_03 AC 128 ms
53,980 KB
testcase_04 AC 118 ms
52,580 KB
testcase_05 AC 135 ms
53,996 KB
testcase_06 AC 125 ms
54,320 KB
testcase_07 AC 127 ms
53,960 KB
testcase_08 AC 127 ms
53,696 KB
testcase_09 AC 130 ms
53,788 KB
testcase_10 AC 127 ms
53,928 KB
testcase_11 AC 115 ms
52,904 KB
testcase_12 AC 108 ms
54,168 KB
testcase_13 AC 127 ms
53,772 KB
testcase_14 AC 129 ms
53,900 KB
testcase_15 AC 130 ms
54,196 KB
testcase_16 AC 115 ms
52,616 KB
testcase_17 AC 130 ms
53,876 KB
testcase_18 AC 128 ms
54,244 KB
testcase_19 AC 132 ms
53,920 KB
testcase_20 AC 130 ms
53,668 KB
testcase_21 AC 126 ms
54,052 KB
testcase_22 AC 128 ms
54,048 KB
testcase_23 AC 129 ms
54,208 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		int x = scan.nextInt();
		int y = scan.nextInt();
		int r = scan.nextInt();
		scan.close();
		if(x < 0) {
			x = - x;
		}
		if(y < 0) {
			y = - y;
		}
		int k = x + y + (int)(Math.sqrt(2) * r) + 1;


		System.out.println(k);
	}
}
0