結果

問題 No.1330 Multiply or Divide
ユーザー wolgnikwolgnik
提出日時 2021-01-08 22:15:38
言語 PyPy3
(7.3.15)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 574 bytes
コンパイル時間 186 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 105,344 KB
最終ジャッジ日時 2024-11-16 18:24:39
合計ジャッジ時間 6,024 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 93 ms
103,552 KB
testcase_02 AC 37 ms
51,840 KB
testcase_03 AC 35 ms
51,712 KB
testcase_04 AC 37 ms
51,840 KB
testcase_05 AC 34 ms
51,712 KB
testcase_06 AC 141 ms
97,408 KB
testcase_07 AC 167 ms
105,344 KB
testcase_08 AC 154 ms
100,944 KB
testcase_09 AC 145 ms
100,560 KB
testcase_10 AC 137 ms
100,944 KB
testcase_11 AC 140 ms
101,188 KB
testcase_12 AC 162 ms
100,944 KB
testcase_13 AC 42 ms
51,840 KB
testcase_14 AC 47 ms
57,600 KB
testcase_15 AC 47 ms
57,344 KB
testcase_16 AC 42 ms
51,712 KB
testcase_17 AC 47 ms
57,600 KB
testcase_18 AC 147 ms
100,168 KB
testcase_19 AC 149 ms
100,568 KB
testcase_20 AC 129 ms
100,048 KB
testcase_21 AC 126 ms
100,424 KB
testcase_22 AC 131 ms
100,292 KB
testcase_23 AC 100 ms
99,584 KB
testcase_24 AC 34 ms
51,712 KB
testcase_25 AC 36 ms
51,456 KB
testcase_26 AC 34 ms
51,584 KB
testcase_27 AC 35 ms
51,584 KB
testcase_28 AC 34 ms
51,840 KB
testcase_29 AC 37 ms
51,584 KB
testcase_30 AC 35 ms
51,584 KB
testcase_31 AC 34 ms
51,840 KB
testcase_32 AC 34 ms
51,456 KB
testcase_33 AC 34 ms
51,840 KB
testcase_34 AC 101 ms
97,920 KB
testcase_35 AC 58 ms
69,760 KB
testcase_36 AC 95 ms
93,184 KB
testcase_37 AC 87 ms
89,344 KB
testcase_38 AC 75 ms
78,848 KB
testcase_39 AC 67 ms
71,680 KB
testcase_40 AC 71 ms
75,008 KB
testcase_41 AC 59 ms
67,072 KB
testcase_42 AC 92 ms
87,040 KB
testcase_43 AC 92 ms
90,496 KB
testcase_44 AC 158 ms
103,168 KB
testcase_45 AC 186 ms
103,168 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
N, M, P = map(int, input().split())
a = list(map(int, input().split()))
a.sort()
x = 1
res = 1000
for i in range(N):
  y = a[i]
  c = 0
  while y % P == 0:
    y //= P
    c += 1
  if y == 1: continue
  t = 1
  for j in range(31):
    if t * a[-1] > M:
      res = min(res, (c + 1) * j + 1)
      break
    t *= y


for i in range(100):
  if x > M:
    print(min(res, i))
    break
  for j in range(N - 1, -1, -1):
    if (x * a[j]) % P or (x * a[j]) > M:
      x *= a[j]
      break
else:
  if res != 1000: print(res)
  else: print(-1)
0