結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,224 KB
testcase_01 AC 38 ms
52,096 KB
testcase_02 AC 37 ms
51,968 KB
testcase_03 AC 39 ms
52,224 KB
testcase_04 AC 34 ms
51,968 KB
testcase_05 AC 35 ms
52,480 KB
testcase_06 AC 36 ms
51,968 KB
testcase_07 AC 43 ms
51,968 KB
testcase_08 AC 38 ms
52,096 KB
testcase_09 AC 37 ms
52,224 KB
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
testcase_13 AC 35 ms
52,480 KB
testcase_14 RE -
testcase_15 AC 35 ms
51,968 KB
testcase_16 AC 35 ms
51,968 KB
testcase_17 AC 35 ms
51,968 KB
testcase_18 AC 35 ms
52,608 KB
testcase_19 AC 36 ms
52,224 KB
testcase_20 RE -
testcase_21 AC 36 ms
51,968 KB
testcase_22 WA -
testcase_23 RE -
testcase_24 AC 37 ms
52,096 KB
testcase_25 AC 36 ms
52,096 KB
testcase_26 AC 36 ms
52,608 KB
testcase_27 RE -
testcase_28 AC 47 ms
57,600 KB
testcase_29 AC 40 ms
57,856 KB
testcase_30 AC 37 ms
51,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import*
a,b=input().split()
al,ar=map(int,a.split('.'))
bl,br=map(int,b.split('.'))
def pf(n):
 a,f={},2
 while f*f<=n:
  if n%f:f+=1
  else:a[f]=a.get(f,0)+1;n//=f
 if n>1:a[n]=a.get(n,0)+1
 return a
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