結果

問題 No.2682 Visible Divisible
ユーザー OhnoHirokiOhnoHiroki
提出日時 2024-03-21 00:17:32
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,088 ms / 2,000 ms
コード長 294 bytes
コンパイル時間 142 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 34,572 KB
最終ジャッジ日時 2024-09-30 09:46:20
合計ジャッジ時間 16,947 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,029 ms
31,988 KB
testcase_01 AC 1,041 ms
32,140 KB
testcase_02 AC 1,088 ms
32,492 KB
testcase_03 AC 1,053 ms
32,420 KB
testcase_04 AC 1,055 ms
34,096 KB
testcase_05 AC 1,053 ms
31,836 KB
testcase_06 AC 956 ms
34,572 KB
testcase_07 AC 1,011 ms
33,376 KB
testcase_08 AC 30 ms
10,496 KB
testcase_09 AC 31 ms
10,496 KB
testcase_10 AC 30 ms
10,624 KB
testcase_11 AC 1,049 ms
33,972 KB
testcase_12 AC 1,064 ms
31,952 KB
testcase_13 AC 985 ms
33,796 KB
testcase_14 AC 1,063 ms
32,128 KB
testcase_15 AC 1,044 ms
33,648 KB
testcase_16 AC 994 ms
33,964 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

"""
最小公倍数
"""
def gcd(x, y):
    while y > 0:
        x,y = y,x%y
    return x

N,K = map(int, input().split())
A = list(map(int, input().split()))
A = [gcd(ai, K) for ai in A]
ans = 1
for ai in A:
    ans = ans * ai // gcd(ans, ai)
if ans == K:
    print("Yes")
else:
    print("No")
0