結果

問題 No.2682 Visible Divisible
ユーザー pitPpitP
提出日時 2024-03-20 21:41:52
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 364 bytes
コンパイル時間 307 ms
コンパイル使用メモリ 82,036 KB
実行使用メモリ 107,872 KB
最終ジャッジ日時 2024-09-30 07:31:52
合計ジャッジ時間 5,125 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 229 ms
107,528 KB
testcase_01 AC 224 ms
107,536 KB
testcase_02 AC 223 ms
107,500 KB
testcase_03 AC 233 ms
107,476 KB
testcase_04 AC 213 ms
107,852 KB
testcase_05 AC 222 ms
107,652 KB
testcase_06 AC 229 ms
107,512 KB
testcase_07 AC 229 ms
106,924 KB
testcase_08 AC 33 ms
53,112 KB
testcase_09 WA -
testcase_10 AC 32 ms
53,004 KB
testcase_11 AC 221 ms
107,776 KB
testcase_12 AC 226 ms
107,600 KB
testcase_13 WA -
testcase_14 AC 225 ms
107,488 KB
testcase_15 AC 222 ms
107,144 KB
testcase_16 AC 218 ms
107,440 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import gcd
N, K = map(int, input().split())
A = list(map(int, input().split()))
for i in range(N):
    if K % A[i] == 0:
        exit(print("Yes"))

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

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

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

K //= gcd(g, K)

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