結果

問題 No.2682 Visible Divisible
ユーザー mutualnsmutualns
提出日時 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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 180 ms
105,984 KB
testcase_01 AC 188 ms
105,764 KB
testcase_02 AC 193 ms
105,444 KB
testcase_03 AC 189 ms
105,540 KB
testcase_04 AC 198 ms
105,880 KB
testcase_05 AC 194 ms
105,868 KB
testcase_06 AC 189 ms
105,544 KB
testcase_07 AC 192 ms
105,008 KB
testcase_08 AC 37 ms
52,096 KB
testcase_09 AC 38 ms
51,840 KB
testcase_10 AC 36 ms
51,968 KB
testcase_11 AC 186 ms
105,864 KB
testcase_12 AC 194 ms
106,056 KB
testcase_13 AC 188 ms
105,376 KB
testcase_14 AC 192 ms
105,824 KB
testcase_15 AC 187 ms
105,100 KB
testcase_16 AC 196 ms
106,152 KB
権限があれば一括ダウンロードができます

ソースコード

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