結果

問題 No.2682 Visible Divisible
ユーザー ThetaTheta
提出日時 2024-03-28 17:40:37
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 278 ms / 2,000 ms
コード長 543 bytes
コンパイル時間 266 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 34,852 KB
最終ジャッジ日時 2024-09-30 14:47:30
合計ジャッジ時間 5,225 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 249 ms
32,024 KB
testcase_01 AC 278 ms
32,304 KB
testcase_02 AC 278 ms
32,536 KB
testcase_03 AC 274 ms
32,584 KB
testcase_04 AC 231 ms
34,256 KB
testcase_05 AC 236 ms
32,128 KB
testcase_06 AC 228 ms
34,852 KB
testcase_07 AC 228 ms
33,532 KB
testcase_08 AC 30 ms
10,752 KB
testcase_09 AC 29 ms
10,624 KB
testcase_10 AC 30 ms
10,624 KB
testcase_11 AC 237 ms
34,136 KB
testcase_12 AC 242 ms
32,116 KB
testcase_13 AC 225 ms
33,832 KB
testcase_14 AC 275 ms
32,340 KB
testcase_15 AC 241 ms
33,680 KB
testcase_16 AC 227 ms
33,996 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import gcd, lcm
import sys


def printe(*args, end="\n", **kwargs):
    print(*args, end=end, file=sys.stderr, **kwargs)


def main():
    N, K = map(int, input().split())
    A = list(map(int, input().split()))
    if K == 1:
        print("Yes")
        return
    A_filter = []
    for a_elm in A:
        if (gcd_ := gcd(a_elm, K)) == 1:
            continue
        A_filter.append(gcd_)
    printe(A_filter)
    if lcm(*A_filter) == K:
        print("Yes")
    else:
        print("No")


if __name__ == "__main__":
    main()
0