結果

問題 No.98 円を描こう
ユーザー aaaaasatoriaaaaasatori
提出日時 2018-02-15 10:46:54
言語 Java21
(openjdk 21)
結果
AC  
実行時間 145 ms / 5,000 ms
コード長 290 bytes
コンパイル時間 3,568 ms
コンパイル使用メモリ 74,000 KB
実行使用メモリ 54,564 KB
最終ジャッジ日時 2024-06-07 16:10:18
合計ジャッジ時間 5,676 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 142 ms
54,232 KB
testcase_01 AC 143 ms
54,076 KB
testcase_02 AC 143 ms
54,332 KB
testcase_03 AC 127 ms
53,424 KB
testcase_04 AC 143 ms
54,340 KB
testcase_05 AC 145 ms
54,292 KB
testcase_06 AC 145 ms
54,280 KB
testcase_07 AC 145 ms
54,564 KB
testcase_08 AC 144 ms
54,224 KB
testcase_09 AC 144 ms
54,172 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class No98 {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		double x = sc.nextDouble();
		double y = sc.nextDouble();
		int R = (int)(Math.sqrt(Math.pow(x, 2) + Math.pow(y, 2)) * 2) + 1;
		
		System.out.println(R);
	}
}
0