結果

問題 No.2682 Visible Divisible
ユーザー lloyzlloyz
提出日時 2024-04-14 23:18:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 181 ms / 2,000 ms
コード長 300 bytes
コンパイル時間 185 ms
コンパイル使用メモリ 82,660 KB
実行使用メモリ 106,000 KB
最終ジャッジ日時 2024-10-04 04:25:56
合計ジャッジ時間 5,128 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 163 ms
105,520 KB
testcase_01 AC 168 ms
105,804 KB
testcase_02 AC 172 ms
105,616 KB
testcase_03 AC 177 ms
105,336 KB
testcase_04 AC 177 ms
105,788 KB
testcase_05 AC 177 ms
105,548 KB
testcase_06 AC 170 ms
105,452 KB
testcase_07 AC 163 ms
105,044 KB
testcase_08 AC 33 ms
52,992 KB
testcase_09 AC 32 ms
52,320 KB
testcase_10 AC 33 ms
53,672 KB
testcase_11 AC 169 ms
105,744 KB
testcase_12 AC 175 ms
105,600 KB
testcase_13 AC 172 ms
105,744 KB
testcase_14 AC 176 ms
106,000 KB
testcase_15 AC 176 ms
104,780 KB
testcase_16 AC 181 ms
105,932 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import gcd
import sys
input = sys.stdin.readline

n, k = map(int, input().split())
A = list(map(int, input().split()))

for i in range(n):
    A[i] = gcd(A[i], k)
lcmA = 1
for i in range(n):
    lcmA = lcmA * A[i] // gcd(lcmA, A[i])
if lcmA % k == 0:
    print("Yes")
else:
    print("No")
0