結果

問題 No.98 円を描こう
ユーザー dogwood0424dogwood0424
提出日時 2017-12-04 15:17:13
言語 Java21
(openjdk 21)
結果
AC  
実行時間 132 ms / 5,000 ms
コード長 279 bytes
コンパイル時間 3,349 ms
コンパイル使用メモリ 74,760 KB
実行使用メモリ 54,128 KB
最終ジャッジ日時 2024-05-06 09:35:10
合計ジャッジ時間 5,412 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
53,920 KB
testcase_01 AC 129 ms
53,816 KB
testcase_02 AC 125 ms
53,912 KB
testcase_03 AC 117 ms
52,996 KB
testcase_04 AC 129 ms
54,000 KB
testcase_05 AC 127 ms
54,072 KB
testcase_06 AC 129 ms
53,824 KB
testcase_07 AC 132 ms
53,968 KB
testcase_08 AC 132 ms
54,128 KB
testcase_09 AC 132 ms
53,608 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class No98 {
	public static void main(String[]args) {
		Scanner sc = new Scanner(System.in);
		int x = sc.nextInt();
		int y = sc.nextInt();

		double d = Math.sqrt(x*x+y*y);


		int D = (int)Math.floor(2*d);

		System.out.println(D+1);

	}


}
0