結果
問題 | No.98 円を描こう |
ユーザー | shin |
提出日時 | 2022-06-05 17:13:45 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 54 ms / 5,000 ms |
コード長 | 860 bytes |
コンパイル時間 | 5,351 ms |
コンパイル使用メモリ | 75,696 KB |
実行使用メモリ | 50,960 KB |
最終ジャッジ日時 | 2024-09-21 04:12:58 |
合計ジャッジ時間 | 4,722 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 53 ms
50,960 KB |
testcase_01 | AC | 52 ms
50,616 KB |
testcase_02 | AC | 54 ms
50,448 KB |
testcase_03 | AC | 53 ms
50,476 KB |
testcase_04 | AC | 53 ms
50,600 KB |
testcase_05 | AC | 53 ms
50,448 KB |
testcase_06 | AC | 52 ms
50,452 KB |
testcase_07 | AC | 52 ms
50,136 KB |
testcase_08 | AC | 52 ms
50,484 KB |
testcase_09 | AC | 51 ms
50,472 KB |
ソースコード
import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; import java.util.ArrayList; public class No98 { public static void main(String[] args) throws IOException{ //円を描こう String[] str = readStr()[0].split(" "); double X = Double.parseDouble(str[0]) , Y = Double.parseDouble(str[1]); double R = Math.sqrt(X * X + Y * Y); int D; if(R == Math.ceil(R)) { D = (int)R * 2 + 1; }else { D = (int)Math.ceil(R * 2); } System.out.println(D); } public static String[] readStr() throws IOException{ BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); ArrayList<String> list = new ArrayList<>(); do { list.add(br.readLine()); }while(br.ready()); br.close(); String[] text = new String[list.size()]; list.toArray(text); return text; } }