結果

問題 No.414 衝動
ユーザー denderaKawazudenderaKawazu
提出日時 2018-02-09 14:15:19
言語 Java21
(openjdk 21)
結果
AC  
実行時間 920 ms / 1,000 ms
コード長 1,466 bytes
コンパイル時間 2,446 ms
コンパイル使用メモリ 80,540 KB
実行使用メモリ 128,356 KB
最終ジャッジ日時 2024-11-15 09:18:15
合計ジャッジ時間 10,484 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 672 ms
99,380 KB
testcase_01 AC 163 ms
42,460 KB
testcase_02 AC 153 ms
42,296 KB
testcase_03 AC 907 ms
128,216 KB
testcase_04 AC 346 ms
74,072 KB
testcase_05 AC 918 ms
128,356 KB
testcase_06 AC 914 ms
128,012 KB
testcase_07 AC 153 ms
42,548 KB
testcase_08 AC 636 ms
91,012 KB
testcase_09 AC 920 ms
128,084 KB
testcase_10 AC 152 ms
42,260 KB
testcase_11 AC 237 ms
48,756 KB
testcase_12 AC 194 ms
44,292 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.OutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.PrintWriter;
import java.util.HashSet;
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);
        Task solver = new Task();
        solver.solve(1, in, out);
        out.close();
    }

    static class Task {
        private static HashSet<Integer> primeNumbers = new HashSet<>();

        private static long getMinDivisor(long n) {
            primeNumbers.clear();
            int max = (int) Math.sqrt(n) + 1;
            for (int i = 2; i < max; i++) {
                if (!primeNumbers.contains(i)) {
                    int cn = i;
                    while (cn < max) {
                        primeNumbers.add(cn);
                        cn += i;
                    }
                    if (n % (long) i == 0) {
                        return i;
                    }
                }
            }
            return n;
        }

        public void solve(int testNumber, Scanner in, PrintWriter out) {
            long n = in.nextLong();
            long d = getMinDivisor(n);
            out.println(d + " " + n / d);
        }

    }
}

0