結果

問題 No.371 ぼく悪いプライムじゃないよ
ユーザー yuppe19 😺yuppe19 😺
提出日時 2016-05-17 00:02:03
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 64 ms / 1,000 ms
コード長 824 bytes
コンパイル時間 307 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 12,416 KB
最終ジャッジ日時 2024-06-09 19:25:55
合計ジャッジ時間 3,905 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 64 ms
12,288 KB
testcase_01 AC 62 ms
12,160 KB
testcase_02 AC 57 ms
12,160 KB
testcase_03 AC 57 ms
12,288 KB
testcase_04 AC 56 ms
12,160 KB
testcase_05 AC 56 ms
12,160 KB
testcase_06 AC 58 ms
12,160 KB
testcase_07 AC 57 ms
12,160 KB
testcase_08 AC 56 ms
12,288 KB
testcase_09 AC 57 ms
12,288 KB
testcase_10 AC 56 ms
12,288 KB
testcase_11 AC 57 ms
12,288 KB
testcase_12 AC 56 ms
12,416 KB
testcase_13 AC 58 ms
12,160 KB
testcase_14 AC 56 ms
12,288 KB
testcase_15 AC 58 ms
12,288 KB
testcase_16 AC 57 ms
12,288 KB
testcase_17 AC 57 ms
12,160 KB
testcase_18 AC 57 ms
12,288 KB
testcase_19 AC 56 ms
12,288 KB
testcase_20 AC 56 ms
12,288 KB
testcase_21 AC 56 ms
12,160 KB
testcase_22 AC 55 ms
12,160 KB
testcase_23 AC 56 ms
12,288 KB
testcase_24 AC 48 ms
12,288 KB
testcase_25 AC 48 ms
12,288 KB
testcase_26 AC 60 ms
12,160 KB
testcase_27 AC 48 ms
12,288 KB
testcase_28 AC 47 ms
12,160 KB
testcase_29 AC 49 ms
12,160 KB
testcase_30 AC 48 ms
12,160 KB
testcase_31 AC 46 ms
12,288 KB
testcase_32 AC 46 ms
12,288 KB
testcase_33 AC 46 ms
12,288 KB
testcase_34 AC 48 ms
12,160 KB
testcase_35 AC 47 ms
12,288 KB
testcase_36 AC 53 ms
12,160 KB
testcase_37 AC 47 ms
12,160 KB
testcase_38 AC 48 ms
12,288 KB
testcase_39 AC 47 ms
12,288 KB
testcase_40 AC 48 ms
12,160 KB
testcase_41 AC 47 ms
12,288 KB
testcase_42 AC 49 ms
12,288 KB
testcase_43 AC 47 ms
12,288 KB
testcase_44 AC 54 ms
12,160 KB
testcase_45 AC 56 ms
12,160 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/python3
def sieve(n):
    is_prime = [0, 0] + [1] * (n-1)
    sq = int(n ** .5)
    for i in range(2, sq+1):
        if is_prime[i]:
            for j in range(i*i, n+1, i):
                is_prime[j] = 0
    return [i for i, p in enumerate(is_prime) if p]

from collections import defaultdict

def factorize(n):
    res = defaultdict(int)
    d = 2
    while d * d <= n:
        while n % d == 0:
            res[d] += 1
            n //= d
        d += 1
    if n > 1:
        res[n] += 1
    return res

L, H = map(int, input().split())
primes = sieve(10**5 + 100)
for p in primes[::-1]:
    l = (L+p-1) // p
    h = H // p
    for d in reversed(range(max(p, l), h+1)):
        fac = factorize(d)
        if min(list(fac.keys()) + [p]) == p:
            res = p * d
            print(res)
            exit(0)
0