結果

問題 No.1723 [Cherry 3rd Tune *] Dead on
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-11-10 00:44:44
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 241 bytes
コンパイル時間 984 ms
コンパイル使用メモリ 82,308 KB
実行使用メモリ 57,600 KB
最終ジャッジ日時 2024-11-10 00:44:53
合計ジャッジ時間 4,262 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,840 KB
testcase_01 WA -
testcase_02 AC 42 ms
51,712 KB
testcase_03 AC 58 ms
56,704 KB
testcase_04 AC 60 ms
56,704 KB
testcase_05 AC 49 ms
56,960 KB
testcase_06 AC 47 ms
56,960 KB
testcase_07 AC 45 ms
57,344 KB
testcase_08 AC 48 ms
57,216 KB
testcase_09 WA -
testcase_10 AC 50 ms
56,960 KB
testcase_11 AC 46 ms
57,088 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 65 ms
57,088 KB
testcase_16 AC 50 ms
56,704 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 51 ms
57,088 KB
testcase_20 WA -
testcase_21 AC 56 ms
56,960 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 55 ms
57,088 KB
testcase_26 AC 48 ms
57,216 KB
testcase_27 AC 45 ms
56,832 KB
testcase_28 WA -
testcase_29 AC 54 ms
57,088 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 47 ms
57,216 KB
testcase_33 AC 41 ms
51,712 KB
testcase_34 AC 41 ms
51,712 KB
testcase_35 WA -
testcase_36 AC 75 ms
57,216 KB
testcase_37 AC 41 ms
51,712 KB
testcase_38 AC 41 ms
51,840 KB
testcase_39 AC 42 ms
51,968 KB
testcase_40 AC 42 ms
51,712 KB
testcase_41 WA -
testcase_42 AC 41 ms
51,968 KB
testcase_43 AC 42 ms
51,968 KB
testcase_44 WA -
testcase_45 WA -
testcase_46 WA -
testcase_47 WA -
testcase_48 WA -
testcase_49 AC 42 ms
51,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def f(x,a):
	d={}
	i=2
	while i*i<=x:
		if x%i==0:
			c=0
			while x%i==0:
				x//=i
				c+=1
			d[i]=c
		i+=1
	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