結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
54,144 KB
testcase_01 AC 41 ms
54,400 KB
testcase_02 AC 41 ms
53,760 KB
testcase_03 AC 45 ms
54,144 KB
testcase_04 AC 42 ms
53,992 KB
testcase_05 AC 41 ms
54,272 KB
testcase_06 AC 41 ms
53,760 KB
testcase_07 AC 41 ms
54,144 KB
testcase_08 AC 40 ms
54,016 KB
testcase_09 AC 43 ms
54,016 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 40 ms
54,144 KB
testcase_14 AC 41 ms
54,144 KB
testcase_15 AC 41 ms
54,016 KB
testcase_16 AC 41 ms
53,760 KB
testcase_17 AC 41 ms
54,272 KB
testcase_18 AC 42 ms
54,272 KB
testcase_19 AC 41 ms
54,016 KB
testcase_20 AC 42 ms
53,888 KB
testcase_21 AC 41 ms
53,632 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 41 ms
54,016 KB
testcase_25 AC 42 ms
54,528 KB
testcase_26 AC 42 ms
54,144 KB
testcase_27 AC 42 ms
54,400 KB
testcase_28 AC 45 ms
59,392 KB
testcase_29 AC 45 ms
59,392 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,bg=bg,-b
if aq==bq==1:
  exit(print('Yes'))
pa=pf(a)
for k,v in pa.items():
  if v*b%bq:
    exit(print('No'))
paq=pf(aq)
for k,v in paq.items():
  if pa[k]<v:
    exit(print('No'))
print('Yes')
0