結果

問題 No.2954 Calculation of Exponentiation
ユーザー のーとのーと
提出日時 2024-11-08 23:15:17
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 445 bytes
コンパイル時間 467 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 64,000 KB
最終ジャッジ日時 2024-11-08 23:15:26
合計ジャッジ時間 5,588 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
57,088 KB
testcase_01 AC 40 ms
51,840 KB
testcase_02 AC 48 ms
57,600 KB
testcase_03 AC 44 ms
52,096 KB
testcase_04 AC 40 ms
51,840 KB
testcase_05 AC 41 ms
51,840 KB
testcase_06 AC 41 ms
52,096 KB
testcase_07 AC 39 ms
51,968 KB
testcase_08 AC 41 ms
51,968 KB
testcase_09 AC 41 ms
51,968 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 39 ms
52,224 KB
testcase_14 AC 40 ms
51,968 KB
testcase_15 AC 43 ms
52,096 KB
testcase_16 AC 41 ms
51,840 KB
testcase_17 AC 41 ms
52,096 KB
testcase_18 AC 41 ms
51,840 KB
testcase_19 AC 40 ms
51,840 KB
testcase_20 AC 47 ms
58,240 KB
testcase_21 AC 41 ms
51,968 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 41 ms
51,840 KB
testcase_25 AC 42 ms
51,968 KB
testcase_26 AC 42 ms
52,224 KB
testcase_27 AC 42 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

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