結果
問題 | No.1063 ルートの計算 / Sqrt Calculation |
ユーザー | xRS43BofaUEZ5gc |
提出日時 | 2021-03-29 15:17:00 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 536 bytes |
コンパイル時間 | 3,278 ms |
コンパイル使用メモリ | 76,536 KB |
実行使用メモリ | 61,720 KB |
最終ジャッジ日時 | 2024-05-06 23:13:49 |
合計ジャッジ時間 | 8,026 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 136 ms
61,720 KB |
testcase_01 | AC | 146 ms
54,468 KB |
testcase_02 | AC | 141 ms
53,876 KB |
testcase_03 | AC | 142 ms
54,792 KB |
testcase_04 | AC | 142 ms
54,520 KB |
testcase_05 | AC | 163 ms
54,988 KB |
testcase_06 | WA | - |
testcase_07 | TLE | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
ソースコード
import java.util.Scanner; public class HelloWorld { public static void main (String[] args) { Scanner sc = new Scanner(System.in); double n = sc.nextDouble(); sc.close(); boolean flag = false; for (int b = 0; b <= Math.sqrt(n); b ++) { for (int a = 0; a <= Math.sqrt(n); a ++) { if (a * a * b == n) { flag = true; System.out.println(a + " " + b); break; } } if (flag == true) { break; } } if (flag == false) { System.out.println(1 + " " + (int)n); } } }