結果

問題 No.1723 [Cherry 3rd Tune *] Dead on
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-11-10 00:49:07
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 264 bytes
コンパイル時間 304 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 65,664 KB
最終ジャッジ日時 2024-11-10 00:49:38
合計ジャッジ時間 3,292 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 RE -
testcase_02 AC 34 ms
52,096 KB
testcase_03 AC 35 ms
57,216 KB
testcase_04 RE -
testcase_05 AC 38 ms
57,600 KB
testcase_06 AC 36 ms
56,960 KB
testcase_07 AC 35 ms
57,216 KB
testcase_08 AC 36 ms
57,728 KB
testcase_09 AC 38 ms
57,344 KB
testcase_10 AC 38 ms
57,088 KB
testcase_11 AC 34 ms
57,728 KB
testcase_12 AC 36 ms
57,728 KB
testcase_13 WA -
testcase_14 AC 36 ms
56,832 KB
testcase_15 RE -
testcase_16 AC 40 ms
57,344 KB
testcase_17 RE -
testcase_18 WA -
testcase_19 AC 40 ms
56,960 KB
testcase_20 AC 36 ms
57,184 KB
testcase_21 AC 43 ms
56,984 KB
testcase_22 AC 38 ms
56,960 KB
testcase_23 AC 40 ms
57,472 KB
testcase_24 AC 36 ms
57,728 KB
testcase_25 AC 46 ms
57,344 KB
testcase_26 AC 36 ms
57,728 KB
testcase_27 AC 35 ms
57,216 KB
testcase_28 WA -
testcase_29 AC 44 ms
57,728 KB
testcase_30 AC 52 ms
57,472 KB
testcase_31 WA -
testcase_32 AC 38 ms
56,960 KB
testcase_33 AC 32 ms
52,332 KB
testcase_34 AC 32 ms
51,712 KB
testcase_35 AC 34 ms
52,096 KB
testcase_36 RE -
testcase_37 AC 32 ms
52,224 KB
testcase_38 AC 34 ms
52,096 KB
testcase_39 AC 32 ms
52,096 KB
testcase_40 RE -
testcase_41 RE -
testcase_42 RE -
testcase_43 RE -
testcase_44 RE -
testcase_45 WA -
testcase_46 AC 33 ms
51,712 KB
testcase_47 AC 33 ms
52,352 KB
testcase_48 RE -
testcase_49 AC 33 ms
51,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def f(x,a):
	d={1:1}
	i=2
	while i*i<=x:
		if x%i==0:
			c=0
			while x%i==0:
				x//=i
				c+=1
			d[i]=c*a
		i+=1
	if x>1:
		d[x]=c
	return d

x,a,y,b=map(int,input().split())
d1=f(x,a)
d2=f(y,b)
print(["No","Yes"][all((v in d1) and (d1[v]>=d2[v]) for v in d2)])
0