結果
問題 | No.2425 Power Range GCD |
ユーザー | mattu34 |
提出日時 | 2023-08-18 22:02:21 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 596 bytes |
コンパイル時間 | 193 ms |
コンパイル使用メモリ | 82,536 KB |
実行使用メモリ | 87,364 KB |
最終ジャッジ日時 | 2024-05-06 04:04:32 |
合計ジャッジ時間 | 7,538 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 39 ms
53,248 KB |
testcase_01 | AC | 442 ms
78,584 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | WA | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | RE | - |
testcase_28 | RE | - |
testcase_29 | RE | - |
testcase_30 | RE | - |
ソースコード
from collections import defaultdict def prime_factorize(n): V = defaultdict(int) i = 2 while i**2 <= n: while n % i == 0: V[i] += 1 n //= i i += 1 if n != 1: V[n] += 1 return V L, R = map(int, input().split()) base = prime_factorize(L) base[1] = 1 for key, val in base.items(): base[key] *= L for num in range(L + 1, R + 1): b = prime_factorize(num) for key, val in b.items(): b[key] *= num base[key] = min(base[key], b[key]) ans = 1 for key, val in base.items(): ans *= key**val print(ans)