結果

問題 No.172 UFOを捕まえろ
ユーザー k_kadorak_kadora
提出日時 2015-05-27 14:48:09
言語 Java21
(openjdk 21)
結果
AC  
実行時間 135 ms / 5,000 ms
コード長 319 bytes
コンパイル時間 3,323 ms
コンパイル使用メモリ 73,772 KB
実行使用メモリ 41,588 KB
最終ジャッジ日時 2024-10-15 14:10:15
合計ジャッジ時間 7,420 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
40,984 KB
testcase_01 AC 131 ms
40,924 KB
testcase_02 AC 130 ms
41,044 KB
testcase_03 AC 131 ms
40,924 KB
testcase_04 AC 131 ms
41,292 KB
testcase_05 AC 118 ms
41,100 KB
testcase_06 AC 133 ms
41,588 KB
testcase_07 AC 132 ms
41,008 KB
testcase_08 AC 132 ms
41,040 KB
testcase_09 AC 134 ms
41,240 KB
testcase_10 AC 132 ms
41,096 KB
testcase_11 AC 134 ms
41,228 KB
testcase_12 AC 133 ms
41,032 KB
testcase_13 AC 132 ms
40,992 KB
testcase_14 AC 132 ms
41,116 KB
testcase_15 AC 133 ms
41,244 KB
testcase_16 AC 132 ms
40,944 KB
testcase_17 AC 132 ms
41,036 KB
testcase_18 AC 135 ms
40,896 KB
testcase_19 AC 132 ms
41,264 KB
testcase_20 AC 130 ms
41,328 KB
testcase_21 AC 120 ms
39,956 KB
testcase_22 AC 131 ms
41,392 KB
testcase_23 AC 131 ms
41,048 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
public class Ufo {
	public static void main(String[] arg){
		Scanner sc = new Scanner(System.in);
		int x,y,r,res;
		double temp;
		x = sc.nextInt();
		y = sc.nextInt();
		r = sc.nextInt();
		temp = 2 * r / Math.sqrt(2);
		res = Math.abs(x)+Math.abs(y)+(int)temp + 1;
		System.out.println(res);
	}
}
0