結果

問題 No.2682 Visible Divisible
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2023-12-16 13:57:44
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 213 bytes
コンパイル時間 304 ms
コンパイル使用メモリ 82,452 KB
実行使用メモリ 107,392 KB
最終ジャッジ日時 2024-09-27 07:39:00
合計ジャッジ時間 4,453 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 190 ms
107,128 KB
testcase_01 AC 185 ms
107,280 KB
testcase_02 AC 182 ms
107,184 KB
testcase_03 AC 187 ms
106,944 KB
testcase_04 AC 177 ms
107,136 KB
testcase_05 AC 182 ms
107,392 KB
testcase_06 AC 189 ms
107,180 KB
testcase_07 AC 194 ms
106,740 KB
testcase_08 AC 43 ms
55,352 KB
testcase_09 WA -
testcase_10 AC 41 ms
54,512 KB
testcase_11 AC 185 ms
107,128 KB
testcase_12 AC 187 ms
107,364 KB
testcase_13 WA -
testcase_14 AC 184 ms
107,064 KB
testcase_15 AC 176 ms
106,732 KB
testcase_16 AC 175 ms
107,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

"""

WA解

"""

import sys
import math
import random

n, k = map(int, input().split())
a = list(map(int,input().split()))

for v in a:
    k //= math.gcd(v,k)

if k == 1:
    print ("Yes")
else:
    print("No")
0