結果

問題 No.172 UFOを捕まえろ
ユーザー jimanojimano
提出日時 2018-02-10 20:32:17
言語 Java21
(openjdk 21)
結果
AC  
実行時間 55 ms / 5,000 ms
コード長 519 bytes
コンパイル時間 5,193 ms
コンパイル使用メモリ 73,212 KB
実行使用メモリ 37,128 KB
最終ジャッジ日時 2024-10-15 17:31:38
合計ジャッジ時間 5,606 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
36,496 KB
testcase_01 AC 52 ms
36,684 KB
testcase_02 AC 52 ms
36,972 KB
testcase_03 AC 53 ms
36,772 KB
testcase_04 AC 53 ms
36,664 KB
testcase_05 AC 52 ms
36,328 KB
testcase_06 AC 53 ms
36,768 KB
testcase_07 AC 52 ms
36,864 KB
testcase_08 AC 52 ms
36,800 KB
testcase_09 AC 52 ms
36,824 KB
testcase_10 AC 52 ms
36,652 KB
testcase_11 AC 53 ms
36,908 KB
testcase_12 AC 52 ms
36,688 KB
testcase_13 AC 53 ms
36,668 KB
testcase_14 AC 51 ms
36,692 KB
testcase_15 AC 52 ms
36,684 KB
testcase_16 AC 52 ms
36,764 KB
testcase_17 AC 53 ms
36,668 KB
testcase_18 AC 53 ms
36,828 KB
testcase_19 AC 53 ms
36,672 KB
testcase_20 AC 52 ms
37,128 KB
testcase_21 AC 52 ms
36,448 KB
testcase_22 AC 52 ms
36,836 KB
testcase_23 AC 52 ms
36,472 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package me.yukicoder;

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

public class No0172 {
	public static void main(String[] args) throws IOException {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		String[] str = br.readLine().split(" ");
		int x = Integer.parseInt(str[0]);
		int y = Integer.parseInt(str[1]);
		int r = Integer.parseInt(str[2]);
		// 
		System.out.println((int)(Math.abs(x) + Math.abs(y) + r * Math.sqrt(2.0)) + 1);
	}
}
0