結果

問題 No.98 円を描こう
ユーザー takeya_okinotakeya_okino
提出日時 2017-07-08 22:45:54
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 402 bytes
コンパイル時間 1,841 ms
コンパイル使用メモリ 73,652 KB
実行使用メモリ 55,892 KB
最終ジャッジ日時 2024-10-06 20:13:39
合計ジャッジ時間 3,677 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 106 ms
40,972 KB
testcase_03 WA -
testcase_04 AC 113 ms
40,868 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 123 ms
41,116 KB
testcase_08 AC 127 ms
40,884 KB
testcase_09 WA -
権限があれば一括ダウンロードができます

ソースコード

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 s = xp * xp + yp * yp;
    int r = (int)Math.sqrt(s);
    int ans = 0;
    for(int i = r; i < r + 3; i++) {
      if(i * i > s) {
        ans = i;
        break; 
      }
    }
    System.out.println(2 * ans);
  }
}
0