結果

問題 No.98 円を描こう
ユーザー kaoetayakaoetaya
提出日時 2016-11-11 10:55:36
言語 Java21
(openjdk 21)
結果
AC  
実行時間 134 ms / 5,000 ms
コード長 302 bytes
コンパイル時間 2,998 ms
コンパイル使用メモリ 74,848 KB
実行使用メモリ 42,200 KB
最終ジャッジ日時 2024-05-04 02:02:15
合計ジャッジ時間 4,901 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
42,200 KB
testcase_01 AC 124 ms
41,700 KB
testcase_02 AC 118 ms
40,912 KB
testcase_03 AC 134 ms
41,408 KB
testcase_04 AC 113 ms
41,024 KB
testcase_05 AC 127 ms
41,748 KB
testcase_06 AC 131 ms
41,372 KB
testcase_07 AC 120 ms
42,056 KB
testcase_08 AC 131 ms
41,568 KB
testcase_09 AC 125 ms
41,676 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class pre {
    public static void main(String[] args) {

        Scanner s = new Scanner(System.in);
		double n = s.nextDouble(),m = s.nextDouble();
		
		double r = Math.sqrt(Math.pow(n,2) + Math.pow(m,2));
		
		System.out.println((int)Math.floor(2 * r) + 1);
    }
}
0