結果

問題 No.1250 汝は倍数なりや?
ユーザー ygd.ygd.
提出日時 2020-10-17 19:57:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 124 ms / 1,000 ms
コード長 811 bytes
コンパイル時間 194 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 107,520 KB
最終ジャッジ日時 2024-07-21 03:02:37
合計ジャッジ時間 5,289 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,224 KB
testcase_01 AC 41 ms
52,224 KB
testcase_02 AC 41 ms
51,840 KB
testcase_03 AC 45 ms
52,096 KB
testcase_04 AC 42 ms
52,224 KB
testcase_05 AC 41 ms
51,968 KB
testcase_06 AC 42 ms
52,096 KB
testcase_07 AC 41 ms
51,840 KB
testcase_08 AC 41 ms
52,096 KB
testcase_09 AC 41 ms
52,096 KB
testcase_10 AC 41 ms
52,096 KB
testcase_11 AC 41 ms
52,096 KB
testcase_12 AC 41 ms
51,840 KB
testcase_13 AC 40 ms
51,968 KB
testcase_14 AC 41 ms
52,224 KB
testcase_15 AC 42 ms
52,480 KB
testcase_16 AC 41 ms
52,352 KB
testcase_17 AC 41 ms
52,352 KB
testcase_18 AC 41 ms
52,224 KB
testcase_19 AC 41 ms
51,840 KB
testcase_20 AC 40 ms
52,096 KB
testcase_21 AC 41 ms
52,096 KB
testcase_22 AC 41 ms
52,224 KB
testcase_23 AC 42 ms
52,864 KB
testcase_24 AC 47 ms
59,392 KB
testcase_25 AC 47 ms
60,032 KB
testcase_26 AC 47 ms
59,520 KB
testcase_27 AC 49 ms
59,648 KB
testcase_28 AC 47 ms
58,496 KB
testcase_29 AC 42 ms
52,480 KB
testcase_30 AC 49 ms
59,776 KB
testcase_31 AC 42 ms
52,480 KB
testcase_32 AC 51 ms
60,800 KB
testcase_33 AC 122 ms
107,520 KB
testcase_34 AC 94 ms
89,344 KB
testcase_35 AC 112 ms
101,632 KB
testcase_36 AC 124 ms
104,448 KB
testcase_37 AC 92 ms
91,008 KB
testcase_38 AC 95 ms
93,184 KB
testcase_39 AC 101 ms
90,880 KB
testcase_40 AC 101 ms
90,752 KB
testcase_41 AC 87 ms
91,520 KB
testcase_42 AC 80 ms
81,152 KB
testcase_43 AC 115 ms
104,704 KB
testcase_44 AC 78 ms
81,536 KB
testcase_45 AC 117 ms
104,064 KB
testcase_46 AC 72 ms
75,520 KB
testcase_47 AC 102 ms
92,928 KB
testcase_48 AC 46 ms
52,224 KB
testcase_49 AC 45 ms
57,472 KB
testcase_50 AC 41 ms
52,096 KB
testcase_51 AC 44 ms
57,600 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def factorization(n):
    arr = []
    temp = n
    for i in range(2, int(-(-n**0.5//1))+1):
        if temp%i==0:
            cnt=0
            while temp%i==0:
                cnt+=1
                temp //= i
            arr.append([i, cnt])
 
    if temp!=1: #最後に残ったもの(もしくは素数)の場合はここ
        arr.append([temp, 1])
 
    if arr==[]: #1の場合はここ
        arr.append([n, 1])
 
    return arr

N,H = map(int,input().split()); MOD = pow(10,9)+7
A = list(map(int,input().split()))

B = factorization(H)
#print(B)
for i in range(N):
  a = A[i]
  for j in range(len(B)):
    while a%B[j][0] == 0 and B[j][1] > 0:
      a = a//B[j][0]
      B[j][1] -= 1
Flag = True
for x in B:
  if x[1] != 0:
    Flag = False
    break
if Flag:
  print("YES")
else:
  print("NO")
0