結果

問題 No.1250 汝は倍数なりや?
ユーザー direwolf7direwolf7
提出日時 2020-10-09 22:58:34
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 3,582 bytes
コンパイル時間 406 ms
コンパイル使用メモリ 87,240 KB
実行使用メモリ 126,752 KB
最終ジャッジ日時 2023-09-27 19:11:38
合計ジャッジ時間 9,221 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
89,220 KB
testcase_01 AC 109 ms
89,400 KB
testcase_02 AC 109 ms
89,568 KB
testcase_03 AC 112 ms
89,400 KB
testcase_04 AC 113 ms
89,584 KB
testcase_05 AC 114 ms
89,868 KB
testcase_06 AC 112 ms
89,344 KB
testcase_07 AC 112 ms
89,524 KB
testcase_08 AC 112 ms
89,520 KB
testcase_09 AC 114 ms
89,372 KB
testcase_10 AC 111 ms
89,348 KB
testcase_11 WA -
testcase_12 AC 107 ms
89,228 KB
testcase_13 AC 112 ms
89,464 KB
testcase_14 AC 113 ms
89,220 KB
testcase_15 WA -
testcase_16 AC 115 ms
89,872 KB
testcase_17 AC 113 ms
89,320 KB
testcase_18 AC 111 ms
89,372 KB
testcase_19 AC 112 ms
89,480 KB
testcase_20 AC 114 ms
89,404 KB
testcase_21 WA -
testcase_22 AC 112 ms
89,648 KB
testcase_23 AC 118 ms
89,640 KB
testcase_24 AC 118 ms
89,952 KB
testcase_25 AC 112 ms
89,748 KB
testcase_26 AC 115 ms
89,676 KB
testcase_27 AC 117 ms
89,908 KB
testcase_28 WA -
testcase_29 AC 114 ms
89,740 KB
testcase_30 AC 115 ms
89,860 KB
testcase_31 AC 112 ms
89,712 KB
testcase_32 AC 116 ms
89,496 KB
testcase_33 AC 184 ms
126,752 KB
testcase_34 AC 148 ms
107,216 KB
testcase_35 AC 181 ms
119,016 KB
testcase_36 AC 173 ms
122,756 KB
testcase_37 WA -
testcase_38 WA -
testcase_39 AC 148 ms
106,936 KB
testcase_40 AC 155 ms
107,484 KB
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
testcase_45 AC 177 ms
122,832 KB
testcase_46 WA -
testcase_47 AC 152 ms
109,412 KB
testcase_48 AC 110 ms
89,312 KB
testcase_49 AC 115 ms
89,668 KB
testcase_50 AC 111 ms
89,320 KB
testcase_51 AC 113 ms
89,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import os, sys
from io import IOBase, BytesIO
py2 = round(0.5)
if py2:
    from future_builtins import ascii, filter, hex, map, oct, zip
    range = xrange
BUFSIZE = 8192
class FastIO(BytesIO):
    newlines = 0
 
    def __init__(self, file):
        self._file = file
        self._fd = file.fileno()
        self.writable = 'x' in file.mode or 'w' in file.mode
        self.write = super(FastIO, self).write if self.writable else None
 
    def _fill(self):
        s = os.read(self._fd, max(os.fstat(self._fd).st_size, BUFSIZE))
        self.seek((self.tell(), self.seek(0,2), super(FastIO, self).write(s))[0])
        return s
 
    def read(self):
        while self._fill(): pass
        return super(FastIO,self).read()
 
    def readline(self):
        while self.newlines == 0:
            s = self._fill(); self.newlines = s.count(b'\n') + (not s)
        self.newlines -= 1
        return super(FastIO, self).readline()
 
    def flush(self):
        if self.writable:
            os.write(self._fd, self.getvalue())
            self.truncate(0), self.seek(0)
 
class IOWrapper(IOBase):
    def __init__(self, file):
        self.buffer = FastIO(file)
        self.flush = self.buffer.flush
        self.writable = self.buffer.writable
        if py2:
            self.write = self.buffer.write
            self.read = self.buffer.read
            self.readline = self.buffer.readline
        else:
            self.write = lambda s:self.buffer.write(s.encode('ascii'))
            self.read = lambda:self.buffer.read().decode('ascii')
            self.readline = lambda:self.buffer.readline().decode('ascii')
 
 
sys.stdin, sys.stdout = IOWrapper(sys.stdin), IOWrapper(sys.stdout)
input = lambda: sys.stdin.readline().rstrip('\r\n')
 
# Cout implemented in Python
import sys
class ostream:
    def __lshift__(self,a):
        sys.stdout.write(str(a))
        return self
cout = ostream()
endl = '\n'

def get_input(a=str):
    return a(input())

def get_int_input():
    return get_input(int)

def get_input_arr(a):
    return list(map(a, input().split()))

def get_int_input_arr():
    return get_input_arr(int)


def sieve(n):
    primes = [-1] * (n)
    primes[0] = -1
    primes[1] = -1
    
    i = 2
    sqrt_n = int(n ** 0.5 + 1)
    prime_nums = []
    while i <= sqrt_n:
        if primes[i] == -1:
            primes[i] = 1
            prime_nums.append(i)
            for j in range(i * i, n, i):
                primes[j] = 2
        i += 1
    for i in range(sqrt_n, n):
        if primes[i] == -1:
            primes[i] = 1
            prime_nums.append(i)
    return prime_nums

def get_prime_fac(primes, num):
    freq = {}
    for prime in primes:
        if prime <= num and num > 1:
            r = 0
            while num % prime == 0 and num > 1:
                r += 1
                num = num // prime
            if r > 0:
                freq[prime] = r
        else:
            break
    return freq

from collections import defaultdict

def solve():
    prime_nums = sieve(10 ** 6)

    n, h = get_int_input_arr()

    arr = get_int_input_arr()

    h_freq = get_prime_fac(prime_nums, h)

    for i in range(len(arr)):
        for p_h in h_freq:
            while h_freq[p_h] > 0 and arr[i] > 1 and arr[i] % p_h == 0:
                arr[i] = arr[i] // p_h
                h_freq[p_h] -= 1
    
    res = True
    for i in h_freq:
        if h_freq[i] > 0:
            res = False
            break
    if res:
        cout<<"YES"<<endl
    else:
        cout<<"NO"<<endl






def main():
    solve()


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