結果

問題 No.2682 Visible Divisible
ユーザー mutualns
提出日時 2024-03-21 00:29:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 198 ms / 2,000 ms
コード長 175 bytes
コンパイル時間 160 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 106,152 KB
最終ジャッジ日時 2024-09-30 09:48:53
合計ジャッジ時間 4,267 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 14
権限があれば一括ダウンロードができます

ソースコード

diff #

import math

n,k=map(int,input().split())
a=list(map(int,input().split()))
now=1
for i in a:
  now=math.lcm(now,math.gcd(k,i))
  
if now==k:
  print('Yes')
else:
  print('No')
0