結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 229 ms
107,816 KB
testcase_01 AC 234 ms
107,336 KB
testcase_02 AC 225 ms
107,376 KB
testcase_03 AC 228 ms
107,348 KB
testcase_04 AC 217 ms
107,824 KB
testcase_05 AC 223 ms
107,688 KB
testcase_06 AC 229 ms
107,512 KB
testcase_07 AC 230 ms
107,204 KB
testcase_08 AC 36 ms
52,408 KB
testcase_09 AC 36 ms
52,848 KB
testcase_10 AC 37 ms
52,480 KB
testcase_11 AC 228 ms
107,420 KB
testcase_12 AC 227 ms
107,872 KB
testcase_13 WA -
testcase_14 AC 220 ms
107,652 KB
testcase_15 AC 219 ms
107,040 KB
testcase_16 AC 216 ms
107,736 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])

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])

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