結果

問題 No.98 円を描こう
ユーザー l1267976l1267976
提出日時 2017-03-19 15:36:01
言語 Java21
(openjdk 21)
結果
AC  
実行時間 148 ms / 5,000 ms
コード長 490 bytes
コンパイル時間 3,466 ms
コンパイル使用メモリ 74,136 KB
実行使用メモリ 41,784 KB
最終ジャッジ日時 2024-07-04 23:37:09
合計ジャッジ時間 5,613 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 143 ms
41,732 KB
testcase_01 AC 141 ms
41,684 KB
testcase_02 AC 140 ms
41,436 KB
testcase_03 AC 148 ms
41,404 KB
testcase_04 AC 141 ms
41,784 KB
testcase_05 AC 146 ms
41,420 KB
testcase_06 AC 144 ms
41,492 KB
testcase_07 AC 133 ms
41,020 KB
testcase_08 AC 146 ms
41,420 KB
testcase_09 AC 146 ms
41,536 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();

        double hypo = Math.sqrt(Math.pow(x, 2) + Math.pow(y, 2));

        double diameter = hypo * 2;

        if (diameter - Math.floor(diameter) == 0) {
            diameter += 1;
        }

        System.out.println((int) Math.ceil(diameter));

        sc.close();
    }

}
0