結果

問題 No.2682 Visible Divisible
ユーザー tipstar0125tipstar0125
提出日時 2024-03-21 09:32:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 184 ms / 2,000 ms
コード長 237 bytes
コンパイル時間 177 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 105,832 KB
最終ジャッジ日時 2024-09-30 10:02:31
合計ジャッジ時間 4,086 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 173 ms
105,444 KB
testcase_01 AC 179 ms
105,692 KB
testcase_02 AC 182 ms
105,476 KB
testcase_03 AC 177 ms
105,436 KB
testcase_04 AC 183 ms
105,712 KB
testcase_05 AC 179 ms
105,832 KB
testcase_06 AC 174 ms
105,452 KB
testcase_07 AC 167 ms
105,104 KB
testcase_08 AC 35 ms
51,968 KB
testcase_09 AC 35 ms
51,968 KB
testcase_10 AC 35 ms
52,096 KB
testcase_11 AC 183 ms
105,704 KB
testcase_12 AC 183 ms
105,596 KB
testcase_13 AC 179 ms
105,760 KB
testcase_14 AC 182 ms
105,660 KB
testcase_15 AC 180 ms
105,072 KB
testcase_16 AC 184 ms
105,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import gcd
N,K=list(map(int,input().split()))
A=list(map(int,input().split()))

def lcm(a,b):return a*b//gcd(a,b)

for i in range(N):
    A[i]=gcd(K,A[i])

l=1
for a in A:
    l=lcm(l,a)

if l%K==0:print("Yes")
else:print("No")
0