結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 94 ms
107,068 KB
testcase_02 AC 36 ms
52,684 KB
testcase_03 AC 36 ms
52,832 KB
testcase_04 AC 37 ms
52,060 KB
testcase_05 AC 36 ms
52,936 KB
testcase_06 AC 77 ms
100,272 KB
testcase_07 WA -
testcase_08 AC 108 ms
101,868 KB
testcase_09 AC 111 ms
101,964 KB
testcase_10 AC 110 ms
102,056 KB
testcase_11 AC 108 ms
101,940 KB
testcase_12 AC 106 ms
102,036 KB
testcase_13 AC 36 ms
52,832 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 37 ms
52,896 KB
testcase_17 WA -
testcase_18 AC 98 ms
101,988 KB
testcase_19 AC 98 ms
101,972 KB
testcase_20 AC 97 ms
102,212 KB
testcase_21 AC 99 ms
102,196 KB
testcase_22 AC 98 ms
101,996 KB
testcase_23 AC 100 ms
101,992 KB
testcase_24 AC 37 ms
52,572 KB
testcase_25 AC 37 ms
52,240 KB
testcase_26 AC 36 ms
53,540 KB
testcase_27 AC 38 ms
52,188 KB
testcase_28 AC 38 ms
52,280 KB
testcase_29 AC 36 ms
52,768 KB
testcase_30 AC 37 ms
53,176 KB
testcase_31 AC 38 ms
52,288 KB
testcase_32 AC 37 ms
52,960 KB
testcase_33 AC 38 ms
53,812 KB
testcase_34 AC 79 ms
98,968 KB
testcase_35 AC 52 ms
70,684 KB
testcase_36 AC 73 ms
94,496 KB
testcase_37 AC 70 ms
90,468 KB
testcase_38 AC 58 ms
78,060 KB
testcase_39 AC 51 ms
72,128 KB
testcase_40 AC 57 ms
75,512 KB
testcase_41 AC 48 ms
68,436 KB
testcase_42 AC 68 ms
88,292 KB
testcase_43 AC 72 ms
91,224 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
print(ans+1)
0