結果
問題 | No.98 円を描こう |
ユーザー | scache |
提出日時 | 2014-12-09 23:27:50 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 451 bytes |
コンパイル時間 | 4,337 ms |
コンパイル使用メモリ | 74,748 KB |
実行使用メモリ | 41,664 KB |
最終ジャッジ日時 | 2024-06-11 19:00:14 |
合計ジャッジ時間 | 4,599 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 118 ms
41,188 KB |
testcase_01 | AC | 107 ms
41,416 KB |
testcase_02 | AC | 115 ms
41,324 KB |
testcase_03 | AC | 114 ms
41,380 KB |
testcase_04 | AC | 110 ms
41,276 KB |
testcase_05 | AC | 114 ms
41,560 KB |
testcase_06 | WA | - |
testcase_07 | AC | 101 ms
41,408 KB |
testcase_08 | AC | 112 ms
41,328 KB |
testcase_09 | WA | - |
ソースコード
import java.util.Scanner; public class Main98 { public static void main(String[] args) { Main98 p = new Main98(); } public Main98() { Scanner sc = new Scanner(System.in); int x = sc.nextInt(); int y = sc.nextInt(); solve(x, y); } public void solve(int x, int y) { double r = Math.ceil(Math.sqrt(x*x+y*y)); if(x*x+y*y == (int)(r*r)) r = 2*r+1; else r = 2*r; System.out.println((int)r); } }