結果

問題 No.98 円を描こう
ユーザー chiho_miyakochiho_miyako
提出日時 2015-04-10 13:48:34
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 378 bytes
コンパイル時間 1,854 ms
コンパイル使用メモリ 74,232 KB
実行使用メモリ 41,440 KB
最終ジャッジ日時 2024-07-04 13:32:03
合計ジャッジ時間 3,638 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
41,280 KB
testcase_01 AC 112 ms
40,208 KB
testcase_02 AC 105 ms
39,964 KB
testcase_03 AC 112 ms
40,868 KB
testcase_04 AC 116 ms
41,440 KB
testcase_05 AC 123 ms
41,064 KB
testcase_06 WA -
testcase_07 AC 119 ms
40,980 KB
testcase_08 AC 115 ms
41,068 KB
testcase_09 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
public class Main {
    public static void main(String[] args) throws Exception {
        Scanner koko = new Scanner(System.in);
        int x = koko.nextInt();
        int y = koko.nextInt();
        double d =  Math.sqrt(x*x+y*y);
        int a = 2*(int)Math.ceil(d);
        if(a==2*d){
            a=a+1;
        }
        System.out.println(a);
    }
}
0