結果

問題 No.172 UFOを捕まえろ
ユーザー Tsukasa_TypeTsukasa_Type
提出日時 2018-03-06 14:09:18
言語 Java21
(openjdk 21)
結果
AC  
実行時間 125 ms / 5,000 ms
コード長 350 bytes
コンパイル時間 2,164 ms
コンパイル使用メモリ 74,096 KB
実行使用メモリ 54,004 KB
最終ジャッジ日時 2024-09-18 19:13:25
合計ジャッジ時間 5,738 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 115 ms
53,596 KB
testcase_01 AC 111 ms
53,760 KB
testcase_02 AC 114 ms
54,004 KB
testcase_03 AC 112 ms
53,720 KB
testcase_04 AC 110 ms
53,892 KB
testcase_05 AC 112 ms
53,916 KB
testcase_06 AC 111 ms
53,660 KB
testcase_07 AC 121 ms
53,980 KB
testcase_08 AC 125 ms
53,912 KB
testcase_09 AC 113 ms
53,652 KB
testcase_10 AC 116 ms
53,872 KB
testcase_11 AC 113 ms
53,972 KB
testcase_12 AC 103 ms
52,572 KB
testcase_13 AC 113 ms
53,872 KB
testcase_14 AC 113 ms
53,880 KB
testcase_15 AC 110 ms
53,076 KB
testcase_16 AC 111 ms
53,960 KB
testcase_17 AC 113 ms
53,852 KB
testcase_18 AC 121 ms
53,632 KB
testcase_19 AC 108 ms
52,844 KB
testcase_20 AC 114 ms
53,848 KB
testcase_21 AC 113 ms
53,784 KB
testcase_22 AC 114 ms
53,112 KB
testcase_23 AC 104 ms
52,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import static java.lang.System.*;

public class Main {
	static Scanner sc = new Scanner(System.in);
	public static void main(String[] args) {
		int x = sc.nextInt();
		int y = sc.nextInt();
		int r = sc.nextInt();
		double ans = Math.sqrt(2);
		ans *= r;
		ans += Math.abs(x)+Math.abs(y);
		out.println((int)Math.ceil(ans));
	}
}
0