結果

問題 No.98 円を描こう
ユーザー kano_townkano_town
提出日時 2014-12-09 23:43:16
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 340 bytes
コンパイル時間 3,111 ms
コンパイル使用メモリ 74,676 KB
実行使用メモリ 54,472 KB
最終ジャッジ日時 2024-06-11 19:04:28
合計ジャッジ時間 5,182 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 110 ms
53,776 KB
testcase_01 AC 119 ms
53,684 KB
testcase_02 AC 123 ms
54,188 KB
testcase_03 AC 132 ms
54,400 KB
testcase_04 AC 125 ms
54,052 KB
testcase_05 AC 111 ms
53,640 KB
testcase_06 AC 119 ms
54,036 KB
testcase_07 AC 123 ms
54,472 KB
testcase_08 WA -
testcase_09 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Yukicoder98 {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		double x = sc.nextDouble(), y = sc.nextDouble();
		int res;
		for (res = 1; res <= 20001; res++) {
			if (x * x + y * y < (res/2.0) * (res/2.0)) break;
		}
		System.out.println(res);
	}
}
0