結果

問題 No.98 円を描こう
ユーザー papipenpapipen
提出日時 2017-04-11 22:46:48
言語 Java21
(openjdk 21)
結果
AC  
実行時間 124 ms / 5,000 ms
コード長 321 bytes
コンパイル時間 1,981 ms
コンパイル使用メモリ 74,224 KB
実行使用メモリ 41,664 KB
最終ジャッジ日時 2024-07-18 09:08:29
合計ジャッジ時間 3,642 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
41,644 KB
testcase_01 AC 122 ms
41,392 KB
testcase_02 AC 123 ms
41,400 KB
testcase_03 AC 114 ms
40,128 KB
testcase_04 AC 124 ms
41,156 KB
testcase_05 AC 117 ms
41,664 KB
testcase_06 AC 110 ms
40,200 KB
testcase_07 AC 122 ms
41,628 KB
testcase_08 AC 106 ms
41,044 KB
testcase_09 AC 122 ms
41,664 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
class N098{
	public static void main(String args[]){
		Scanner s = new Scanner(System.in);
		int x = s.nextInt();
		int y = s.nextInt();
		double a = Math.pow(x, 2) + Math.pow(y, 2);
		for(int i = 0; true; i++){
			if(Math.pow(i / 2d, 2) > a){
				System.out.println(i);
				break;
			}
		}
	}
}
0