結果

問題 No.1330 Multiply or Divide
ユーザー persimmon-persimmonpersimmon-persimmon
提出日時 2021-02-14 07:59:47
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 319 bytes
コンパイル時間 148 ms
コンパイル使用メモリ 82,912 KB
実行使用メモリ 107,008 KB
最終ジャッジ日時 2024-07-21 13:21:13
合計ジャッジ時間 5,020 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 95 ms
107,008 KB
testcase_02 AC 39 ms
51,584 KB
testcase_03 AC 39 ms
51,968 KB
testcase_04 AC 38 ms
51,840 KB
testcase_05 AC 39 ms
52,352 KB
testcase_06 AC 84 ms
99,456 KB
testcase_07 WA -
testcase_08 AC 115 ms
102,108 KB
testcase_09 AC 116 ms
102,208 KB
testcase_10 AC 118 ms
102,196 KB
testcase_11 AC 114 ms
102,016 KB
testcase_12 AC 113 ms
102,016 KB
testcase_13 AC 38 ms
51,840 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 39 ms
51,968 KB
testcase_17 WA -
testcase_18 AC 102 ms
101,888 KB
testcase_19 AC 103 ms
102,016 KB
testcase_20 AC 103 ms
102,144 KB
testcase_21 AC 102 ms
101,760 KB
testcase_22 AC 101 ms
102,208 KB
testcase_23 AC 105 ms
101,888 KB
testcase_24 AC 38 ms
51,840 KB
testcase_25 AC 39 ms
52,204 KB
testcase_26 AC 39 ms
52,096 KB
testcase_27 AC 39 ms
51,968 KB
testcase_28 AC 39 ms
52,352 KB
testcase_29 AC 38 ms
51,968 KB
testcase_30 AC 40 ms
52,096 KB
testcase_31 AC 39 ms
51,968 KB
testcase_32 AC 39 ms
51,584 KB
testcase_33 AC 39 ms
52,352 KB
testcase_34 AC 81 ms
98,432 KB
testcase_35 AC 53 ms
70,272 KB
testcase_36 AC 76 ms
93,440 KB
testcase_37 AC 73 ms
89,600 KB
testcase_38 AC 62 ms
78,208 KB
testcase_39 AC 54 ms
71,168 KB
testcase_40 AC 59 ms
75,392 KB
testcase_41 AC 50 ms
66,432 KB
testcase_42 AC 71 ms
87,040 KB
testcase_43 AC 74 ms
92,032 KB
testcase_44 WA -
testcase_45 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m,p=map(int,input().split())
a=list(map(int,input().split()))
if any([x>m for x in a]):
  print(1)
  exit()
bd=m
mxv=0
for x in a:
  bd=min(bd,(m+1+x-1)//x)
  while x%p==0:x//=p
  mxv=max(mxv,x)
if mxv==1:
  print(-1)
  exit()
now=1
ans=0
while now<=bd:
  now*=mxv
  ans+=1
if now>m:
  print(ans)
else:
  print(ans+1)
0