結果

問題 No.2682 Visible Divisible
ユーザー rlangevinrlangevin
提出日時 2024-03-20 21:18:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 186 ms / 2,000 ms
コード長 253 bytes
コンパイル時間 232 ms
コンパイル使用メモリ 82,392 KB
実行使用メモリ 105,912 KB
最終ジャッジ日時 2024-09-30 07:04:37
合計ジャッジ時間 3,979 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 172 ms
105,404 KB
testcase_01 AC 175 ms
104,844 KB
testcase_02 AC 186 ms
105,436 KB
testcase_03 AC 182 ms
105,264 KB
testcase_04 AC 184 ms
105,092 KB
testcase_05 AC 179 ms
105,728 KB
testcase_06 AC 171 ms
105,024 KB
testcase_07 AC 167 ms
104,476 KB
testcase_08 AC 34 ms
51,456 KB
testcase_09 AC 33 ms
51,840 KB
testcase_10 AC 33 ms
52,224 KB
testcase_11 AC 175 ms
105,588 KB
testcase_12 AC 180 ms
105,912 KB
testcase_13 AC 177 ms
105,180 KB
testcase_14 AC 184 ms
105,676 KB
testcase_15 AC 177 ms
104,832 KB
testcase_16 AC 181 ms
105,116 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import gcd

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

N, K = map(int, input().split())
A = list(map(int, input().split()))
ans = 1
for i in range(N):
    g = gcd(K, A[i])
    ans = lcm(g, ans)
    
print("Yes") if ans == K else print("No")
0