結果

問題 No.98 円を描こう
ユーザー kenji_shioyakenji_shioya
提出日時 2016-06-27 17:30:33
言語 Java21
(openjdk 21)
結果
AC  
実行時間 135 ms / 5,000 ms
コード長 363 bytes
コンパイル時間 4,447 ms
コンパイル使用メモリ 74,132 KB
実行使用メモリ 41,236 KB
最終ジャッジ日時 2024-10-11 22:24:12
合計ジャッジ時間 5,570 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
41,172 KB
testcase_01 AC 134 ms
41,224 KB
testcase_02 AC 122 ms
40,064 KB
testcase_03 AC 119 ms
40,056 KB
testcase_04 AC 135 ms
40,820 KB
testcase_05 AC 130 ms
41,072 KB
testcase_06 AC 120 ms
39,664 KB
testcase_07 AC 119 ms
40,276 KB
testcase_08 AC 132 ms
41,188 KB
testcase_09 AC 134 ms
41,236 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Exercise133{
  public static void main (String[] args){

    Scanner sc = new Scanner(System.in);

    int x = sc.nextInt();
    int y = sc.nextInt();

    double r = Math.sqrt(x * x + y * y);
    if(r % 1 == 0){
      System.out.println((int)(r * 2 + 1));
    }else{
      System.out.println((int)(Math.ceil(r * 2)));
    }
	}
}
0