結果

問題 No.2682 Visible Divisible
ユーザー pitPpitP
提出日時 2024-03-20 21:44:35
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 336 bytes
コンパイル時間 362 ms
コンパイル使用メモリ 82,340 KB
実行使用メモリ 107,508 KB
最終ジャッジ日時 2024-09-30 07:33:25
合計ジャッジ時間 4,458 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 237 ms
107,132 KB
testcase_01 AC 232 ms
107,448 KB
testcase_02 AC 233 ms
107,388 KB
testcase_03 AC 240 ms
106,832 KB
testcase_04 AC 100 ms
105,520 KB
testcase_05 AC 99 ms
105,776 KB
testcase_06 AC 99 ms
104,936 KB
testcase_07 AC 236 ms
107,084 KB
testcase_08 AC 36 ms
52,852 KB
testcase_09 AC 36 ms
51,932 KB
testcase_10 AC 36 ms
52,976 KB
testcase_11 AC 234 ms
107,172 KB
testcase_12 AC 236 ms
107,484 KB
testcase_13 WA -
testcase_14 AC 231 ms
107,224 KB
testcase_15 AC 228 ms
106,512 KB
testcase_16 AC 225 ms
107,460 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import gcd
N, K = map(int, input().split())
A = list(map(int, input().split()))
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