結果

問題 No.1330 Multiply or Divide
ユーザー persimmon-persimmonpersimmon-persimmon
提出日時 2021-02-14 08:14:40
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 634 bytes
コンパイル時間 309 ms
コンパイル使用メモリ 82,116 KB
実行使用メモリ 108,540 KB
最終ジャッジ日時 2024-07-21 13:40:04
合計ジャッジ時間 5,452 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 103 ms
106,996 KB
testcase_02 AC 38 ms
52,640 KB
testcase_03 AC 39 ms
52,980 KB
testcase_04 AC 40 ms
52,284 KB
testcase_05 AC 40 ms
53,580 KB
testcase_06 AC 100 ms
99,832 KB
testcase_07 AC 187 ms
108,540 KB
testcase_08 AC 126 ms
101,940 KB
testcase_09 AC 131 ms
101,788 KB
testcase_10 AC 124 ms
101,844 KB
testcase_11 AC 123 ms
102,300 KB
testcase_12 AC 128 ms
102,224 KB
testcase_13 AC 39 ms
53,268 KB
testcase_14 AC 40 ms
53,564 KB
testcase_15 AC 39 ms
52,928 KB
testcase_16 AC 39 ms
53,440 KB
testcase_17 AC 41 ms
52,940 KB
testcase_18 AC 106 ms
102,096 KB
testcase_19 AC 108 ms
101,876 KB
testcase_20 AC 106 ms
102,136 KB
testcase_21 AC 105 ms
102,040 KB
testcase_22 AC 108 ms
101,984 KB
testcase_23 AC 114 ms
101,280 KB
testcase_24 AC 40 ms
52,400 KB
testcase_25 AC 40 ms
53,000 KB
testcase_26 AC 40 ms
52,348 KB
testcase_27 AC 41 ms
52,740 KB
testcase_28 AC 39 ms
52,132 KB
testcase_29 AC 40 ms
52,612 KB
testcase_30 AC 39 ms
52,564 KB
testcase_31 AC 41 ms
53,912 KB
testcase_32 AC 40 ms
52,584 KB
testcase_33 AC 42 ms
52,000 KB
testcase_34 AC 85 ms
98,440 KB
testcase_35 AC 56 ms
69,776 KB
testcase_36 AC 79 ms
94,372 KB
testcase_37 AC 75 ms
90,252 KB
testcase_38 AC 63 ms
79,872 KB
testcase_39 AC 56 ms
71,156 KB
testcase_40 AC 60 ms
75,280 KB
testcase_41 AC 52 ms
67,216 KB
testcase_42 AC 72 ms
88,176 KB
testcase_43 AC 77 ms
91,912 KB
testcase_44 AC 96 ms
100,268 KB
testcase_45 AC 97 ms
100,544 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main1(n,m,p,a):
  if any([x>m for x in a]):return 1
  bd=m
  mxvary=[-1]*31
  for x in a:
    bd=min(bd,(m+1+x-1)//x)
    cnt=0
    while x%p==0:
      cnt+=1
      x//=p
    mxvary[cnt]=max(mxvary[cnt],x)
  if all([abs(x)==1 for x in mxvary]):return -1
  ans=float('inf')
  for i in range(31):
    if abs(mxvary[i])==1:continue
    mxv=mxvary[i]
    tmp=0
    now=1
    while now<=bd:
      now*=mxv
      tmp+=i+1
    if now>m:
      ans=min(ans,tmp)
    else:
      ans=min(ans,tmp+1)
  return ans

if __name__=='__main__':
  n,m,p=map(int,input().split())
  a=list(map(int,input().split()))
  ret1=main1(n,m,p,a)
  print(ret1)
0