結果

問題 No.1250 汝は倍数なりや?
ユーザー tanon710tanon710
提出日時 2020-10-10 00:28:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 122 ms / 1,000 ms
コード長 602 bytes
コンパイル時間 215 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 101,376 KB
最終ジャッジ日時 2024-07-20 14:58:24
合計ジャッジ時間 5,012 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
53,888 KB
testcase_01 AC 51 ms
53,632 KB
testcase_02 AC 45 ms
54,016 KB
testcase_03 AC 44 ms
53,760 KB
testcase_04 AC 44 ms
53,760 KB
testcase_05 AC 44 ms
54,144 KB
testcase_06 AC 42 ms
53,376 KB
testcase_07 AC 44 ms
53,760 KB
testcase_08 AC 41 ms
54,016 KB
testcase_09 AC 41 ms
53,376 KB
testcase_10 AC 41 ms
53,760 KB
testcase_11 AC 40 ms
53,888 KB
testcase_12 AC 40 ms
54,016 KB
testcase_13 AC 40 ms
53,760 KB
testcase_14 AC 39 ms
53,760 KB
testcase_15 AC 40 ms
53,760 KB
testcase_16 AC 43 ms
53,888 KB
testcase_17 AC 44 ms
53,760 KB
testcase_18 AC 44 ms
53,888 KB
testcase_19 AC 44 ms
53,760 KB
testcase_20 AC 44 ms
54,144 KB
testcase_21 AC 44 ms
53,888 KB
testcase_22 AC 45 ms
53,632 KB
testcase_23 AC 50 ms
54,016 KB
testcase_24 AC 53 ms
60,800 KB
testcase_25 AC 53 ms
61,056 KB
testcase_26 AC 50 ms
60,416 KB
testcase_27 AC 53 ms
61,952 KB
testcase_28 AC 56 ms
60,032 KB
testcase_29 AC 45 ms
53,632 KB
testcase_30 AC 51 ms
60,800 KB
testcase_31 AC 41 ms
53,888 KB
testcase_32 AC 50 ms
61,440 KB
testcase_33 AC 121 ms
99,120 KB
testcase_34 AC 89 ms
91,008 KB
testcase_35 AC 107 ms
101,376 KB
testcase_36 AC 122 ms
98,944 KB
testcase_37 AC 86 ms
91,648 KB
testcase_38 AC 88 ms
93,312 KB
testcase_39 AC 92 ms
91,008 KB
testcase_40 AC 97 ms
91,136 KB
testcase_41 AC 92 ms
95,872 KB
testcase_42 AC 80 ms
86,016 KB
testcase_43 AC 112 ms
98,432 KB
testcase_44 AC 79 ms
86,016 KB
testcase_45 AC 117 ms
98,816 KB
testcase_46 AC 75 ms
78,976 KB
testcase_47 AC 101 ms
93,184 KB
testcase_48 AC 45 ms
53,248 KB
testcase_49 AC 48 ms
59,008 KB
testcase_50 AC 45 ms
53,632 KB
testcase_51 AC 48 ms
59,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections

def ps(n):
    ret=collections.defaultdict(int)
    for i in range(2,int(n**0.5)+1):
        while n%i==0:
            ret[i]+=1
            n//=i
    if n!=1:
        ret[n]+=1
    return ret

n,h=map(int,input().split())
arr=list(map(int,input().split()))
primes=ps(h)
for val in arr:
    for p in primes.keys():
        if primes[p]==0:
            continue
        while val%p==0:
            primes[p]-=1
            val//=p
            if primes[p]==0:
                break
for p in primes.keys():
    if primes[p]!=0:
        print('NO')
        break
else:
    print('YES')
0