結果

問題 No.2682 Visible Divisible
ユーザー titiatitia
提出日時 2024-03-20 22:11:27
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 283 ms / 2,000 ms
コード長 275 bytes
コンパイル時間 760 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 33,952 KB
最終ジャッジ日時 2024-09-30 08:05:46
合計ジャッジ時間 6,316 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 263 ms
33,064 KB
testcase_01 AC 283 ms
32,288 KB
testcase_02 AC 281 ms
33,536 KB
testcase_03 AC 277 ms
33,588 KB
testcase_04 AC 282 ms
33,952 KB
testcase_05 AC 275 ms
31,724 KB
testcase_06 AC 256 ms
33,176 KB
testcase_07 AC 252 ms
33,328 KB
testcase_08 AC 26 ms
10,496 KB
testcase_09 AC 25 ms
10,496 KB
testcase_10 AC 25 ms
10,368 KB
testcase_11 AC 272 ms
32,428 KB
testcase_12 AC 270 ms
32,108 KB
testcase_13 AC 258 ms
32,048 KB
testcase_14 AC 279 ms
33,364 KB
testcase_15 AC 277 ms
33,516 KB
testcase_16 AC 272 ms
32,360 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

from math import gcd

def lcm(x,y):
    return x*y//gcd(x,y)

N,K=map(int,input().split())
A=list(map(int,input().split()))

LCM=1

for a in A:
    GCD=gcd(a,K)

    LCM=lcm(LCM,GCD)

if LCM%K==0:
    print("Yes")
else:
    print("No")
0