結果

問題 No.1723 [Cherry 3rd Tune *] Dead on
ユーザー irumo8202irumo8202
提出日時 2022-02-01 23:45:30
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 747 bytes
コンパイル時間 143 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-06-11 09:16:11
合計ジャッジ時間 7,522 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,624 KB
testcase_01 AC 26 ms
10,624 KB
testcase_02 AC 25 ms
10,624 KB
testcase_03 AC 104 ms
10,752 KB
testcase_04 AC 189 ms
10,752 KB
testcase_05 AC 132 ms
10,752 KB
testcase_06 AC 142 ms
10,624 KB
testcase_07 AC 115 ms
10,624 KB
testcase_08 AC 211 ms
10,880 KB
testcase_09 AC 126 ms
10,624 KB
testcase_10 AC 177 ms
10,624 KB
testcase_11 AC 132 ms
10,752 KB
testcase_12 AC 167 ms
10,624 KB
testcase_13 AC 166 ms
10,624 KB
testcase_14 AC 65 ms
10,624 KB
testcase_15 AC 150 ms
10,624 KB
testcase_16 AC 177 ms
10,752 KB
testcase_17 AC 166 ms
10,624 KB
testcase_18 AC 174 ms
10,752 KB
testcase_19 AC 137 ms
10,624 KB
testcase_20 AC 106 ms
10,880 KB
testcase_21 AC 141 ms
10,624 KB
testcase_22 AC 131 ms
10,624 KB
testcase_23 AC 179 ms
10,752 KB
testcase_24 AC 106 ms
10,752 KB
testcase_25 AC 198 ms
10,880 KB
testcase_26 AC 169 ms
10,624 KB
testcase_27 AC 155 ms
10,624 KB
testcase_28 AC 164 ms
10,624 KB
testcase_29 AC 192 ms
10,752 KB
testcase_30 AC 193 ms
10,752 KB
testcase_31 AC 158 ms
10,624 KB
testcase_32 AC 181 ms
10,624 KB
testcase_33 AC 143 ms
10,752 KB
testcase_34 AC 142 ms
10,880 KB
testcase_35 AC 142 ms
10,624 KB
testcase_36 AC 214 ms
10,624 KB
testcase_37 WA -
testcase_38 AC 26 ms
10,624 KB
testcase_39 WA -
testcase_40 AC 82 ms
10,624 KB
testcase_41 AC 25 ms
10,752 KB
testcase_42 AC 25 ms
10,752 KB
testcase_43 AC 25 ms
10,624 KB
testcase_44 AC 24 ms
10,880 KB
testcase_45 AC 87 ms
10,624 KB
testcase_46 AC 101 ms
10,752 KB
testcase_47 AC 110 ms
10,624 KB
testcase_48 AC 26 ms
10,624 KB
testcase_49 AC 56 ms
10,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

X, A, Y, B = map(int, input().split())


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