結果
問題 | No.1224 I hate Sqrt Inequality |
ユーザー | Theta |
提出日時 | 2022-11-02 18:43:09 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
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 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 31 ms
10,752 KB |
testcase_01 | AC | 30 ms
10,752 KB |
testcase_02 | AC | 29 ms
10,752 KB |
testcase_03 | AC | 30 ms
10,752 KB |
testcase_04 | AC | 31 ms
10,752 KB |
testcase_05 | AC | 30 ms
10,752 KB |
testcase_06 | AC | 60 ms
10,752 KB |
testcase_07 | AC | 31 ms
10,880 KB |
testcase_08 | AC | 30 ms
10,752 KB |
testcase_09 | AC | 32 ms
10,752 KB |
testcase_10 | AC | 889 ms
10,752 KB |
testcase_11 | TLE | - |
testcase_12 | AC | 30 ms
10,752 KB |
testcase_13 | AC | 29 ms
10,752 KB |
testcase_14 | AC | 30 ms
10,752 KB |
ソースコード
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()