結果

問題 No.172 UFOを捕まえろ
ユーザー TatsuDXTatsuDX
提出日時 2016-09-09 00:13:18
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 343 bytes
コンパイル時間 3,347 ms
コンパイル使用メモリ 74,496 KB
実行使用メモリ 54,244 KB
最終ジャッジ日時 2024-11-15 22:35:05
合計ジャッジ時間 7,064 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
54,084 KB
testcase_01 AC 125 ms
54,108 KB
testcase_02 AC 130 ms
54,024 KB
testcase_03 AC 127 ms
54,020 KB
testcase_04 AC 129 ms
54,092 KB
testcase_05 AC 127 ms
54,112 KB
testcase_06 AC 129 ms
54,136 KB
testcase_07 AC 128 ms
54,052 KB
testcase_08 AC 124 ms
53,884 KB
testcase_09 AC 131 ms
54,244 KB
testcase_10 AC 128 ms
54,240 KB
testcase_11 AC 131 ms
53,992 KB
testcase_12 AC 124 ms
54,244 KB
testcase_13 AC 125 ms
54,136 KB
testcase_14 AC 125 ms
54,164 KB
testcase_15 AC 126 ms
54,140 KB
testcase_16 AC 127 ms
53,908 KB
testcase_17 AC 122 ms
54,000 KB
testcase_18 AC 127 ms
54,224 KB
testcase_19 AC 120 ms
53,880 KB
testcase_20 AC 123 ms
54,040 KB
testcase_21 AC 128 ms
54,044 KB
testcase_22 WA -
testcase_23 AC 128 ms
53,864 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Test {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);

		int x = sc.nextInt(), y = sc.nextInt(), r = sc.nextInt(), z = 0, w;
		if(x < 0){x *= -1;}
		if(y < 0){y *= -1;}
		while(z*z*2 <= r*r){z++;}
		w = z;
		if(z*(z-1)*2 > r*r){w--;}
		System.out.println(x+y+z+w);
	}
}
0