結果

問題 No.2682 Visible Divisible
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-11-04 13:57:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 218 ms / 2,000 ms
コード長 184 bytes
コンパイル時間 384 ms
コンパイル使用メモリ 82,536 KB
実行使用メモリ 105,936 KB
最終ジャッジ日時 2024-11-04 13:57:30
合計ジャッジ時間 6,181 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 187 ms
105,664 KB
testcase_01 AC 199 ms
105,428 KB
testcase_02 AC 201 ms
105,512 KB
testcase_03 AC 218 ms
105,600 KB
testcase_04 AC 211 ms
105,936 KB
testcase_05 AC 193 ms
105,544 KB
testcase_06 AC 187 ms
105,332 KB
testcase_07 AC 178 ms
104,932 KB
testcase_08 AC 35 ms
51,996 KB
testcase_09 AC 35 ms
53,664 KB
testcase_10 AC 36 ms
52,484 KB
testcase_11 AC 217 ms
105,904 KB
testcase_12 AC 195 ms
105,840 KB
testcase_13 AC 189 ms
105,084 KB
testcase_14 AC 197 ms
105,880 KB
testcase_15 AC 192 ms
105,416 KB
testcase_16 AC 196 ms
105,696 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,K=map(int,input().split())
a=list(map(int,input().split()))
from math import gcd
for i in range(n):
  a[i]=gcd(a[i],K)
g=1
for v in a:
  g=(g*v)//gcd(g,v)
print(["No","Yes"][g%K==0])
0