結果

問題 No.98 円を描こう
ユーザー YatsukuYatsuku
提出日時 2015-12-16 17:06:49
言語 Java21
(openjdk 21)
結果
AC  
実行時間 132 ms / 5,000 ms
コード長 372 bytes
コンパイル時間 2,175 ms
コンパイル使用メモリ 74,756 KB
実行使用メモリ 41,544 KB
最終ジャッジ日時 2024-09-16 05:42:57
合計ジャッジ時間 4,076 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
41,396 KB
testcase_01 AC 131 ms
40,912 KB
testcase_02 AC 127 ms
41,220 KB
testcase_03 AC 128 ms
41,232 KB
testcase_04 AC 130 ms
41,544 KB
testcase_05 AC 131 ms
41,360 KB
testcase_06 AC 128 ms
41,384 KB
testcase_07 AC 127 ms
40,976 KB
testcase_08 AC 132 ms
41,404 KB
testcase_09 AC 129 ms
41,372 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class No_98 {
	public static void main(String args[]) {
		Scanner stdIn = new Scanner(System.in);		
		int xaxis = stdIn.nextInt();
		int yaxis = stdIn.nextInt();

		double len = Math.pow(xaxis, 2) + Math.pow(yaxis, 2);
		len = Math.sqrt(len);

		for (int i = 0; ; i++) {
			if (len * 2 < i) {
				System.out.println(i);
				break;
			}
		}
	}
}
0