結果

問題 No.172 UFOを捕まえろ
ユーザー Daigo HIROOKADaigo HIROOKA
提出日時 2018-05-24 22:34:27
言語 Java21
(openjdk 21)
結果
AC  
実行時間 144 ms / 5,000 ms
コード長 345 bytes
コンパイル時間 3,249 ms
コンパイル使用メモリ 73,892 KB
実行使用メモリ 41,864 KB
最終ジャッジ日時 2024-06-28 17:32:48
合計ジャッジ時間 7,505 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
40,992 KB
testcase_01 AC 139 ms
41,592 KB
testcase_02 AC 140 ms
41,628 KB
testcase_03 AC 122 ms
40,764 KB
testcase_04 AC 134 ms
41,456 KB
testcase_05 AC 122 ms
40,788 KB
testcase_06 AC 131 ms
41,452 KB
testcase_07 AC 136 ms
41,752 KB
testcase_08 AC 137 ms
41,764 KB
testcase_09 AC 127 ms
41,184 KB
testcase_10 AC 142 ms
41,480 KB
testcase_11 AC 140 ms
41,800 KB
testcase_12 AC 134 ms
41,584 KB
testcase_13 AC 135 ms
41,568 KB
testcase_14 AC 133 ms
40,972 KB
testcase_15 AC 136 ms
41,408 KB
testcase_16 AC 140 ms
41,584 KB
testcase_17 AC 140 ms
41,480 KB
testcase_18 AC 144 ms
41,524 KB
testcase_19 AC 136 ms
41,544 KB
testcase_20 AC 137 ms
41,588 KB
testcase_21 AC 136 ms
41,864 KB
testcase_22 AC 135 ms
41,500 KB
testcase_23 AC 136 ms
41,788 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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