結果

問題 No.2954 Calculation of Exponentiation
ユーザー のーとのーと
提出日時 2024-11-08 23:20:27
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 503 bytes
コンパイル時間 279 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 63,616 KB
最終ジャッジ日時 2024-11-08 23:20:34
合計ジャッジ時間 5,475 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
57,472 KB
testcase_01 AC 42 ms
52,096 KB
testcase_02 AC 50 ms
58,240 KB
testcase_03 AC 42 ms
52,352 KB
testcase_04 AC 41 ms
52,224 KB
testcase_05 AC 42 ms
52,224 KB
testcase_06 AC 42 ms
52,096 KB
testcase_07 AC 41 ms
51,840 KB
testcase_08 AC 42 ms
52,096 KB
testcase_09 AC 42 ms
52,096 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 42 ms
52,096 KB
testcase_14 AC 41 ms
51,968 KB
testcase_15 AC 42 ms
52,096 KB
testcase_16 AC 42 ms
52,352 KB
testcase_17 AC 41 ms
51,968 KB
testcase_18 AC 42 ms
52,224 KB
testcase_19 AC 42 ms
51,968 KB
testcase_20 AC 49 ms
58,240 KB
testcase_21 AC 41 ms
52,352 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 42 ms
52,352 KB
testcase_25 AC 41 ms
52,096 KB
testcase_26 AC 42 ms
51,840 KB
testcase_27 AC 41 ms
51,968 KB
testcase_28 TLE -
testcase_29 -- -
testcase_30 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

A,B=map(float,input().split())
import math
ga=math.gcd(int(10000*A),10000)
gb=math.gcd(int(10000*B),10000)
p=int(10000*A)//ga
q=10000//ga
r=int(10000*B)//gb
s=10000//gb

#print(p,q,r,s)
M=998244353
f=0
for n in range(10000000):
	if pow(n,s,M)==p:
		y=n
		f+=1
		break
	if pow(n,s,M)>p:
		print("No")
		exit()

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