結果
| 問題 |
No.371 ぼく悪いプライムじゃないよ
|
| コンテスト | |
| ユーザー |
mkawa2
|
| 提出日時 | 2021-09-24 16:24:32 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 1,164 bytes |
| コンパイル時間 | 226 ms |
| コンパイル使用メモリ | 12,928 KB |
| 実行使用メモリ | 18,976 KB |
| 最終ジャッジ日時 | 2024-07-05 09:45:10 |
| 合計ジャッジ時間 | 4,029 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 4 |
| other | AC * 16 WA * 5 TLE * 1 -- * 20 |
ソースコード
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)
mkawa2