結果

問題 No.2682 Visible Divisible
ユーザー 👑 p-adicp-adic
提出日時 2024-03-20 22:31:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 264 ms / 2,000 ms
コード長 179 bytes
コンパイル時間 409 ms
コンパイル使用メモリ 82,312 KB
実行使用メモリ 110,624 KB
最終ジャッジ日時 2024-09-30 08:31:05
合計ジャッジ時間 5,760 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 248 ms
110,168 KB
testcase_01 AC 255 ms
110,592 KB
testcase_02 AC 259 ms
110,540 KB
testcase_03 AC 253 ms
110,376 KB
testcase_04 AC 253 ms
110,196 KB
testcase_05 AC 255 ms
110,188 KB
testcase_06 AC 246 ms
110,624 KB
testcase_07 AC 243 ms
109,024 KB
testcase_08 AC 35 ms
51,840 KB
testcase_09 AC 36 ms
51,840 KB
testcase_10 AC 36 ms
51,584 KB
testcase_11 AC 257 ms
110,308 KB
testcase_12 AC 264 ms
110,496 KB
testcase_13 AC 250 ms
109,648 KB
testcase_14 AC 257 ms
110,268 KB
testcase_15 AC 250 ms
109,096 KB
testcase_16 AC 249 ms
110,088 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

J=lambda:map(int,input().split())
N,K=J()
A=list(J())
def g(a,b):
	while b:a,b=b,a%b
	return a
for i in range(N):A[i]=g(A[i],K)
l=1
for a in A:l=l*a//g(l,a)
print("YNeos"[l<K::2])
0