結果

問題 No.2682 Visible Divisible
ユーザー ntudantuda
提出日時 2024-03-24 19:33:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 196 ms / 2,000 ms
コード長 223 bytes
コンパイル時間 323 ms
コンパイル使用メモリ 82,460 KB
実行使用メモリ 106,232 KB
最終ジャッジ日時 2024-09-30 13:54:28
合計ジャッジ時間 4,564 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 188 ms
105,944 KB
testcase_01 AC 185 ms
105,916 KB
testcase_02 AC 189 ms
105,880 KB
testcase_03 AC 185 ms
105,588 KB
testcase_04 AC 196 ms
105,788 KB
testcase_05 AC 192 ms
105,640 KB
testcase_06 AC 185 ms
105,972 KB
testcase_07 AC 176 ms
105,428 KB
testcase_08 AC 37 ms
53,204 KB
testcase_09 AC 36 ms
52,944 KB
testcase_10 AC 36 ms
52,736 KB
testcase_11 AC 184 ms
105,784 KB
testcase_12 AC 193 ms
106,232 KB
testcase_13 AC 188 ms
106,116 KB
testcase_14 AC 189 ms
105,744 KB
testcase_15 AC 189 ms
105,524 KB
testcase_16 AC 194 ms
106,076 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import *
N,K = map(int,input().split())
A = list(map(int,input().split()))
for i in range(N):
    A[i] = gcd(A[i],K)
tmp = 1
for a in A:
    tmp = lcm(tmp,a)
if tmp % K == 0:
    print("Yes")
else:
    print("No")
0