結果

問題 No.1723 [Cherry 3rd Tune *] Dead on
ユーザー HydruHydru
提出日時 2021-10-29 21:56:27
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 550 bytes
コンパイル時間 496 ms
コンパイル使用メモリ 82,296 KB
実行使用メモリ 60,800 KB
最終ジャッジ日時 2024-10-07 11:06:48
合計ジャッジ時間 4,424 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
54,092 KB
testcase_01 AC 42 ms
53,936 KB
testcase_02 AC 41 ms
55,280 KB
testcase_03 AC 46 ms
59,444 KB
testcase_04 AC 60 ms
59,748 KB
testcase_05 AC 49 ms
60,480 KB
testcase_06 AC 46 ms
60,800 KB
testcase_07 AC 45 ms
59,684 KB
testcase_08 AC 49 ms
60,560 KB
testcase_09 AC 45 ms
60,364 KB
testcase_10 AC 49 ms
59,520 KB
testcase_11 AC 44 ms
60,544 KB
testcase_12 AC 45 ms
60,588 KB
testcase_13 AC 45 ms
60,616 KB
testcase_14 AC 45 ms
59,364 KB
testcase_15 AC 64 ms
60,604 KB
testcase_16 AC 50 ms
59,220 KB
testcase_17 AC 65 ms
59,556 KB
testcase_18 AC 55 ms
60,100 KB
testcase_19 AC 51 ms
58,760 KB
testcase_20 AC 48 ms
59,692 KB
testcase_21 AC 57 ms
59,948 KB
testcase_22 AC 47 ms
60,668 KB
testcase_23 AC 50 ms
59,696 KB
testcase_24 AC 45 ms
60,028 KB
testcase_25 AC 55 ms
58,896 KB
testcase_26 AC 47 ms
59,212 KB
testcase_27 AC 45 ms
60,236 KB
testcase_28 AC 57 ms
59,012 KB
testcase_29 AC 54 ms
60,292 KB
testcase_30 AC 63 ms
59,696 KB
testcase_31 AC 53 ms
58,960 KB
testcase_32 AC 47 ms
59,784 KB
testcase_33 AC 41 ms
54,464 KB
testcase_34 AC 42 ms
54,188 KB
testcase_35 AC 42 ms
54,736 KB
testcase_36 AC 74 ms
60,152 KB
testcase_37 WA -
testcase_38 AC 42 ms
55,296 KB
testcase_39 WA -
testcase_40 AC 42 ms
54,492 KB
testcase_41 AC 42 ms
53,744 KB
testcase_42 AC 42 ms
54,316 KB
testcase_43 AC 42 ms
54,928 KB
testcase_44 AC 42 ms
54,256 KB
testcase_45 AC 42 ms
55,192 KB
testcase_46 AC 40 ms
54,368 KB
testcase_47 AC 42 ms
54,556 KB
testcase_48 AC 41 ms
54,620 KB
testcase_49 AC 42 ms
55,000 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from sys import exit
from collections import defaultdict
def Prime_factorization(x):
    result=defaultdict(int)
    if x==1:
        result[1]=1
        return result
    i=2
    while(i**2<=x):
        tmp=0
        while(x%i==0):
            tmp+=1
            x//=i
        if tmp>0:
            result[i]=tmp
        i+=1
    if x>1:
        result[x]=1
    return result

x,a,y,b=map(int,input().split())
X=Prime_factorization(x)
Y=Prime_factorization(y)
for q,i in Y.items():
    if X[q]*a<i*b:
        print("No")
        exit()

print("Yes")
0