結果

問題 No.1723 [Cherry 3rd Tune *] Dead on
ユーザー mrngmrng
提出日時 2021-11-21 13:36:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 214 ms / 2,000 ms
コード長 600 bytes
コンパイル時間 303 ms
コンパイル使用メモリ 81,960 KB
実行使用メモリ 240,112 KB
最終ジャッジ日時 2024-06-22 19:51:57
合計ジャッジ時間 7,004 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,340 KB
testcase_01 AC 34 ms
52,528 KB
testcase_02 AC 37 ms
52,456 KB
testcase_03 AC 146 ms
207,732 KB
testcase_04 AC 149 ms
210,428 KB
testcase_05 AC 166 ms
224,108 KB
testcase_06 AC 175 ms
239,924 KB
testcase_07 AC 116 ms
171,820 KB
testcase_08 AC 214 ms
240,112 KB
testcase_09 AC 124 ms
159,272 KB
testcase_10 AC 123 ms
183,212 KB
testcase_11 AC 160 ms
223,528 KB
testcase_12 AC 182 ms
239,528 KB
testcase_13 AC 192 ms
239,984 KB
testcase_14 AC 77 ms
103,560 KB
testcase_15 AC 129 ms
175,220 KB
testcase_16 AC 151 ms
208,856 KB
testcase_17 AC 135 ms
182,536 KB
testcase_18 AC 139 ms
171,944 KB
testcase_19 AC 82 ms
108,672 KB
testcase_20 AC 91 ms
124,676 KB
testcase_21 AC 132 ms
171,408 KB
testcase_22 AC 128 ms
171,504 KB
testcase_23 AC 146 ms
208,976 KB
testcase_24 AC 107 ms
139,888 KB
testcase_25 AC 185 ms
223,856 KB
testcase_26 AC 112 ms
158,968 KB
testcase_27 AC 166 ms
223,464 KB
testcase_28 AC 131 ms
171,896 KB
testcase_29 AC 122 ms
171,984 KB
testcase_30 AC 155 ms
223,944 KB
testcase_31 AC 125 ms
160,820 KB
testcase_32 AC 189 ms
239,888 KB
testcase_33 AC 51 ms
58,760 KB
testcase_34 AC 50 ms
58,228 KB
testcase_35 AC 35 ms
52,072 KB
testcase_36 AC 180 ms
226,416 KB
testcase_37 AC 35 ms
52,436 KB
testcase_38 AC 36 ms
52,364 KB
testcase_39 AC 36 ms
53,012 KB
testcase_40 AC 35 ms
53,516 KB
testcase_41 AC 34 ms
52,128 KB
testcase_42 AC 35 ms
53,132 KB
testcase_43 AC 33 ms
52,948 KB
testcase_44 AC 34 ms
52,940 KB
testcase_45 AC 48 ms
59,164 KB
testcase_46 AC 49 ms
58,932 KB
testcase_47 AC 34 ms
52,416 KB
testcase_48 AC 38 ms
57,856 KB
testcase_49 AC 34 ms
52,572 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

x,a,y,b = map(int,input().split())
if x==1:
	if y==1: print('Yes')
	else: print('No')
	exit()
if y==1:
	print('Yes')
	exit()
n = x
rep = int(n**0.5)+1
plist = dict()
for i in range(2,rep):
	c = 0
	while n%i==0:
		n //= i
		c += 1
	plist[i] = c
	if n==1: break
if n!=1:
	plist[n] = 1
ok = True
n = y
rep = int(n**0.5)+1
for i in range(2,rep):
	c = 0
	while n%i==0:
		n //= i
		c += 1
	if c>0:
		if plist.get(i) is None:
			ok = False; break
		if plist[i]*a<c*b:
			ok = False; break
if n!=1:
	if plist.get(n) is None:
		ok = False
	elif plist[n]*a<b:
		ok = False
if ok: print('Yes')
else: print('No')
0