結果

問題 No.2682 Visible Divisible
ユーザー tassei903tassei903
提出日時 2024-03-20 21:50:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 187 ms / 2,000 ms
コード長 559 bytes
コンパイル時間 183 ms
コンパイル使用メモリ 82,364 KB
実行使用メモリ 106,368 KB
最終ジャッジ日時 2024-09-30 07:39:05
合計ジャッジ時間 4,256 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 174 ms
105,400 KB
testcase_01 AC 181 ms
105,756 KB
testcase_02 AC 183 ms
105,744 KB
testcase_03 AC 179 ms
105,476 KB
testcase_04 AC 187 ms
105,912 KB
testcase_05 AC 180 ms
105,936 KB
testcase_06 AC 178 ms
105,872 KB
testcase_07 AC 168 ms
105,320 KB
testcase_08 AC 36 ms
54,112 KB
testcase_09 AC 36 ms
52,800 KB
testcase_10 AC 36 ms
53,120 KB
testcase_11 AC 187 ms
105,904 KB
testcase_12 AC 183 ms
106,368 KB
testcase_13 AC 179 ms
105,776 KB
testcase_14 AC 187 ms
105,888 KB
testcase_15 AC 184 ms
105,948 KB
testcase_16 AC 185 ms
106,052 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda :sys.stdin.readline()[:-1]
ni = lambda :int(input())
na = lambda :list(map(int,input().split()))
yes = lambda :print("yes");Yes = lambda :print("Yes");YES = lambda : print("YES")
no = lambda :print("no");No = lambda :print("No");NO = lambda : print("NO")
#######################################################################
n,k = na()
a = na()
from math import gcd
def lcm(x, y):
    return (x * y) // gcd(x, y)
z = 1
for i in range(n):
    g = gcd(a[i],k)
    z = lcm(z, g)

if z == k:
    print("Yes")
else:
    print("No")
    
0