結果
問題 | No.1224 I hate Sqrt Inequality |
ユーザー | ygd. |
提出日時 | 2020-09-11 22:00:32 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 620 bytes |
コンパイル時間 | 218 ms |
コンパイル使用メモリ | 82,444 KB |
実行使用メモリ | 65,492 KB |
最終ジャッジ日時 | 2024-06-08 10:02:53 |
合計ジャッジ時間 | 3,855 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 37 ms
57,728 KB |
testcase_01 | AC | 38 ms
52,096 KB |
testcase_02 | AC | 38 ms
52,096 KB |
testcase_03 | TLE | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
ソースコード
def factorization(n): arr = [] temp = n if temp%2 == 0: cnt = 0 while temp%2 == 0: cnt += 1 temp//=2 arr.append(2) for i in range(3, int(-(-n**0.5//1))+1,2): if temp%i==0: cnt=0 while temp%i==0: cnt+=1 temp //= i arr.append(i) if temp!=1: arr.append(temp) return arr import math a,b = map(int,input().split()) G = math.gcd(a,b) a = a//G b = b//G if b == 1: print("No");exit() A = factorization(b) for x in A: if x == 2 or x == 5: print("No");exit() print("Yes")