結果

問題 No.2682 Visible Divisible
ユーザー pitPpitP
提出日時 2024-03-20 21:33:38
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 259 bytes
コンパイル時間 330 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 107,472 KB
最終ジャッジ日時 2024-09-30 07:22:29
合計ジャッジ時間 5,367 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 264 ms
106,840 KB
testcase_01 AC 262 ms
107,396 KB
testcase_02 AC 262 ms
107,076 KB
testcase_03 AC 267 ms
107,048 KB
testcase_04 AC 251 ms
106,920 KB
testcase_05 AC 259 ms
107,252 KB
testcase_06 AC 267 ms
106,924 KB
testcase_07 AC 264 ms
106,524 KB
testcase_08 AC 41 ms
51,584 KB
testcase_09 AC 40 ms
51,968 KB
testcase_10 AC 41 ms
52,096 KB
testcase_11 AC 254 ms
106,988 KB
testcase_12 AC 253 ms
107,428 KB
testcase_13 WA -
testcase_14 AC 248 ms
106,944 KB
testcase_15 AC 244 ms
106,584 KB
testcase_16 AC 243 ms
107,404 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import gcd
N, K = map(int, input().split())
A = list(map(int, input().split()))
g = A[0]
for i in range(N): 
    g = gcd(g, A[i])

K //= g
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