結果

問題 No.371 ぼく悪いプライムじゃないよ
ユーザー convexineqconvexineq
提出日時 2021-02-17 19:53:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 65 ms / 1,000 ms
コード長 865 bytes
コンパイル時間 162 ms
コンパイル使用メモリ 82,256 KB
実行使用メモリ 69,300 KB
最終ジャッジ日時 2024-09-14 05:27:58
合計ジャッジ時間 3,679 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,128 KB
testcase_01 AC 38 ms
53,016 KB
testcase_02 AC 39 ms
52,620 KB
testcase_03 AC 38 ms
52,848 KB
testcase_04 AC 38 ms
52,716 KB
testcase_05 AC 37 ms
53,304 KB
testcase_06 AC 39 ms
52,944 KB
testcase_07 AC 39 ms
53,408 KB
testcase_08 AC 38 ms
53,064 KB
testcase_09 AC 39 ms
52,540 KB
testcase_10 AC 39 ms
52,860 KB
testcase_11 AC 38 ms
53,732 KB
testcase_12 AC 38 ms
52,068 KB
testcase_13 AC 39 ms
53,752 KB
testcase_14 AC 39 ms
52,520 KB
testcase_15 AC 38 ms
53,276 KB
testcase_16 AC 38 ms
52,620 KB
testcase_17 AC 39 ms
53,288 KB
testcase_18 AC 38 ms
53,416 KB
testcase_19 AC 39 ms
53,576 KB
testcase_20 AC 39 ms
52,804 KB
testcase_21 AC 42 ms
58,160 KB
testcase_22 AC 43 ms
58,436 KB
testcase_23 AC 48 ms
61,980 KB
testcase_24 AC 65 ms
69,300 KB
testcase_25 AC 46 ms
61,680 KB
testcase_26 AC 52 ms
65,440 KB
testcase_27 AC 49 ms
63,112 KB
testcase_28 AC 53 ms
64,760 KB
testcase_29 AC 64 ms
66,372 KB
testcase_30 AC 46 ms
61,244 KB
testcase_31 AC 45 ms
61,144 KB
testcase_32 AC 45 ms
61,072 KB
testcase_33 AC 44 ms
60,724 KB
testcase_34 AC 44 ms
60,468 KB
testcase_35 AC 45 ms
60,760 KB
testcase_36 AC 43 ms
61,692 KB
testcase_37 AC 44 ms
61,940 KB
testcase_38 AC 45 ms
62,572 KB
testcase_39 AC 44 ms
60,892 KB
testcase_40 AC 45 ms
61,432 KB
testcase_41 AC 44 ms
60,712 KB
testcase_42 AC 44 ms
60,452 KB
testcase_43 AC 55 ms
65,768 KB
testcase_44 AC 48 ms
63,448 KB
testcase_45 AC 38 ms
53,696 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def Eratosthenes(N): #N以下の素数のリストを返す
    N+=1
    is_prime_list = [True]*N
    m = int(N**0.5)+1
    for i in range(3,m,2):
        if is_prime_list[i]:
            is_prime_list[i*i::2*i]=[False]*((N-i*i-1)//(2*i)+1)
    return [2] + [i for i in range(3,N,2) if is_prime_list[i]]

L,R = map(int,input().split())
primes = Eratosthenes(int(R**0.5)+100)
l = len(primes)
for p in primes[::-1]:
    if L <= p*p <= R:
        for q in primes[::-1]:
            if L <= p*q <= R:
                print(p*q)
                exit()

min_factor = [0]*(R-L+1)
for p in primes[::-1]:
    sind = (L+p-1)//p #gind = R//p
    for i in range(sind*p-L,R-L+1,p):
        min_factor[i] = p
    if L <= p <= R:
        min_factor[p-L] = 0
ans = val = 0
for i in range(R-L+1):
    if val <= min_factor[i]:
        ans = i
        val = min_factor[i]
print(ans+L)
0