結果

問題 No.2954 Calculation of Exponentiation
ユーザー のーとのーと
提出日時 2024-11-08 22:56:51
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 479 bytes
コンパイル時間 515 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 94,208 KB
最終ジャッジ日時 2024-11-08 22:57:01
合計ジャッジ時間 8,556 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 145 ms
93,824 KB
testcase_01 AC 147 ms
88,576 KB
testcase_02 AC 148 ms
88,832 KB
testcase_03 AC 143 ms
88,576 KB
testcase_04 AC 150 ms
88,320 KB
testcase_05 AC 142 ms
88,576 KB
testcase_06 AC 144 ms
88,320 KB
testcase_07 AC 144 ms
88,320 KB
testcase_08 AC 145 ms
88,576 KB
testcase_09 AC 145 ms
88,704 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 146 ms
88,576 KB
testcase_14 AC 150 ms
88,320 KB
testcase_15 AC 148 ms
88,320 KB
testcase_16 AC 144 ms
88,448 KB
testcase_17 AC 144 ms
88,320 KB
testcase_18 AC 146 ms
88,576 KB
testcase_19 AC 145 ms
88,320 KB
testcase_20 AC 156 ms
88,960 KB
testcase_21 AC 146 ms
88,576 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 147 ms
88,704 KB
testcase_25 AC 144 ms
88,576 KB
testcase_26 AC 146 ms
88,320 KB
testcase_27 AC 160 ms
88,704 KB
testcase_28 TLE -
testcase_29 -- -
testcase_30 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

A,B=map(float,input().split())
from fractions import Fraction
import math
a=Fraction(A).limit_denominator()
b=Fraction(B).limit_denominator()

p=a.numerator
q=a.denominator
r=b.numerator
s=b.denominator
#print(p,q,r,s)
M=998244353

for n in range(p+1):
	if pow(n,s,M)==p:
		y=n
		break
	if pow(n,s,M)>p:
		print("No")
		exit()

for n in range(q+1):
	if pow(n,s,M)==q:
		x=n
		break
	if pow(n,s,M)>q:
		print("No")
		exit()
#print(y,x)
if y%x==0:
	print("Yes")
else:
	print("No")
0