結果

問題 No.2682 Visible Divisible
ユーザー pitPpitP
提出日時 2024-03-20 23:31:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 220 ms / 2,000 ms
コード長 259 bytes
コンパイル時間 183 ms
コンパイル使用メモリ 82,272 KB
実行使用メモリ 107,700 KB
最終ジャッジ日時 2024-09-30 09:33:22
合計ジャッジ時間 4,344 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 186 ms
107,232 KB
testcase_01 AC 187 ms
107,120 KB
testcase_02 AC 197 ms
106,948 KB
testcase_03 AC 190 ms
107,044 KB
testcase_04 AC 197 ms
107,260 KB
testcase_05 AC 195 ms
107,380 KB
testcase_06 AC 187 ms
107,312 KB
testcase_07 AC 185 ms
106,648 KB
testcase_08 AC 36 ms
51,968 KB
testcase_09 AC 37 ms
51,840 KB
testcase_10 AC 37 ms
52,224 KB
testcase_11 AC 193 ms
107,372 KB
testcase_12 AC 194 ms
107,700 KB
testcase_13 AC 187 ms
107,324 KB
testcase_14 AC 220 ms
107,308 KB
testcase_15 AC 191 ms
106,360 KB
testcase_16 AC 195 ms
107,412 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import gcd
N, K = map(int, input().split())
A = list(map(int, input().split()))
A = [gcd(A[i], K) for i in range(N)]

l = 1
for i in range(N):
    l = l * A[i] // gcd(l, A[i])
    if l > K:
        exit(print("No"))

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