結果

問題 No.2682 Visible Divisible
ユーザー harurunharurun
提出日時 2024-03-20 22:25:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 192 ms / 2,000 ms
コード長 271 bytes
コンパイル時間 260 ms
コンパイル使用メモリ 82,312 KB
実行使用メモリ 110,932 KB
最終ジャッジ日時 2024-09-30 08:22:59
合計ジャッジ時間 4,328 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 180 ms
110,612 KB
testcase_01 AC 182 ms
110,632 KB
testcase_02 AC 186 ms
110,480 KB
testcase_03 AC 182 ms
110,832 KB
testcase_04 AC 110 ms
106,184 KB
testcase_05 AC 129 ms
105,780 KB
testcase_06 AC 162 ms
110,932 KB
testcase_07 AC 192 ms
109,144 KB
testcase_08 AC 34 ms
52,444 KB
testcase_09 AC 32 ms
53,732 KB
testcase_10 AC 33 ms
52,192 KB
testcase_11 AC 174 ms
110,260 KB
testcase_12 AC 188 ms
110,576 KB
testcase_13 AC 183 ms
110,472 KB
testcase_14 AC 164 ms
110,340 KB
testcase_15 AC 183 ms
109,244 KB
testcase_16 AC 118 ms
105,688 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math

def lcm(x,y):
  return x//math.gcd(x,y)*y
def main():
  N,K=map(int,input().split())
  A=list(map(int,input().split()))
  ans=A[0]
  for i in range(1,N):
    ans=lcm(ans,A[i])
    ans%=K
  if ans==0:
    print("Yes")
  else:
    print("No")
  return

main()
0