結果

問題 No.1250 汝は倍数なりや?
ユーザー sangonanasangonana
提出日時 2021-04-08 11:09:35
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 221 ms / 1,000 ms
コード長 391 bytes
コンパイル時間 78 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 31,300 KB
最終ジャッジ日時 2024-06-23 15:12:57
合計ジャッジ時間 4,754 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,752 KB
testcase_01 AC 27 ms
10,752 KB
testcase_02 AC 28 ms
10,880 KB
testcase_03 AC 28 ms
10,752 KB
testcase_04 AC 27 ms
10,752 KB
testcase_05 AC 29 ms
10,752 KB
testcase_06 AC 28 ms
10,880 KB
testcase_07 AC 28 ms
10,752 KB
testcase_08 AC 28 ms
10,752 KB
testcase_09 AC 27 ms
10,752 KB
testcase_10 AC 29 ms
10,752 KB
testcase_11 AC 29 ms
10,752 KB
testcase_12 AC 28 ms
10,752 KB
testcase_13 AC 30 ms
10,752 KB
testcase_14 AC 27 ms
10,752 KB
testcase_15 AC 27 ms
10,880 KB
testcase_16 AC 28 ms
10,752 KB
testcase_17 AC 28 ms
10,880 KB
testcase_18 AC 29 ms
10,752 KB
testcase_19 AC 27 ms
10,752 KB
testcase_20 AC 26 ms
10,752 KB
testcase_21 AC 26 ms
10,752 KB
testcase_22 AC 27 ms
10,752 KB
testcase_23 AC 27 ms
10,752 KB
testcase_24 AC 28 ms
10,752 KB
testcase_25 AC 28 ms
10,880 KB
testcase_26 AC 27 ms
10,752 KB
testcase_27 AC 28 ms
10,752 KB
testcase_28 AC 27 ms
10,880 KB
testcase_29 AC 28 ms
10,752 KB
testcase_30 AC 30 ms
10,752 KB
testcase_31 AC 29 ms
10,752 KB
testcase_32 AC 29 ms
10,752 KB
testcase_33 AC 221 ms
31,300 KB
testcase_34 AC 138 ms
21,108 KB
testcase_35 AC 168 ms
28,464 KB
testcase_36 AC 218 ms
29,460 KB
testcase_37 AC 115 ms
21,940 KB
testcase_38 AC 124 ms
22,740 KB
testcase_39 AC 131 ms
20,984 KB
testcase_40 AC 137 ms
21,332 KB
testcase_41 AC 126 ms
24,532 KB
testcase_42 AC 94 ms
18,148 KB
testcase_43 AC 171 ms
29,636 KB
testcase_44 AC 86 ms
18,200 KB
testcase_45 AC 189 ms
29,548 KB
testcase_46 AC 76 ms
16,344 KB
testcase_47 AC 135 ms
22,388 KB
testcase_48 AC 27 ms
10,752 KB
testcase_49 AC 26 ms
10,752 KB
testcase_50 AC 26 ms
10,880 KB
testcase_51 AC 26 ms
10,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict

n,h=map(int,input().split())
a=list(map(int,input().split()))

def prime_list(x):
	i=2
	prime=defaultdict(int)
	while i*i<=x:
		while x%i==0:
			x//=i
			prime[i]+=1
		i+=1
	if x>1:
		prime[x]+=1
	return prime

p=prime_list(h)

for x in a:
	for y in p.keys():
		while p[y]>0 and x%y==0:
			p[y]-=1

if sum(p.values())==0:
	print("YES")
else:
	print("NO")
0