結果

問題 No.1723 [Cherry 3rd Tune *] Dead on
ユーザー rlangevinrlangevin
提出日時 2023-01-01 02:23:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 74 ms / 2,000 ms
コード長 634 bytes
コンパイル時間 150 ms
コンパイル使用メモリ 82,040 KB
実行使用メモリ 60,956 KB
最終ジャッジ日時 2024-11-26 23:59:43
合計ジャッジ時間 4,785 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
53,828 KB
testcase_01 AC 43 ms
54,020 KB
testcase_02 AC 42 ms
55,268 KB
testcase_03 AC 60 ms
60,108 KB
testcase_04 AC 69 ms
59,796 KB
testcase_05 AC 63 ms
60,436 KB
testcase_06 AC 66 ms
59,380 KB
testcase_07 AC 63 ms
60,872 KB
testcase_08 AC 74 ms
59,820 KB
testcase_09 AC 65 ms
59,284 KB
testcase_10 AC 69 ms
59,336 KB
testcase_11 AC 65 ms
60,524 KB
testcase_12 AC 72 ms
59,884 KB
testcase_13 AC 71 ms
59,644 KB
testcase_14 AC 52 ms
59,580 KB
testcase_15 AC 63 ms
59,344 KB
testcase_16 AC 68 ms
59,940 KB
testcase_17 AC 66 ms
59,084 KB
testcase_18 AC 67 ms
59,484 KB
testcase_19 AC 63 ms
60,156 KB
testcase_20 AC 60 ms
59,824 KB
testcase_21 AC 63 ms
59,712 KB
testcase_22 AC 64 ms
59,308 KB
testcase_23 AC 68 ms
59,956 KB
testcase_24 AC 60 ms
60,700 KB
testcase_25 AC 70 ms
59,476 KB
testcase_26 AC 68 ms
60,956 KB
testcase_27 AC 68 ms
59,216 KB
testcase_28 AC 66 ms
59,824 KB
testcase_29 AC 68 ms
60,312 KB
testcase_30 AC 72 ms
59,616 KB
testcase_31 AC 65 ms
59,796 KB
testcase_32 AC 68 ms
59,696 KB
testcase_33 AC 72 ms
60,244 KB
testcase_34 AC 73 ms
59,420 KB
testcase_35 AC 72 ms
60,748 KB
testcase_36 AC 73 ms
59,264 KB
testcase_37 AC 43 ms
55,840 KB
testcase_38 AC 43 ms
54,724 KB
testcase_39 AC 42 ms
53,752 KB
testcase_40 AC 59 ms
59,252 KB
testcase_41 AC 43 ms
54,192 KB
testcase_42 AC 43 ms
54,216 KB
testcase_43 AC 44 ms
54,572 KB
testcase_44 AC 43 ms
55,520 KB
testcase_45 AC 60 ms
60,800 KB
testcase_46 AC 63 ms
60,848 KB
testcase_47 AC 66 ms
59,228 KB
testcase_48 AC 45 ms
59,572 KB
testcase_49 AC 53 ms
59,876 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import *

def factorization(n):
    arr = []
    temp = n
    for i in range(2, int(-(-n**0.5//1))+1):
        if temp%i==0:
            cnt=0
            while temp%i==0:
                cnt+=1
                temp //= i
            arr.append([i, cnt])

    if temp!=1:
        arr.append([temp, 1])

    return arr


X, A, Y, B = map(int, input().split())
DX, DY = defaultdict(int), defaultdict(int)
LX, LY = factorization(X), factorization(Y)
for n, ind in LX:
    DX[n] = ind * A
for n, ind in LY:
    DY[n] = ind * B
    
for k, v in DY.items():
    if v > DX[k]:
        print("No")
        exit()
print("Yes")
0