結果

問題 No.2954 Calculation of Exponentiation
ユーザー moon17moon17
提出日時 2024-11-08 23:19:41
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 541 bytes
コンパイル時間 210 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 64,896 KB
最終ジャッジ日時 2024-11-08 23:19:57
合計ジャッジ時間 2,823 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
53,760 KB
testcase_01 AC 48 ms
54,144 KB
testcase_02 AC 49 ms
53,760 KB
testcase_03 AC 48 ms
53,888 KB
testcase_04 AC 48 ms
53,888 KB
testcase_05 AC 48 ms
54,144 KB
testcase_06 AC 48 ms
53,888 KB
testcase_07 AC 49 ms
54,144 KB
testcase_08 AC 49 ms
54,144 KB
testcase_09 AC 47 ms
53,632 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 47 ms
53,760 KB
testcase_14 AC 47 ms
54,016 KB
testcase_15 AC 50 ms
54,016 KB
testcase_16 AC 49 ms
54,272 KB
testcase_17 AC 49 ms
53,760 KB
testcase_18 AC 52 ms
53,632 KB
testcase_19 AC 48 ms
53,760 KB
testcase_20 AC 48 ms
54,016 KB
testcase_21 AC 48 ms
54,016 KB
testcase_22 AC 49 ms
54,144 KB
testcase_23 RE -
testcase_24 AC 49 ms
54,144 KB
testcase_25 AC 48 ms
54,016 KB
testcase_26 AC 47 ms
54,144 KB
testcase_27 AC 47 ms
53,888 KB
testcase_28 AC 53 ms
59,264 KB
testcase_29 AC 52 ms
59,136 KB
testcase_30 AC 48 ms
54,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import*
from collections import*
def pf(n):
 a,f=defaultdict(int),2
 while f*f<=n:
  if n%f:f+=1
  else:a[f]+=1;n//=f
 if n>1:a[n]+=1
 return a
a,b=input().split()
al,ar=map(int,a.split('.'))
bl,br=map(int,b.split('.'))
a=al*10000+ar
ag=gcd(a,10000)
a//=ag
aq=10000//ag
b=bl*10000+br
bg=gcd(b,10000)
b//=bg
bq=10000//bg
if b<0:
  b,bq=bq,-b
pa=pf(a)
paq=pf(aq)
for k,v in pa.items():
  if v*b%bq:
    exit(print('No'))
for k,v in paq.items():
  if v*bq%b:
    exit(print('No'))
  if pa[k]*b<v*bq:
    exit(print('No'))
print('Yes')
0