結果
問題 | No.98 円を描こう |
ユーザー | Lo_OT |
提出日時 | 2018-03-30 00:29:16 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 901 bytes |
コンパイル時間 | 2,752 ms |
コンパイル使用メモリ | 74,668 KB |
実行使用メモリ | 54,124 KB |
最終ジャッジ日時 | 2024-06-26 00:08:51 |
合計ジャッジ時間 | 4,963 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 143 ms
54,124 KB |
testcase_01 | AC | 142 ms
53,784 KB |
testcase_02 | AC | 140 ms
53,820 KB |
testcase_03 | AC | 141 ms
53,876 KB |
testcase_04 | WA | - |
testcase_05 | AC | 141 ms
53,856 KB |
testcase_06 | AC | 144 ms
53,592 KB |
testcase_07 | AC | 141 ms
53,900 KB |
testcase_08 | AC | 141 ms
54,032 KB |
testcase_09 | WA | - |
ソースコード
import java.io.OutputStream; import java.io.IOException; import java.io.InputStream; import java.io.PrintWriter; import java.util.Scanner; /** * Built using CHelper plug-in * Actual solution is at the top */ public class Main { public static void main(String[] args) { InputStream inputStream = System.in; OutputStream outputStream = System.out; Scanner in = new Scanner(inputStream); PrintWriter out = new PrintWriter(outputStream); Yukicoder solver = new Yukicoder(); solver.solve(1, in, out); out.close(); } static class Yukicoder { public void solve(int testNumber, Scanner in, PrintWriter out) { int x = in.nextInt(); int y = in.nextInt(); double radius = Math.sqrt(Math.pow(x, 2) + Math.pow(y, 2)) * 2; out.println((int) Math.ceil(radius + 0.5)); } } }