結果

問題 No.371 ぼく悪いプライムじゃないよ
ユーザー mkawa2mkawa2
提出日時 2021-09-24 16:24:32
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 1,164 bytes
コンパイル時間 226 ms
コンパイル使用メモリ 12,928 KB
実行使用メモリ 18,976 KB
最終ジャッジ日時 2024-07-05 09:45:10
合計ジャッジ時間 4,029 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
16,384 KB
testcase_01 AC 26 ms
10,752 KB
testcase_02 AC 25 ms
10,752 KB
testcase_03 AC 24 ms
10,752 KB
testcase_04 WA -
testcase_05 AC 25 ms
10,880 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 25 ms
10,880 KB
testcase_09 AC 25 ms
11,008 KB
testcase_10 AC 24 ms
10,752 KB
testcase_11 WA -
testcase_12 AC 26 ms
10,880 KB
testcase_13 AC 29 ms
10,880 KB
testcase_14 AC 25 ms
10,880 KB
testcase_15 WA -
testcase_16 AC 26 ms
10,752 KB
testcase_17 AC 26 ms
10,880 KB
testcase_18 AC 25 ms
10,752 KB
testcase_19 AC 26 ms
10,880 KB
testcase_20 AC 29 ms
10,752 KB
testcase_21 AC 26 ms
10,752 KB
testcase_22 AC 150 ms
10,752 KB
testcase_23 AC 29 ms
10,752 KB
testcase_24 AC 60 ms
11,776 KB
testcase_25 TLE -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
testcase_45 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

# sys.setrecursionlimit(200005)
int1 = lambda x: int(x)-1
p2D = lambda x: print(*x, sep="\n")
def II(): return int(sys.stdin.readline())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LI1(): return list(map(int1, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
def SI(): return sys.stdin.readline().rstrip()
dij = [(0, 1), (-1, 0), (0, -1), (1, 0)]
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)]
inf = 10**16
# md = 998244353
md = 10**9+7

l, h = LI()
lim = round(h**0.5)+3
pp = []
isp = [True]*lim
for p in range(2, lim):
    if isp[p]:
        pp.append(p)
        for c in range(p*p, lim, p):
            isp[c] = False

fin = set()
ans = mx = -1
for p in pp[::-1]:
    if p < mx: break
    L = (l+p-1)//p
    H = h//p+1
    for a in range(L, H):
        for q in pp:
            if a*p%q == 0:
                if q == mx:
                    if a*p > ans: ans = a*p
                if q > mx:
                    mx = q
                    ans = a*p
                break

print(ans)
0