結果

問題 No.371 ぼく悪いプライムじゃないよ
ユーザー tentententen
提出日時 2021-01-26 16:09:12
言語 Java21
(openjdk 21)
結果
AC  
実行時間 792 ms / 1,000 ms
コード長 1,230 bytes
コンパイル時間 2,195 ms
コンパイル使用メモリ 77,848 KB
実行使用メモリ 54,380 KB
最終ジャッジ日時 2024-06-23 15:26:33
合計ジャッジ時間 13,478 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
54,184 KB
testcase_01 AC 134 ms
54,092 KB
testcase_02 AC 133 ms
53,828 KB
testcase_03 AC 134 ms
54,152 KB
testcase_04 AC 133 ms
54,128 KB
testcase_05 AC 134 ms
54,236 KB
testcase_06 AC 133 ms
53,988 KB
testcase_07 AC 131 ms
54,012 KB
testcase_08 AC 131 ms
54,076 KB
testcase_09 AC 132 ms
54,084 KB
testcase_10 AC 135 ms
53,836 KB
testcase_11 AC 133 ms
54,100 KB
testcase_12 AC 133 ms
54,160 KB
testcase_13 AC 131 ms
53,884 KB
testcase_14 AC 133 ms
53,956 KB
testcase_15 AC 133 ms
54,100 KB
testcase_16 AC 133 ms
54,216 KB
testcase_17 AC 133 ms
54,156 KB
testcase_18 AC 134 ms
54,304 KB
testcase_19 AC 135 ms
53,980 KB
testcase_20 AC 135 ms
54,224 KB
testcase_21 AC 135 ms
54,084 KB
testcase_22 AC 156 ms
53,932 KB
testcase_23 AC 135 ms
53,968 KB
testcase_24 AC 154 ms
54,316 KB
testcase_25 AC 792 ms
54,380 KB
testcase_26 AC 161 ms
54,192 KB
testcase_27 AC 154 ms
53,932 KB
testcase_28 AC 155 ms
54,108 KB
testcase_29 AC 155 ms
54,344 KB
testcase_30 AC 327 ms
54,192 KB
testcase_31 AC 223 ms
54,136 KB
testcase_32 AC 183 ms
54,008 KB
testcase_33 AC 571 ms
54,156 KB
testcase_34 AC 291 ms
53,960 KB
testcase_35 AC 493 ms
54,184 KB
testcase_36 AC 185 ms
54,036 KB
testcase_37 AC 184 ms
54,052 KB
testcase_38 AC 289 ms
54,096 KB
testcase_39 AC 280 ms
54,296 KB
testcase_40 AC 303 ms
54,064 KB
testcase_41 AC 543 ms
54,312 KB
testcase_42 AC 583 ms
54,184 KB
testcase_43 AC 159 ms
54,208 KB
testcase_44 AC 156 ms
54,204 KB
testcase_45 AC 133 ms
54,116 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        long low = sc.nextLong();
        long high = sc.nextLong();
        long p = (long)Math.sqrt(high);
        boolean[] isNotPrime = new boolean[(int)p + 1];
        ArrayList<Integer> primes = new ArrayList<>();
        for (int i = 2; i < isNotPrime.length; i++) {
            if (!isNotPrime[i]) {
                primes.add(i);
                for (int j = 2; j * i < isNotPrime.length; j++) {
                    isNotPrime[j * i] = true;
                }
            }
        }
        for (int i = primes.size() - 1; i >= 0; i--) {
            int ans = primes.get(i);
            long out = 0;
            for (long j = (low + ans - 1) / ans; j * ans <= high; j++) {
                boolean notDivide = true;
                for (int k = 0; k < i && notDivide; k++) {
                    notDivide = (j % primes.get(k) != 0);
                }
                if (notDivide) {
                    out = Math.max(out, ans * j);
                }
            }
            if (out > 0) {
                System.out.println(out);
                return;
            }
        }
    }
}
0