結果

問題 No.1723 [Cherry 3rd Tune *] Dead on
ユーザー ああいいああいい
提出日時 2022-05-18 09:07:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 88 ms / 2,000 ms
コード長 759 bytes
コンパイル時間 178 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 73,344 KB
最終ジャッジ日時 2024-09-16 09:46:32
合計ジャッジ時間 5,670 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 80 ms
72,064 KB
testcase_01 AC 81 ms
71,680 KB
testcase_02 AC 78 ms
71,424 KB
testcase_03 AC 78 ms
71,808 KB
testcase_04 AC 81 ms
72,064 KB
testcase_05 AC 83 ms
72,320 KB
testcase_06 AC 86 ms
73,088 KB
testcase_07 AC 83 ms
72,192 KB
testcase_08 AC 82 ms
71,680 KB
testcase_09 AC 77 ms
71,424 KB
testcase_10 AC 81 ms
71,424 KB
testcase_11 AC 81 ms
71,936 KB
testcase_12 AC 82 ms
73,344 KB
testcase_13 AC 76 ms
71,552 KB
testcase_14 AC 77 ms
71,552 KB
testcase_15 AC 76 ms
71,552 KB
testcase_16 AC 81 ms
71,808 KB
testcase_17 AC 79 ms
71,552 KB
testcase_18 AC 80 ms
71,424 KB
testcase_19 AC 81 ms
71,296 KB
testcase_20 AC 82 ms
71,936 KB
testcase_21 AC 87 ms
71,808 KB
testcase_22 AC 88 ms
73,344 KB
testcase_23 AC 83 ms
71,808 KB
testcase_24 AC 81 ms
71,552 KB
testcase_25 AC 79 ms
71,168 KB
testcase_26 AC 80 ms
71,680 KB
testcase_27 AC 81 ms
71,808 KB
testcase_28 AC 80 ms
71,424 KB
testcase_29 AC 81 ms
71,552 KB
testcase_30 AC 80 ms
71,808 KB
testcase_31 AC 83 ms
71,424 KB
testcase_32 AC 86 ms
71,552 KB
testcase_33 AC 82 ms
71,808 KB
testcase_34 AC 82 ms
71,424 KB
testcase_35 AC 78 ms
71,680 KB
testcase_36 AC 77 ms
71,552 KB
testcase_37 AC 81 ms
72,192 KB
testcase_38 AC 81 ms
71,552 KB
testcase_39 AC 79 ms
71,552 KB
testcase_40 AC 80 ms
71,296 KB
testcase_41 AC 81 ms
71,296 KB
testcase_42 AC 79 ms
71,424 KB
testcase_43 AC 85 ms
71,552 KB
testcase_44 AC 86 ms
71,424 KB
testcase_45 AC 81 ms
71,168 KB
testcase_46 AC 79 ms
71,680 KB
testcase_47 AC 77 ms
71,424 KB
testcase_48 AC 82 ms
71,936 KB
testcase_49 AC 80 ms
72,064 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

x,a,y,b = map(int,input().split())

dx = dict()
dy = dict()

C = 10 ** 6
dat = [0] * C
for i in range(2,C):
    if dat[i] == 0:
        for j in range(2 * i,C,i):
            dat[j] = 1
        if x % i == 0:
            x //= i
            count = 1
            while x % i == 0:
                x //= i
                count += 1
            dx[i] = count
        if y % i == 0:
            y //= i
            count = 1
            while y % i == 0:
                y //= i
                count += 1
            dy[i] = count
if x != 1:
    dx[x] = 1
if y != 1:
    dy[y] = 1
import sys
for p in dy:
    c = dy[p] * b
    if p not in dx:
        print('No')
        exit()
    cc = dx[p] * a
    if cc < c:
        print('No')
        exit()
print('Yes')
0