結果

問題 No.1224 I hate Sqrt Inequality
ユーザー rlangevinrlangevin
提出日時 2024-08-30 12:14:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 40 ms / 2,000 ms
コード長 174 bytes
コンパイル時間 479 ms
コンパイル使用メモリ 82,352 KB
実行使用メモリ 53,792 KB
最終ジャッジ日時 2024-08-30 12:14:10
合計ジャッジ時間 2,314 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,068 KB
testcase_01 AC 37 ms
52,284 KB
testcase_02 AC 38 ms
52,800 KB
testcase_03 AC 38 ms
52,992 KB
testcase_04 AC 37 ms
52,056 KB
testcase_05 AC 36 ms
53,792 KB
testcase_06 AC 38 ms
52,196 KB
testcase_07 AC 38 ms
52,256 KB
testcase_08 AC 40 ms
52,936 KB
testcase_09 AC 40 ms
53,008 KB
testcase_10 AC 37 ms
52,524 KB
testcase_11 AC 37 ms
53,016 KB
testcase_12 AC 37 ms
53,352 KB
testcase_13 AC 38 ms
52,896 KB
testcase_14 AC 37 ms
53,688 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import gcd
a, b = map(int, input().split())
g = gcd(a, b)
b //= g
while b % 2 == 0:
    b //= 2
while b % 5 == 0:
    b //= 5
print("Yes") if b > 1 else print("No")
0