結果

問題 No.2954 Calculation of Exponentiation
ユーザー dp_ijkdp_ijk
提出日時 2024-11-08 22:26:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 162 ms / 2,000 ms
コード長 799 bytes
コンパイル時間 354 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 88,704 KB
最終ジャッジ日時 2024-11-08 22:26:08
合計ジャッジ時間 6,315 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 150 ms
88,576 KB
testcase_01 AC 156 ms
88,704 KB
testcase_02 AC 159 ms
88,576 KB
testcase_03 AC 160 ms
88,576 KB
testcase_04 AC 151 ms
88,448 KB
testcase_05 AC 149 ms
88,576 KB
testcase_06 AC 147 ms
88,448 KB
testcase_07 AC 159 ms
88,576 KB
testcase_08 AC 150 ms
88,576 KB
testcase_09 AC 148 ms
88,320 KB
testcase_10 AC 148 ms
88,704 KB
testcase_11 AC 156 ms
88,448 KB
testcase_12 AC 152 ms
88,192 KB
testcase_13 AC 149 ms
88,448 KB
testcase_14 AC 151 ms
88,448 KB
testcase_15 AC 150 ms
88,448 KB
testcase_16 AC 158 ms
88,192 KB
testcase_17 AC 151 ms
88,192 KB
testcase_18 AC 148 ms
88,576 KB
testcase_19 AC 148 ms
88,320 KB
testcase_20 AC 154 ms
88,704 KB
testcase_21 AC 148 ms
88,576 KB
testcase_22 AC 147 ms
88,576 KB
testcase_23 AC 147 ms
88,704 KB
testcase_24 AC 162 ms
88,448 KB
testcase_25 AC 148 ms
88,704 KB
testcase_26 AC 147 ms
88,320 KB
testcase_27 AC 147 ms
88,192 KB
testcase_28 AC 159 ms
88,320 KB
testcase_29 AC 148 ms
88,448 KB
testcase_30 AC 150 ms
88,704 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def factors(X: int):
   assert X >= 1
   F: list[tuple[int, int]] = []
   d = 2
   while d*d <= X:
      e = 0
      while X%d == 0:
         e += 1
         X //= d
      if e > 0:
         F.append((d, e))
      d += 1
   if X > 1:
      F.append((X, 1))
   return F


from fractions import Fraction

A, B = map(Fraction, input().split())


def solve(A, B):
   if B == 0: return True
   if B > 0:
      p, q = A.as_integer_ratio()
      if q != 1:
         return False
      x, y = B.as_integer_ratio()
      for _, e in factors(A):
         g = Fraction(e*x, y)
         if g.as_integer_ratio()[1] != 1 or g < 0:
            return False
   if B < 0:
      return solve(1/A, -B)
   return True


ans = solve(A, B)
if ans == True:
   print("Yes")
elif ans == False:
   print("No")
else:
   raise
0