結果
| 問題 |
No.1224 I hate Sqrt Inequality
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2022-11-02 18:43:09 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
TLE
(最新)
AC
(最初)
|
| 実行時間 | - |
| コード長 | 1,203 bytes |
| コンパイル時間 | 180 ms |
| コンパイル使用メモリ | 12,672 KB |
| 実行使用メモリ | 10,880 KB |
| 最終ジャッジ日時 | 2024-07-17 07:27:13 |
| 合計ジャッジ時間 | 4,851 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 12 TLE * 1 |
ソースコード
from itertools import count
def gcd(*numbers: int) -> int:
if len(numbers) == 1:
return numbers[0]
if len(numbers) == 2:
a, b = numbers
if a < b:
a, b = b, a
while True:
if a % b == 0:
return b
a, b = b, a % b
first_gcd = gcd(*numbers[:2])
return gcd(first_gcd, *numbers[2:])
def calc_prime_factorize(num: int) -> dict[int, int]:
if num < 2:
raise ValueError
divisors = {}
for divisor in count(2):
if divisor ** 2 > num:
if num != 1:
divisors[num] = 1
break
while num % divisor == 0 and num != 1:
try:
divisors[divisor] += 1
except KeyError:
divisors[divisor] = 1
num //= divisor
return divisors
def main():
a, b = map(int, input().split())
ab_gcd = gcd(a, b)
a //= ab_gcd
b //= ab_gcd
if b == 1:
print("No")
return
b_factor = calc_prime_factorize(b)
if all(factor in (2, 5) for factor in b_factor.keys()):
print("No")
else:
print("Yes")
if __name__ == "__main__":
main()