結果
問題 | No.98 円を描こう |
ユーザー | HEGO55 |
提出日時 | 2017-05-17 17:30:54 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 453 bytes |
コンパイル時間 | 3,277 ms |
コンパイル使用メモリ | 74,980 KB |
実行使用メモリ | 54,084 KB |
最終ジャッジ日時 | 2024-09-17 21:02:07 |
合計ジャッジ時間 | 5,294 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 127 ms
41,172 KB |
testcase_01 | AC | 114 ms
39,892 KB |
testcase_02 | AC | 115 ms
40,016 KB |
testcase_03 | AC | 125 ms
41,164 KB |
testcase_04 | WA | - |
testcase_05 | AC | 127 ms
41,124 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
ソースコード
import java.util.*; public class Test39{ public static void main(String[] args) { Scanner sc = new Scanner(System.in); int Xp = sc.nextInt(); int Yp = sc.nextInt(); int D = (Xp*Xp)+(Yp*Yp); int i = 1; if(Xp == Yp){ if(Xp != 0){ while(D>i*i){ i++; } System.out.println(2*i); }else{ System.out.println("1"); } }else{ while(D>i*i){ i++; } System.out.println((2*i)+1); } } }