結果

問題 No.1250 汝は倍数なりや?
ユーザー hir355hir355
提出日時 2020-10-09 21:26:57
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 553 bytes
コンパイル時間 212 ms
コンパイル使用メモリ 82,220 KB
実行使用メモリ 101,084 KB
最終ジャッジ日時 2024-07-20 08:24:24
合計ジャッジ時間 4,837 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 43 ms
54,788 KB
testcase_02 WA -
testcase_03 AC 43 ms
53,788 KB
testcase_04 WA -
testcase_05 AC 42 ms
54,080 KB
testcase_06 AC 42 ms
54,536 KB
testcase_07 AC 42 ms
53,760 KB
testcase_08 AC 44 ms
54,792 KB
testcase_09 AC 44 ms
54,480 KB
testcase_10 AC 41 ms
53,412 KB
testcase_11 WA -
testcase_12 AC 42 ms
54,700 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 44 ms
54,436 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 43 ms
54,904 KB
testcase_24 AC 49 ms
60,616 KB
testcase_25 AC 49 ms
61,932 KB
testcase_26 WA -
testcase_27 AC 48 ms
60,996 KB
testcase_28 WA -
testcase_29 AC 43 ms
54,480 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 114 ms
99,288 KB
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 AC 88 ms
90,724 KB
testcase_38 AC 86 ms
93,044 KB
testcase_39 WA -
testcase_40 WA -
testcase_41 AC 88 ms
95,472 KB
testcase_42 AC 75 ms
85,548 KB
testcase_43 AC 109 ms
98,920 KB
testcase_44 AC 76 ms
85,780 KB
testcase_45 WA -
testcase_46 AC 65 ms
78,660 KB
testcase_47 WA -
testcase_48 AC 43 ms
53,536 KB
testcase_49 AC 43 ms
54,332 KB
testcase_50 WA -
testcase_51 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter


def factorize(n):
    a = 2
    fct = []
    while a * a <= n:
        while n % a == 0:
            n //= a
            fct.append(a)
        a += 1
    if n > 1:
        fct.append(n)
    return fct


n, h = map(int, input().split())
p = Counter(factorize(h))
a = list(map(int, input().split()))
keys = p.keys()
for x in a:
    for k in keys:
        while p[k] == 0 and x % k == 0:
            p[k] -= 1
            x //= k
for v in p.values():
    if v > 0:
        print('NO')
        break
else:
    print('YES')
0