結果

問題 No.371 ぼく悪いプライムじゃないよ
ユーザー g-tetsuyag-tetsuya
提出日時 2016-05-22 15:46:21
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 597 bytes
コンパイル時間 382 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 11,136 KB
最終ジャッジ日時 2024-11-07 04:21:45
合計ジャッジ時間 6,151 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,624 KB
testcase_01 AC 32 ms
10,624 KB
testcase_02 AC 32 ms
10,624 KB
testcase_03 AC 31 ms
10,752 KB
testcase_04 AC 30 ms
10,752 KB
testcase_05 AC 31 ms
10,624 KB
testcase_06 AC 31 ms
10,752 KB
testcase_07 AC 31 ms
10,624 KB
testcase_08 AC 29 ms
10,752 KB
testcase_09 AC 30 ms
10,624 KB
testcase_10 AC 31 ms
10,624 KB
testcase_11 AC 30 ms
10,752 KB
testcase_12 AC 30 ms
10,624 KB
testcase_13 AC 31 ms
10,624 KB
testcase_14 AC 31 ms
10,624 KB
testcase_15 AC 30 ms
10,624 KB
testcase_16 AC 30 ms
10,624 KB
testcase_17 AC 30 ms
10,624 KB
testcase_18 AC 31 ms
10,624 KB
testcase_19 AC 30 ms
10,624 KB
testcase_20 AC 32 ms
10,624 KB
testcase_21 AC 31 ms
10,624 KB
testcase_22 AC 42 ms
10,752 KB
testcase_23 AC 43 ms
10,624 KB
testcase_24 AC 188 ms
11,136 KB
testcase_25 AC 190 ms
11,136 KB
testcase_26 AC 196 ms
11,008 KB
testcase_27 AC 192 ms
11,136 KB
testcase_28 AC 181 ms
11,008 KB
testcase_29 AC 189 ms
11,136 KB
testcase_30 AC 185 ms
11,008 KB
testcase_31 AC 187 ms
11,136 KB
testcase_32 AC 187 ms
11,136 KB
testcase_33 AC 182 ms
11,008 KB
testcase_34 AC 167 ms
11,136 KB
testcase_35 AC 178 ms
11,136 KB
testcase_36 AC 105 ms
11,008 KB
testcase_37 AC 187 ms
11,136 KB
testcase_38 AC 167 ms
11,008 KB
testcase_39 AC 187 ms
11,136 KB
testcase_40 AC 178 ms
11,008 KB
testcase_41 WA -
testcase_42 AC 159 ms
10,880 KB
testcase_43 AC 189 ms
11,136 KB
testcase_44 AC 133 ms
11,008 KB
testcase_45 AC 31 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math

def is_prime(n):
    if n == 2:
        return True
    return pow(2, n-1, n) == 1

def min_prime(n, prime_list):
    for p in prime_list:
        if n % p == 0:
            return p
    return n

L, H = map(int, input().split())

prime_list = [i for i in range(2, (int)(math.sqrt(H)) + 1) if is_prime(i)]

H_half = math.floor(H / 2) + 1

for p in reversed(prime_list):
    for i in reversed(range(p, math.floor(H / p) + 1)):
        if L <= i * p <= H:
            if min_prime(i, prime_list) >= p:
                print(i * p)
                exit(0)
        else:
            break
0