結果

問題 No.2682 Visible Divisible
ユーザー PNJPNJ
提出日時 2024-03-20 21:22:09
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 321 bytes
コンパイル時間 241 ms
コンパイル使用メモリ 82,348 KB
実行使用メモリ 110,936 KB
最終ジャッジ日時 2024-09-30 07:07:23
合計ジャッジ時間 4,536 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 241 ms
110,272 KB
testcase_01 AC 198 ms
110,440 KB
testcase_02 AC 199 ms
110,500 KB
testcase_03 AC 210 ms
110,852 KB
testcase_04 AC 146 ms
110,424 KB
testcase_05 AC 178 ms
110,544 KB
testcase_06 AC 204 ms
110,912 KB
testcase_07 AC 236 ms
109,432 KB
testcase_08 AC 37 ms
51,840 KB
testcase_09 AC 36 ms
51,968 KB
testcase_10 AC 37 ms
51,840 KB
testcase_11 AC 203 ms
110,408 KB
testcase_12 AC 207 ms
110,936 KB
testcase_13 WA -
testcase_14 AC 183 ms
110,496 KB
testcase_15 AC 181 ms
109,392 KB
testcase_16 AC 147 ms
110,564 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()
g = K
for a in A:
  g = gcd(g,a)

for i in range(N):
  A[i] //= g
K //= g

for a in A:
  g = gcd(K,a)
  K //= g

if K == 1:
  print('Yes')
else:
  print('No')
0