結果

問題 No.2954 Calculation of Exponentiation
ユーザー moon17moon17
提出日時 2024-11-08 23:10:03
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 576 bytes
コンパイル時間 301 ms
コンパイル使用メモリ 82,400 KB
実行使用メモリ 67,016 KB
最終ジャッジ日時 2024-11-08 23:10:10
合計ジャッジ時間 2,666 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
54,144 KB
testcase_01 AC 41 ms
53,888 KB
testcase_02 AC 47 ms
54,400 KB
testcase_03 AC 45 ms
54,400 KB
testcase_04 AC 42 ms
54,016 KB
testcase_05 AC 42 ms
53,632 KB
testcase_06 AC 42 ms
54,016 KB
testcase_07 AC 42 ms
54,060 KB
testcase_08 AC 42 ms
54,016 KB
testcase_09 AC 42 ms
53,760 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 42 ms
53,760 KB
testcase_14 AC 41 ms
54,272 KB
testcase_15 AC 48 ms
54,016 KB
testcase_16 AC 42 ms
53,888 KB
testcase_17 AC 42 ms
54,016 KB
testcase_18 AC 42 ms
54,016 KB
testcase_19 AC 43 ms
54,400 KB
testcase_20 AC 42 ms
54,272 KB
testcase_21 AC 42 ms
54,272 KB
testcase_22 AC 42 ms
54,400 KB
testcase_23 RE -
testcase_24 AC 42 ms
53,632 KB
testcase_25 AC 44 ms
54,400 KB
testcase_26 AC 44 ms
54,144 KB
testcase_27 AC 43 ms
54,144 KB
testcase_28 AC 46 ms
59,520 KB
testcase_29 AC 45 ms
59,136 KB
testcase_30 AC 42 ms
54,272 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
if aq==bq==1:
  exit(print('Yes'))
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