結果

問題 No.371 ぼく悪いプライムじゃないよ
ユーザー KilisameKilisame
提出日時 2017-07-13 13:31:26
言語 Java21
(openjdk 21)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 2,299 bytes
コンパイル時間 1,971 ms
コンパイル使用メモリ 78,456 KB
実行使用メモリ 65,872 KB
最終ジャッジ日時 2024-10-07 18:12:22
合計ジャッジ時間 14,669 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
54,468 KB
testcase_01 AC 130 ms
54,116 KB
testcase_02 AC 131 ms
54,344 KB
testcase_03 AC 124 ms
54,372 KB
testcase_04 AC 122 ms
54,232 KB
testcase_05 AC 124 ms
54,060 KB
testcase_06 AC 120 ms
54,132 KB
testcase_07 AC 121 ms
52,792 KB
testcase_08 AC 123 ms
54,228 KB
testcase_09 AC 125 ms
53,900 KB
testcase_10 AC 109 ms
52,996 KB
testcase_11 AC 108 ms
52,988 KB
testcase_12 AC 121 ms
54,112 KB
testcase_13 AC 122 ms
54,224 KB
testcase_14 AC 112 ms
53,696 KB
testcase_15 AC 122 ms
54,244 KB
testcase_16 AC 160 ms
54,512 KB
testcase_17 AC 116 ms
53,868 KB
testcase_18 AC 128 ms
54,256 KB
testcase_19 AC 129 ms
54,040 KB
testcase_20 AC 159 ms
54,300 KB
testcase_21 AC 137 ms
54,264 KB
testcase_22 AC 251 ms
57,796 KB
testcase_23 AC 225 ms
57,072 KB
testcase_24 AC 231 ms
57,504 KB
testcase_25 AC 227 ms
57,308 KB
testcase_26 TLE -
testcase_27 AC 123 ms
54,160 KB
testcase_28 AC 321 ms
59,788 KB
testcase_29 AC 840 ms
63,812 KB
testcase_30 AC 271 ms
57,968 KB
testcase_31 AC 304 ms
57,680 KB
testcase_32 AC 292 ms
57,880 KB
testcase_33 AC 304 ms
57,932 KB
testcase_34 AC 351 ms
59,388 KB
testcase_35 AC 312 ms
57,844 KB
testcase_36 AC 292 ms
58,212 KB
testcase_37 AC 287 ms
57,412 KB
testcase_38 AC 281 ms
57,996 KB
testcase_39 AC 262 ms
57,816 KB
testcase_40 AC 270 ms
57,932 KB
testcase_41 AC 230 ms
57,152 KB
testcase_42 AC 164 ms
53,876 KB
testcase_43 AC 410 ms
61,788 KB
testcase_44 AC 641 ms
63,264 KB
testcase_45 AC 122 ms
54,320 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.math.BigInteger;
import java.util.Scanner;

public class Main {

    /* 検査範囲数最小 */
    private long l;

    /* 検査範囲数最大 */
    private long h;

    public Main(long l, long h) {
        this.l = l;
        this.h = h;
    }

    /**
     * 素数判定。isProbablePrimeのcertaintyは適当に。
     */
    private boolean isPrime(long l) {
        BigInteger bi = new BigInteger(String.valueOf(l));
        return bi.isProbablePrime(7);
    }

    /**
     * lを素因数分解したときに1番小さい素因数を返す。
     */
    private long getMinPrimeFactor(long l) {
        /* lが素数ならlで確定 */
        if (isPrime(l)) {
            return l;
        }
        /*
         * lが合成数ならばp(素数)とn=l/p(素数かわからない)の2数の積に分解できる。この時pとnのうち小さいほうの数が最大となるのは、p=n(両者素数)
         * のときなので、とりあえずsqrt(l)以下の最大の素数から割り始める
         */
        for (long i = (long) Math.sqrt(l); i > 1; i--) {
            if (isPrime(i) && l % i == 0) {
                /* 割り切れた場合、pと、nの素因数のうちの最小のもの、を比較して小さいほうがこの数の最小の素因数 */
                long quotient = l / i;
                return Math.min(i, getMinPrimeFactor(quotient));
            }
        }
        /* 素数でないならば、必ずどこかで割り切れる素因数が存在するので、ここに到達することはない。 */
        throw new IllegalArgumentException();
    }

    private void execute() {
        for (long i = (long) Math.sqrt(h); i > 1; i--) {
            if (isPrime(i)) {
                for (long j = h; j >= l; j--) {
                    if (j % i == 0 && getMinPrimeFactor(j / i) >= i) {
                        System.out.println(j);
                        System.exit(0);
                    }
                }
            }
        }
    }

    public static void main(String[] args) {
        Scanner cin = new Scanner(System.in);
        long l = Long.parseLong(cin.next());
        long h = Long.parseLong(cin.next());
        cin.close();
        Main prime = new Main(l, h);
        prime.execute();
    }
}
0