結果

問題 No.2682 Visible Divisible
ユーザー 👑 rin204rin204
提出日時 2024-02-29 21:45:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 195 ms / 2,000 ms
コード長 318 bytes
コンパイル時間 277 ms
コンパイル使用メモリ 82,028 KB
実行使用メモリ 106,224 KB
最終ジャッジ日時 2024-09-29 12:58:34
合計ジャッジ時間 5,561 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 179 ms
105,772 KB
testcase_01 AC 188 ms
105,656 KB
testcase_02 AC 188 ms
105,744 KB
testcase_03 AC 184 ms
105,572 KB
testcase_04 AC 191 ms
105,652 KB
testcase_05 AC 191 ms
105,756 KB
testcase_06 AC 187 ms
105,720 KB
testcase_07 AC 184 ms
105,024 KB
testcase_08 AC 37 ms
52,536 KB
testcase_09 AC 35 ms
52,472 KB
testcase_10 AC 36 ms
52,392 KB
testcase_11 AC 190 ms
106,024 KB
testcase_12 AC 195 ms
105,560 KB
testcase_13 AC 184 ms
106,116 KB
testcase_14 AC 191 ms
106,224 KB
testcase_15 AC 187 ms
104,764 KB
testcase_16 AC 190 ms
105,936 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import gcd

n, k = map(int, input().split())
A = list(map(int, input().split()))
assert 1 <= n <= 200000
assert 1 <= k <= 10**18
assert len(A) == n
assert all(1 <= a <= 10**18 for a in A)

lc = 1
for a in A:
    a = gcd(a, k)
    lc = lc * a // gcd(lc, a)

if lc == k:
    print("Yes")
else:
    print("No")
0