結果

問題 No.2682 Visible Divisible
ユーザー H20H20
提出日時 2024-03-20 22:13:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 224 ms / 2,000 ms
コード長 268 bytes
コンパイル時間 165 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 107,220 KB
最終ジャッジ日時 2024-09-30 08:08:07
合計ジャッジ時間 4,760 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 208 ms
106,312 KB
testcase_01 AC 214 ms
107,052 KB
testcase_02 AC 220 ms
106,740 KB
testcase_03 AC 217 ms
106,712 KB
testcase_04 AC 221 ms
106,584 KB
testcase_05 AC 224 ms
106,480 KB
testcase_06 AC 212 ms
107,220 KB
testcase_07 AC 202 ms
106,520 KB
testcase_08 AC 46 ms
53,632 KB
testcase_09 AC 46 ms
53,376 KB
testcase_10 AC 46 ms
53,376 KB
testcase_11 AC 216 ms
106,324 KB
testcase_12 AC 222 ms
106,832 KB
testcase_13 AC 215 ms
106,300 KB
testcase_14 AC 223 ms
106,976 KB
testcase_15 AC 217 ms
106,364 KB
testcase_16 AC 221 ms
106,612 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections
import math
def my_lcm(x, y):
    return (x * y) // math.gcd(x, y)


N,K = map(int, input().split())
A = list(map(int, input().split())) 
v = 1
for a in A:
    gc = math.gcd(a,K)
    v = my_lcm(v,gc)
if v%K==0:
    print('Yes')
else:
    print('No')
0