結果

問題 No.2954 Calculation of Exponentiation
ユーザー ねしんねしん
提出日時 2024-11-08 21:53:04
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 862 bytes
コンパイル時間 181 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 88,960 KB
最終ジャッジ日時 2024-11-08 21:53:14
合計ジャッジ時間 5,757 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 139 ms
88,704 KB
testcase_01 AC 165 ms
88,448 KB
testcase_02 AC 149 ms
88,896 KB
testcase_03 AC 141 ms
88,596 KB
testcase_04 AC 141 ms
88,588 KB
testcase_05 AC 143 ms
88,872 KB
testcase_06 AC 141 ms
88,960 KB
testcase_07 AC 140 ms
88,652 KB
testcase_08 AC 143 ms
88,704 KB
testcase_09 AC 145 ms
88,612 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 144 ms
88,576 KB
testcase_14 AC 143 ms
88,356 KB
testcase_15 AC 145 ms
88,704 KB
testcase_16 AC 148 ms
88,788 KB
testcase_17 AC 143 ms
88,448 KB
testcase_18 AC 161 ms
88,292 KB
testcase_19 AC 143 ms
88,832 KB
testcase_20 AC 144 ms
88,704 KB
testcase_21 AC 146 ms
88,704 KB
testcase_22 AC 145 ms
88,704 KB
testcase_23 AC 144 ms
88,616 KB
testcase_24 AC 148 ms
88,320 KB
testcase_25 AC 144 ms
88,704 KB
testcase_26 AC 173 ms
88,448 KB
testcase_27 AC 144 ms
88,224 KB
testcase_28 AC 146 ms
88,536 KB
testcase_29 AC 145 ms
88,448 KB
testcase_30 AC 144 ms
88,208 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from fractions import Fraction

def gcd(a,b):
  if b==0:
    return a
  else:
    return gcd(b,a%b)
    
A,B=list(map(str,input().split()))
if B=="0.0000":
  print("Yes")
  exit()
if B[0]=="-":
  print("No")
  exit()
a=""
for i in range(len(A)):
  if A[i]!=".":
    a=a+A[i]
a=int(a)
b=""
for i in range(len(B)):
  if B[i]!=".":
    b=b+B[i]
b=int(b)
aa=Fraction(a,10000)
bb=Fraction(b,10000)
if aa.denominator!=1:
  print("No")
  exit()
c=aa.numerator
d=c
cnt=[]
for i in range(2,int(d**0.5)+5):
  if c%i==0:
    z=0
    while c%i==0:
      c=c//i
      z+=1
    cnt.append(z)
if len(cnt)==1:
  if cnt[0]%bb.denominator==0:
    print("Yes")
    exit()
  else:
    print("No")
    exit()
else:
  m=cnt[0]
  for i in range(1,len(cnt)):
    m=gcd(max(m,cnt[i]),min(m,cnt[i]))
  if m%bb.denominator==0:
    print("Yes")
    exit()
  else:
    print("No")
    exit()
0