結果

問題 No.371 ぼく悪いプライムじゃないよ
ユーザー T1610T1610
提出日時 2018-02-15 15:20:23
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 691 bytes
コンパイル時間 335 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 24,448 KB
最終ジャッジ日時 2024-12-26 00:45:24
合計ジャッジ時間 50,963 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 96 ms
17,024 KB
testcase_01 AC 99 ms
23,808 KB
testcase_02 WA -
testcase_03 AC 98 ms
23,680 KB
testcase_04 AC 100 ms
17,024 KB
testcase_05 AC 96 ms
23,680 KB
testcase_06 WA -
testcase_07 AC 101 ms
23,808 KB
testcase_08 AC 97 ms
17,280 KB
testcase_09 AC 99 ms
23,808 KB
testcase_10 AC 102 ms
17,280 KB
testcase_11 AC 100 ms
23,680 KB
testcase_12 AC 104 ms
17,024 KB
testcase_13 AC 98 ms
23,680 KB
testcase_14 AC 101 ms
23,808 KB
testcase_15 AC 101 ms
17,152 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 98 ms
17,408 KB
testcase_19 AC 100 ms
17,408 KB
testcase_20 AC 161 ms
17,408 KB
testcase_21 AC 141 ms
17,152 KB
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
testcase_35 TLE -
testcase_36 TLE -
testcase_37 TLE -
testcase_38 TLE -
testcase_39 TLE -
testcase_40 TLE -
testcase_41 TLE -
testcase_42 TLE -
testcase_43 TLE -
testcase_44 TLE -
testcase_45 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
MAX_PRIME = 100000+10
isPrime = [1 for i in range(MAX_PRIME)]
primes = []
isPrime[0] = 0
isPrime[1] = 0
for i in range(2, MAX_PRIME) :
    if isPrime[i] == 1:
        for j in range(i + i, MAX_PRIME, i) :
            isPrime[j] = 0
        primes.append(i)
L, H = list(map(int, input().split()))
minPrimes = -1
ans = -1
SZ = len(primes)
for i in range(SZ) :
    for j in range(i+1) :
        k = primes[i] * primes[j]
        if L <= k <= H :
            tmp = primes[j]
            if minPrimes < tmp :
                minPrimes = tmp
                ans = k
            elif minPrimes == tmp :
                ans = max(ans, k)
        elif k > H :
            break
print(ans)
0