結果

問題 No.2682 Visible Divisible
ユーザー tkykwtnbtkykwtnb
提出日時 2024-03-23 23:27:35
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 217 bytes
コンパイル時間 292 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 35,088 KB
最終ジャッジ日時 2024-09-30 13:38:09
合計ジャッジ時間 3,638 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
32,760 KB
testcase_01 AC 125 ms
32,404 KB
testcase_02 AC 134 ms
33,356 KB
testcase_03 AC 121 ms
33,408 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 122 ms
33,828 KB
testcase_08 AC 26 ms
10,752 KB
testcase_09 AC 26 ms
10,752 KB
testcase_10 AC 25 ms
10,880 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 113 ms
34,044 KB
testcase_14 WA -
testcase_15 AC 125 ms
33,896 KB
testcase_16 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
N,K=map(int,input().split())
A=list(map(int,input().split()))
B=[]
for a in A:
    if K%a==0:B.append(a)
if len(B)==0:
    print("No");exit()
lcm=math.lcm(*B)
if lcm<K:
    print("No");exit()
print("Yes")
0