結果

問題 No.2682 Visible Divisible
ユーザー tipstar0125tipstar0125
提出日時 2024-03-20 22:55:32
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 212 bytes
コンパイル時間 361 ms
コンパイル使用メモリ 82,580 KB
実行使用メモリ 106,280 KB
最終ジャッジ日時 2024-09-30 09:03:03
合計ジャッジ時間 4,141 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 157 ms
106,280 KB
testcase_01 AC 161 ms
105,836 KB
testcase_02 AC 163 ms
105,764 KB
testcase_03 AC 163 ms
105,976 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 159 ms
105,376 KB
testcase_08 AC 34 ms
52,660 KB
testcase_09 AC 36 ms
53,628 KB
testcase_10 AC 36 ms
52,584 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 158 ms
106,144 KB
testcase_14 WA -
testcase_15 AC 160 ms
105,548 KB
testcase_16 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import gcd
N,K=list(map(int,input().split()))
A=list(map(int,input().split()))

g=0
for a in A:g=gcd(g,a)
for i in range(N):A[i]//=g
for a in A:
    if K%a==0:K//=a
if K==1:print("Yes")
else:print("No")
0