結果

問題 No.1063 ルートの計算 / Sqrt Calculation
ユーザー kichi2004_kichi2004_
提出日時 2020-04-20 14:01:56
言語 Java21
(openjdk 21)
結果
AC  
実行時間 136 ms / 2,000 ms
コード長 480 bytes
コンパイル時間 2,365 ms
コンパイル使用メモリ 79,444 KB
実行使用メモリ 41,680 KB
最終ジャッジ日時 2024-10-06 08:41:16
合計ジャッジ時間 5,085 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
41,100 KB
testcase_01 AC 131 ms
41,308 KB
testcase_02 AC 134 ms
41,116 KB
testcase_03 AC 133 ms
41,156 KB
testcase_04 AC 131 ms
41,216 KB
testcase_05 AC 132 ms
41,416 KB
testcase_06 AC 130 ms
41,156 KB
testcase_07 AC 136 ms
41,528 KB
testcase_08 AC 135 ms
41,680 KB
testcase_09 AC 134 ms
41,392 KB
testcase_10 AC 134 ms
41,224 KB
testcase_11 AC 133 ms
41,380 KB
testcase_12 AC 134 ms
41,208 KB
testcase_13 AC 133 ms
41,124 KB
testcase_14 AC 132 ms
41,528 KB
testcase_15 AC 132 ms
40,992 KB
testcase_16 AC 136 ms
41,408 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayList;
import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        if (n < 1 || n > 1000000000) return;

        int a = 1, b = n;
        for (int i = 1; i * i <= n; ++i) {
            int x = i * i;
            if (n % x != 0) continue;
            a = i;
            b = n / x;
        }

        System.out.printf("%d %d%n", a, b);
    }
}
0