結果
問題 | No.98 円を描こう |
ユーザー | shinwisteria |
提出日時 | 2019-01-23 19:35:11 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 141 ms / 5,000 ms |
コード長 | 350 bytes |
コンパイル時間 | 3,529 ms |
コンパイル使用メモリ | 74,332 KB |
実行使用メモリ | 41,904 KB |
最終ジャッジ日時 | 2024-09-16 04:28:51 |
合計ジャッジ時間 | 5,161 ms |
ジャッジサーバーID (参考情報) |
judge6 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 108 ms
40,584 KB |
testcase_01 | AC | 131 ms
41,420 KB |
testcase_02 | AC | 141 ms
41,904 KB |
testcase_03 | AC | 111 ms
40,504 KB |
testcase_04 | AC | 120 ms
41,100 KB |
testcase_05 | AC | 117 ms
41,312 KB |
testcase_06 | AC | 123 ms
41,480 KB |
testcase_07 | AC | 118 ms
40,648 KB |
testcase_08 | AC | 121 ms
40,484 KB |
testcase_09 | AC | 132 ms
41,300 KB |
ソースコード
import java.util.Scanner; public class No98 { public static void main(String[] args) { Scanner s = new Scanner(System.in); double xp = s.nextDouble() , yp = s.nextDouble(); s.close(); xp = 2 * Math.sqrt(xp*xp + yp*yp); int r; if(xp == (int)xp){ r = (int)xp + 1; }else{ r = (int)Math.ceil(xp); } System.out.println(r); } }