結果

問題 No.371 ぼく悪いプライムじゃないよ
ユーザー htensaihtensai
提出日時 2020-02-13 15:54:04
言語 Java21
(openjdk 21)
結果
AC  
実行時間 139 ms / 1,000 ms
コード長 1,027 bytes
コンパイル時間 1,976 ms
コンパイル使用メモリ 74,856 KB
実行使用メモリ 41,476 KB
最終ジャッジ日時 2024-10-06 02:26:52
合計ジャッジ時間 8,168 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 95 ms
39,680 KB
testcase_01 AC 109 ms
41,252 KB
testcase_02 AC 99 ms
39,884 KB
testcase_03 AC 111 ms
41,088 KB
testcase_04 AC 112 ms
41,336 KB
testcase_05 AC 109 ms
41,144 KB
testcase_06 AC 110 ms
41,448 KB
testcase_07 AC 100 ms
39,912 KB
testcase_08 AC 102 ms
40,264 KB
testcase_09 AC 110 ms
41,296 KB
testcase_10 AC 110 ms
41,304 KB
testcase_11 AC 110 ms
41,144 KB
testcase_12 AC 102 ms
40,244 KB
testcase_13 AC 115 ms
41,296 KB
testcase_14 AC 99 ms
40,004 KB
testcase_15 AC 109 ms
41,288 KB
testcase_16 AC 99 ms
39,880 KB
testcase_17 AC 99 ms
40,164 KB
testcase_18 AC 118 ms
40,788 KB
testcase_19 AC 115 ms
41,476 KB
testcase_20 AC 121 ms
41,304 KB
testcase_21 AC 118 ms
41,156 KB
testcase_22 AC 107 ms
40,132 KB
testcase_23 AC 98 ms
40,024 KB
testcase_24 AC 106 ms
40,212 KB
testcase_25 AC 105 ms
40,104 KB
testcase_26 AC 139 ms
40,736 KB
testcase_27 AC 121 ms
41,284 KB
testcase_28 AC 109 ms
40,196 KB
testcase_29 AC 113 ms
41,244 KB
testcase_30 AC 110 ms
41,232 KB
testcase_31 AC 113 ms
41,208 KB
testcase_32 AC 103 ms
40,192 KB
testcase_33 AC 104 ms
39,992 KB
testcase_34 AC 110 ms
41,128 KB
testcase_35 AC 110 ms
41,356 KB
testcase_36 AC 103 ms
40,164 KB
testcase_37 AC 115 ms
41,108 KB
testcase_38 AC 114 ms
40,928 KB
testcase_39 AC 103 ms
39,984 KB
testcase_40 AC 101 ms
39,980 KB
testcase_41 AC 99 ms
39,680 KB
testcase_42 AC 108 ms
40,020 KB
testcase_43 AC 106 ms
40,268 KB
testcase_44 AC 116 ms
40,280 KB
testcase_45 AC 117 ms
41,180 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 maxNumber = high / 2 * 2;
        for (long i = (long)(Math.sqrt(high)); i >= 3 ; i--) {
            if (!isPrime(i)) {
                continue;
            }
            for (long j = high / i * i; j >= low; j -= i) {
                if (getMax(j) >= i) {
                    System.out.println(j);
                    return;
                }
            }
        }
        System.out.println(maxNumber);
    }
    
    static long getMax(long x) {
        for (long i = 2; i <= Math.sqrt(x); i++) {
            if (x % i == 0) {
                return i;
            }
        }
        return x;
    }
    
    static boolean isPrime(long x) {
        for (long i = 2; i <= Math.sqrt(x); i++) {
            if (x % i == 0) {
                return false;
            }
        }
        return true;
    }
}
0