結果

問題 No.2682 Visible Divisible
ユーザー pitPpitP
提出日時 2024-03-20 21:46:57
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 366 bytes
コンパイル時間 227 ms
コンパイル使用メモリ 82,288 KB
実行使用メモリ 142,084 KB
最終ジャッジ日時 2024-09-30 07:34:23
合計ジャッジ時間 4,730 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 271 ms
142,032 KB
testcase_01 AC 254 ms
142,016 KB
testcase_02 AC 252 ms
141,916 KB
testcase_03 AC 260 ms
141,924 KB
testcase_04 AC 129 ms
139,964 KB
testcase_05 AC 125 ms
139,648 KB
testcase_06 AC 128 ms
139,912 KB
testcase_07 AC 262 ms
140,664 KB
testcase_08 AC 34 ms
53,520 KB
testcase_09 AC 34 ms
54,048 KB
testcase_10 AC 34 ms
52,340 KB
testcase_11 AC 263 ms
141,768 KB
testcase_12 AC 262 ms
141,892 KB
testcase_13 WA -
testcase_14 AC 254 ms
141,852 KB
testcase_15 AC 247 ms
140,920 KB
testcase_16 AC 249 ms
142,084 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import gcd
N, K = map(int, input().split())
A = list(map(int, input().split()))

A = list(set(A))
N = len(A)

for i in range(N):
    if A[i] % K == 0:
        exit(print("Yes"))

g = A[0]
for i in range(N): 
    g = gcd(g, A[i])

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

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

print("Yes" if K == 1 else "No")
0