結果

問題 No.98 円を描こう
ユーザー dazydazy
提出日時 2016-09-10 02:32:26
言語 Java21
(openjdk 21)
結果
AC  
実行時間 135 ms / 5,000 ms
コード長 336 bytes
コンパイル時間 3,744 ms
コンパイル使用メモリ 74,112 KB
実行使用メモリ 41,408 KB
最終ジャッジ日時 2024-11-16 19:35:30
合計ジャッジ時間 5,760 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
41,044 KB
testcase_01 AC 132 ms
41,408 KB
testcase_02 AC 132 ms
41,348 KB
testcase_03 AC 135 ms
40,912 KB
testcase_04 AC 134 ms
40,944 KB
testcase_05 AC 132 ms
41,132 KB
testcase_06 AC 126 ms
41,068 KB
testcase_07 AC 119 ms
39,780 KB
testcase_08 AC 132 ms
41,284 KB
testcase_09 AC 133 ms
41,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Run {
    public static void main (String arg[]) {
        Scanner scan = new Scanner(System.in);
        double X = scan.nextInt();
        double Y = scan.nextInt();
        int ans;

        ans = (int) (Math.pow(Math.pow(X, 2)+Math.pow(Y, 2), 0.5) * 2);
        System.out.println(ans + 1);
    }
}
0