結果

問題 No.2682 Visible Divisible
ユーザー Navier_BoltzmannNavier_Boltzmann
提出日時 2024-05-16 22:24:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 260 ms / 2,000 ms
コード長 417 bytes
コンパイル時間 142 ms
コンパイル使用メモリ 82,452 KB
実行使用メモリ 116,804 KB
最終ジャッジ日時 2024-05-16 22:24:10
合計ジャッジ時間 5,408 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 234 ms
116,076 KB
testcase_01 AC 251 ms
116,092 KB
testcase_02 AC 244 ms
116,384 KB
testcase_03 AC 252 ms
116,540 KB
testcase_04 AC 219 ms
115,584 KB
testcase_05 AC 239 ms
115,708 KB
testcase_06 AC 234 ms
116,804 KB
testcase_07 AC 230 ms
107,400 KB
testcase_08 AC 41 ms
55,776 KB
testcase_09 AC 42 ms
55,500 KB
testcase_10 AC 44 ms
56,496 KB
testcase_11 AC 248 ms
116,072 KB
testcase_12 AC 260 ms
116,036 KB
testcase_13 AC 235 ms
115,940 KB
testcase_14 AC 248 ms
116,428 KB
testcase_15 AC 226 ms
115,032 KB
testcase_16 AC 218 ms
115,748 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# import pypyjit
# pypyjit.set_param("max_unroll_recursion=-1")
from collections import *
from functools import *
from itertools import *
from heapq import *
import sys, math
# sys.setrecursionlimit(3*10**5)
input = sys.stdin.readline

N,K = map(int,input().split())
A = list(map(int,input().split()))

g = 1
for a in A:
    g = g*a//math.gcd(g,a)
    g = math.gcd(g,K)
if g==K:
    print('Yes')
else:
    print('No')
0