結果

問題 No.1250 汝は倍数なりや?
ユーザー hir355hir355
提出日時 2020-10-09 21:28:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 118 ms / 1,000 ms
コード長 558 bytes
コンパイル時間 165 ms
コンパイル使用メモリ 81,668 KB
実行使用メモリ 101,464 KB
最終ジャッジ日時 2024-07-20 08:43:59
合計ジャッジ時間 4,722 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
54,864 KB
testcase_01 AC 42 ms
55,100 KB
testcase_02 AC 41 ms
54,140 KB
testcase_03 AC 41 ms
55,064 KB
testcase_04 AC 43 ms
54,368 KB
testcase_05 AC 41 ms
55,224 KB
testcase_06 AC 41 ms
54,728 KB
testcase_07 AC 42 ms
55,548 KB
testcase_08 AC 42 ms
53,680 KB
testcase_09 AC 44 ms
54,380 KB
testcase_10 AC 42 ms
53,424 KB
testcase_11 AC 42 ms
53,628 KB
testcase_12 AC 43 ms
54,184 KB
testcase_13 AC 42 ms
54,856 KB
testcase_14 AC 42 ms
54,244 KB
testcase_15 AC 41 ms
55,512 KB
testcase_16 AC 43 ms
55,100 KB
testcase_17 AC 42 ms
54,924 KB
testcase_18 AC 42 ms
53,760 KB
testcase_19 AC 42 ms
54,096 KB
testcase_20 AC 42 ms
54,800 KB
testcase_21 AC 42 ms
53,640 KB
testcase_22 AC 42 ms
53,712 KB
testcase_23 AC 42 ms
54,664 KB
testcase_24 AC 47 ms
60,628 KB
testcase_25 AC 47 ms
60,760 KB
testcase_26 AC 45 ms
60,292 KB
testcase_27 AC 48 ms
61,872 KB
testcase_28 AC 44 ms
60,400 KB
testcase_29 AC 42 ms
54,664 KB
testcase_30 AC 45 ms
61,504 KB
testcase_31 AC 43 ms
54,364 KB
testcase_32 AC 47 ms
61,132 KB
testcase_33 AC 118 ms
99,004 KB
testcase_34 AC 81 ms
88,440 KB
testcase_35 AC 102 ms
101,464 KB
testcase_36 AC 117 ms
98,904 KB
testcase_37 AC 76 ms
88,820 KB
testcase_38 AC 80 ms
91,440 KB
testcase_39 AC 80 ms
88,096 KB
testcase_40 AC 81 ms
88,444 KB
testcase_41 AC 79 ms
92,752 KB
testcase_42 AC 70 ms
80,648 KB
testcase_43 AC 106 ms
98,868 KB
testcase_44 AC 67 ms
82,080 KB
testcase_45 AC 111 ms
99,076 KB
testcase_46 AC 65 ms
75,992 KB
testcase_47 AC 85 ms
91,336 KB
testcase_48 AC 42 ms
54,356 KB
testcase_49 AC 42 ms
53,792 KB
testcase_50 AC 41 ms
54,000 KB
testcase_51 AC 42 ms
54,404 KB
権限があれば一括ダウンロードができます

ソースコード

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 = list(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