結果

問題 No.1723 [Cherry 3rd Tune *] Dead on
ユーザー irumo8202irumo8202
提出日時 2022-02-01 23:47:29
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 224 ms / 2,000 ms
コード長 787 bytes
コンパイル時間 234 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 11,008 KB
最終ジャッジ日時 2024-06-11 09:16:20
合計ジャッジ時間 8,070 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,880 KB
testcase_01 AC 25 ms
10,880 KB
testcase_02 AC 37 ms
10,880 KB
testcase_03 AC 105 ms
10,880 KB
testcase_04 AC 194 ms
10,880 KB
testcase_05 AC 142 ms
10,752 KB
testcase_06 AC 141 ms
10,752 KB
testcase_07 AC 122 ms
10,880 KB
testcase_08 AC 217 ms
10,752 KB
testcase_09 AC 128 ms
10,880 KB
testcase_10 AC 183 ms
10,880 KB
testcase_11 AC 138 ms
10,880 KB
testcase_12 AC 174 ms
10,752 KB
testcase_13 AC 170 ms
10,880 KB
testcase_14 AC 66 ms
11,008 KB
testcase_15 AC 157 ms
10,880 KB
testcase_16 AC 182 ms
10,880 KB
testcase_17 AC 168 ms
10,880 KB
testcase_18 AC 178 ms
10,752 KB
testcase_19 AC 143 ms
10,880 KB
testcase_20 AC 106 ms
10,880 KB
testcase_21 AC 145 ms
10,880 KB
testcase_22 AC 148 ms
10,752 KB
testcase_23 AC 201 ms
10,880 KB
testcase_24 AC 107 ms
10,880 KB
testcase_25 AC 206 ms
10,880 KB
testcase_26 AC 173 ms
10,880 KB
testcase_27 AC 159 ms
10,880 KB
testcase_28 AC 166 ms
10,752 KB
testcase_29 AC 187 ms
10,880 KB
testcase_30 AC 202 ms
10,752 KB
testcase_31 AC 195 ms
10,880 KB
testcase_32 AC 215 ms
10,880 KB
testcase_33 AC 174 ms
10,752 KB
testcase_34 AC 171 ms
10,752 KB
testcase_35 AC 145 ms
10,752 KB
testcase_36 AC 224 ms
10,880 KB
testcase_37 AC 26 ms
10,880 KB
testcase_38 AC 26 ms
10,752 KB
testcase_39 AC 26 ms
10,880 KB
testcase_40 AC 83 ms
10,880 KB
testcase_41 AC 26 ms
10,752 KB
testcase_42 AC 26 ms
10,880 KB
testcase_43 AC 27 ms
10,880 KB
testcase_44 AC 25 ms
10,880 KB
testcase_45 AC 87 ms
10,880 KB
testcase_46 AC 101 ms
10,880 KB
testcase_47 AC 117 ms
10,880 KB
testcase_48 AC 27 ms
10,880 KB
testcase_49 AC 58 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

X, A, Y, B = map(int, input().split())
if Y == 1:
    print("Yes")
    exit()


def factorization(n):
    fact = dict()
    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
            fact[i] = cnt

    if temp != 1:
        fact[temp] = 1

    if not fact:
        fact[n] = 1

    return fact


fact_x_power_of_a = {p: cnt * A for p, cnt in factorization(X).items()}
fact_y_power_of_b = {p: cnt * B for p, cnt in factorization(Y).items()}

flg = True
for p in fact_y_power_of_b:
    try:
        if fact_x_power_of_a[p] < fact_y_power_of_b[p]:
            flg = False
    except KeyError:
        flg = False

print("Yes" if flg else "No")
0