結果

問題 No.2682 Visible Divisible
ユーザー noriocnorioc
提出日時 2024-03-20 23:49:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 191 ms / 2,000 ms
コード長 209 bytes
コンパイル時間 164 ms
コンパイル使用メモリ 82,264 KB
実行使用メモリ 108,096 KB
最終ジャッジ日時 2024-09-30 09:42:16
合計ジャッジ時間 4,326 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 177 ms
107,696 KB
testcase_01 AC 178 ms
107,616 KB
testcase_02 AC 186 ms
107,184 KB
testcase_03 AC 178 ms
107,508 KB
testcase_04 AC 191 ms
108,096 KB
testcase_05 AC 183 ms
107,708 KB
testcase_06 AC 179 ms
107,404 KB
testcase_07 AC 173 ms
107,112 KB
testcase_08 AC 36 ms
53,052 KB
testcase_09 AC 34 ms
53,132 KB
testcase_10 AC 34 ms
52,996 KB
testcase_11 AC 175 ms
107,976 KB
testcase_12 AC 184 ms
107,644 KB
testcase_13 AC 183 ms
107,696 KB
testcase_14 AC 186 ms
107,692 KB
testcase_15 AC 183 ms
106,700 KB
testcase_16 AC 186 ms
108,000 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import gcd, lcm

N, K = map(int, input().split())
A = list(map(int, input().split()))

x = 1
for a in [gcd(K, a) for a in A]:
    x = lcm(x, a)

if x % K == 0:
    print('Yes')
else:
    print('No')
0