結果

問題 No.1224 I hate Sqrt Inequality
ユーザー dangodango
提出日時 2023-06-12 21:36:51
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 222 bytes
コンパイル時間 358 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 52,736 KB
最終ジャッジ日時 2024-06-11 21:33:23
合計ジャッジ時間 1,488 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
52,352 KB
testcase_01 AC 32 ms
52,480 KB
testcase_02 AC 32 ms
52,224 KB
testcase_03 AC 32 ms
52,352 KB
testcase_04 AC 31 ms
52,608 KB
testcase_05 AC 32 ms
51,968 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 37 ms
52,096 KB
testcase_09 AC 33 ms
52,096 KB
testcase_10 AC 33 ms
52,096 KB
testcase_11 AC 34 ms
52,352 KB
testcase_12 AC 33 ms
52,352 KB
testcase_13 AC 34 ms
51,968 KB
testcase_14 AC 32 ms
52,736 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
A, B = map(int, input().split())
A, B = A // math.gcd(A, B), B // math.gcd(A, B)
if math.log(B, 2).is_integer() or math.log(B, 5).is_integer() or math.log(B, 10).is_integer():
  print("No")
else:
  print("Yes")
0