結果

問題 No.98 円を描こう
ユーザー kaoetayakaoetaya
提出日時 2016-11-11 10:55:36
言語 Java
(openjdk 23)
結果
AC  
実行時間 128 ms / 5,000 ms
コード長 302 bytes
コンパイル時間 3,005 ms
コンパイル使用メモリ 74,032 KB
実行使用メモリ 54,392 KB
最終ジャッジ日時 2024-11-25 07:56:59
合計ジャッジ時間 4,961 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
54,096 KB
testcase_01 AC 125 ms
53,920 KB
testcase_02 AC 114 ms
53,372 KB
testcase_03 AC 114 ms
53,300 KB
testcase_04 AC 124 ms
53,040 KB
testcase_05 AC 128 ms
54,392 KB
testcase_06 AC 126 ms
53,940 KB
testcase_07 AC 116 ms
52,896 KB
testcase_08 AC 124 ms
53,612 KB
testcase_09 AC 113 ms
53,100 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