結果

問題 No.1250 汝は倍数なりや?
ユーザー ryhohryhoh
提出日時 2020-11-16 22:31:13
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 1,787 bytes
コンパイル時間 492 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 413,932 KB
最終ジャッジ日時 2024-07-23 01:46:18
合計ジャッジ時間 5,789 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
17,952 KB
testcase_01 AC 30 ms
11,008 KB
testcase_02 AC 29 ms
11,008 KB
testcase_03 AC 30 ms
11,008 KB
testcase_04 AC 29 ms
11,008 KB
testcase_05 AC 29 ms
11,136 KB
testcase_06 AC 31 ms
11,008 KB
testcase_07 AC 29 ms
11,008 KB
testcase_08 AC 30 ms
11,008 KB
testcase_09 AC 31 ms
11,008 KB
testcase_10 AC 31 ms
11,008 KB
testcase_11 AC 30 ms
11,008 KB
testcase_12 AC 31 ms
11,008 KB
testcase_13 AC 32 ms
11,136 KB
testcase_14 AC 31 ms
11,008 KB
testcase_15 AC 31 ms
11,008 KB
testcase_16 AC 31 ms
11,008 KB
testcase_17 AC 31 ms
11,008 KB
testcase_18 AC 32 ms
11,008 KB
testcase_19 AC 31 ms
11,008 KB
testcase_20 AC 31 ms
11,008 KB
testcase_21 RE -
testcase_22 AC 33 ms
11,008 KB
testcase_23 AC 192 ms
11,776 KB
testcase_24 AC 196 ms
11,904 KB
testcase_25 AC 212 ms
11,520 KB
testcase_26 AC 69 ms
11,392 KB
testcase_27 AC 205 ms
11,520 KB
testcase_28 AC 118 ms
12,160 KB
testcase_29 AC 74 ms
11,264 KB
testcase_30 AC 175 ms
11,264 KB
testcase_31 AC 69 ms
11,008 KB
testcase_32 AC 234 ms
12,032 KB
testcase_33 TLE -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
testcase_45 -- -
testcase_46 -- -
testcase_47 -- -
testcase_48 -- -
testcase_49 -- -
testcase_50 -- -
testcase_51 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter
from functools import reduce
from operator import add
import math


def make_primes(size: int) -> list:
    if not isinstance(size, int):
        raise AttributeError("args must be int but given %s" % size.__class__)
    if size < 0:
        raise ValueError("args must be (size < 0) but given %s" % size)
    if size < 2:
        return []

    res = []
    flag = [True for _ in range(size + 1)]
    limit = int(math.sqrt(size))

    for i in range(2, limit + 1):
        if flag[i]:
            res.append(i)
            for j in range(i, size + 1, i):
                flag[j] = False

    for i in range(max(2, limit), size + 1):
        if flag[i]:
            res.append(i)

    return res


def prime_factor(n: int, primes: list) -> Counter:
    if not isinstance(n, int) or not isinstance(primes, list):
        raise AttributeError("args must be int but given (%s, %s)" % (n.__class__, primes.__class__))
    if n < 1:
        raise ValueError("args must be (n < 1) but given %s" % n)

    res = {1: 1}
    ok = False
    while not ok:
        for prime in primes:
            if n % prime == 0:
                if prime in res:
                    res[prime] += 1
                else:
                    res[prime] = 1
                n = n // prime
                break
            if prime > n:
                ok = True
                break
        else:
            break

    return Counter(res)


if __name__ == '__main__':
    N, H = map(int, input().split())
    A = [abs(int(i)) for i in input().split()]

    primes = make_primes(H+1)
    A_factor = reduce(add, (prime_factor(a, primes) for a in A))
    h_factor = prime_factor(H, primes)

    if A_factor & h_factor == h_factor:
        print("YES")
    else:
        print("NO")
0