結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
53,488 KB
testcase_01 AC 105 ms
53,680 KB
testcase_02 AC 108 ms
53,572 KB
testcase_03 AC 116 ms
53,764 KB
testcase_04 AC 120 ms
53,572 KB
testcase_05 AC 122 ms
54,004 KB
testcase_06 AC 110 ms
53,652 KB
testcase_07 AC 120 ms
54,464 KB
testcase_08 AC 119 ms
53,936 KB
testcase_09 AC 117 ms
53,912 KB
権限があれば一括ダウンロードができます

ソースコード

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 <= 30000; res++) {
			if (x * x + y * y < (res/2.0) * (res/2.0)) break;
		}
		System.out.println(res);
	}
}
0