結果

問題 No.2682 Visible Divisible
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2023-12-16 13:37:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 208 ms / 2,000 ms
コード長 335 bytes
コンパイル時間 164 ms
コンパイル使用メモリ 82,504 KB
実行使用メモリ 106,416 KB
最終ジャッジ日時 2024-09-27 07:38:24
合計ジャッジ時間 4,685 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 191 ms
105,756 KB
testcase_01 AC 199 ms
105,532 KB
testcase_02 AC 203 ms
105,588 KB
testcase_03 AC 199 ms
105,848 KB
testcase_04 AC 203 ms
106,036 KB
testcase_05 AC 206 ms
106,416 KB
testcase_06 AC 193 ms
105,808 KB
testcase_07 AC 191 ms
105,432 KB
testcase_08 AC 38 ms
52,604 KB
testcase_09 AC 38 ms
52,588 KB
testcase_10 AC 38 ms
53,576 KB
testcase_11 AC 202 ms
105,748 KB
testcase_12 AC 207 ms
105,820 KB
testcase_13 AC 197 ms
106,264 KB
testcase_14 AC 205 ms
106,244 KB
testcase_15 AC 203 ms
105,524 KB
testcase_16 AC 208 ms
105,948 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

"""

AC解

"""

import math

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

assert 1 <= N <= 2*(10**5)
assert 1 <= K <= 10**18
assert len(A) == N
for a in A:
    assert 1 <= a <= 10**18

X = 1

for a in A:

    g = math.gcd(a,K)
    X = g * X // math.gcd(g,X)

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