結果

問題 No.98 円を描こう
ユーザー takeya_okinotakeya_okino
提出日時 2017-07-08 22:49:08
言語 Java21
(openjdk 21)
結果
AC  
実行時間 129 ms / 5,000 ms
コード長 411 bytes
コンパイル時間 2,138 ms
コンパイル使用メモリ 74,516 KB
実行使用メモリ 53,976 KB
最終ジャッジ日時 2024-10-06 20:14:21
合計ジャッジ時間 3,713 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
53,976 KB
testcase_01 AC 122 ms
53,872 KB
testcase_02 AC 125 ms
53,664 KB
testcase_03 AC 120 ms
53,948 KB
testcase_04 AC 119 ms
53,832 KB
testcase_05 AC 122 ms
53,816 KB
testcase_06 AC 120 ms
53,660 KB
testcase_07 AC 129 ms
53,696 KB
testcase_08 AC 124 ms
53,944 KB
testcase_09 AC 125 ms
53,968 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 s = xp * xp + yp * yp;
    int r = (int)Math.sqrt(s);
    int ans = 0;
    for(int i = 2 * r; i <= 2 * r + 4; i++) {
      if(i * i > 4 * s) {
        ans = i;
        break; 
      }
    }
    System.out.println(ans);
  }
}
0