結果

問題 No.98 円を描こう
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-11-12 06:39:34
言語 Java21
(openjdk 21)
結果
AC  
実行時間 134 ms / 5,000 ms
コード長 492 bytes
コンパイル時間 2,398 ms
コンパイル使用メモリ 73,676 KB
実行使用メモリ 41,420 KB
最終ジャッジ日時 2024-11-25 19:20:41
合計ジャッジ時間 4,117 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
41,228 KB
testcase_01 AC 133 ms
41,236 KB
testcase_02 AC 132 ms
41,420 KB
testcase_03 AC 130 ms
41,212 KB
testcase_04 AC 133 ms
41,368 KB
testcase_05 AC 130 ms
41,280 KB
testcase_06 AC 133 ms
41,024 KB
testcase_07 AC 133 ms
41,272 KB
testcase_08 AC 134 ms
41,260 KB
testcase_09 AC 134 ms
41,140 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int Xp = sc.nextInt();
        int Yp = sc.nextInt();
        
        int d = Xp*Xp + Yp*Yp;
        int r = (int)Math.sqrt(d);
        double z = r;
        while(true){
            if(z*z<=d){
                z=z+0.5;
            }else{
                break;
            }
        }
        int a = (int)(2*z);
        System.out.println(a);
    }
}
0