結果

問題 No.2682 Visible Divisible
ユーザー PNJPNJ
提出日時 2024-03-20 21:34:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 291 ms / 2,000 ms
コード長 319 bytes
コンパイル時間 319 ms
コンパイル使用メモリ 82,780 KB
実行使用メモリ 110,856 KB
最終ジャッジ日時 2024-09-30 07:23:46
合計ジャッジ時間 5,657 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 270 ms
110,524 KB
testcase_01 AC 274 ms
110,300 KB
testcase_02 AC 258 ms
110,376 KB
testcase_03 AC 256 ms
110,336 KB
testcase_04 AC 254 ms
110,164 KB
testcase_05 AC 257 ms
110,160 KB
testcase_06 AC 247 ms
110,856 KB
testcase_07 AC 235 ms
109,424 KB
testcase_08 AC 35 ms
51,840 KB
testcase_09 AC 35 ms
51,456 KB
testcase_10 AC 35 ms
51,712 KB
testcase_11 AC 258 ms
110,412 KB
testcase_12 AC 253 ms
110,600 KB
testcase_13 AC 257 ms
110,004 KB
testcase_14 AC 262 ms
110,748 KB
testcase_15 AC 257 ms
109,008 KB
testcase_16 AC 291 ms
110,444 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def Map():
  return list(map(int,input().split()))

def gcd(a, b):
  while a != 0:
    b %= a
    if b == 0: return a
    a %= b
  return b

N,K = Map()
A = Map()
for i in range(N):
  A[i] = gcd(A[i],K)

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