結果
問題 | No.98 円を描こう |
ユーザー | kano_town |
提出日時 | 2014-12-09 23:37:55 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 377 bytes |
コンパイル時間 | 3,421 ms |
コンパイル使用メモリ | 74,708 KB |
実行使用メモリ | 54,660 KB |
最終ジャッジ日時 | 2024-06-11 19:03:24 |
合計ジャッジ時間 | 4,913 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 121 ms
54,040 KB |
testcase_01 | AC | 106 ms
53,700 KB |
testcase_02 | AC | 118 ms
53,500 KB |
testcase_03 | AC | 109 ms
53,700 KB |
testcase_04 | AC | 105 ms
53,608 KB |
testcase_05 | AC | 109 ms
53,784 KB |
testcase_06 | WA | - |
testcase_07 | AC | 121 ms
54,356 KB |
testcase_08 | AC | 108 ms
53,624 KB |
testcase_09 | WA | - |
ソースコード
import java.util.Scanner; public class Yukicoder98 { public static void main(String[] args) { Scanner sc = new Scanner(System.in); double x = sc.nextDouble(), y = sc.nextDouble(); if (Math.hypot(x, y) % 1 == 0) System.out.println(1 + 2 * (int) Math.ceil(Math.hypot(x, y))); else System.out.println(2 * (int) Math.ceil(Math.hypot(x, y))); } }