結果

問題 No.1330 Multiply or Divide
ユーザー marroncastlemarroncastle
提出日時 2021-01-20 19:10:58
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 331 bytes
コンパイル時間 327 ms
コンパイル使用メモリ 82,700 KB
実行使用メモリ 105,444 KB
最終ジャッジ日時 2024-06-02 12:17:26
合計ジャッジ時間 5,385 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 74 ms
103,796 KB
testcase_02 WA -
testcase_03 AC 30 ms
53,620 KB
testcase_04 AC 30 ms
52,380 KB
testcase_05 AC 30 ms
52,192 KB
testcase_06 AC 65 ms
98,396 KB
testcase_07 WA -
testcase_08 AC 91 ms
101,888 KB
testcase_09 AC 93 ms
102,156 KB
testcase_10 AC 91 ms
101,828 KB
testcase_11 AC 88 ms
102,080 KB
testcase_12 AC 90 ms
102,008 KB
testcase_13 AC 32 ms
53,356 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 29 ms
53,224 KB
testcase_17 WA -
testcase_18 AC 84 ms
102,168 KB
testcase_19 AC 83 ms
102,020 KB
testcase_20 AC 85 ms
101,952 KB
testcase_21 AC 84 ms
101,780 KB
testcase_22 AC 84 ms
102,192 KB
testcase_23 AC 85 ms
102,296 KB
testcase_24 AC 31 ms
52,184 KB
testcase_25 AC 31 ms
53,100 KB
testcase_26 AC 31 ms
52,404 KB
testcase_27 AC 30 ms
53,244 KB
testcase_28 AC 31 ms
53,284 KB
testcase_29 AC 30 ms
52,528 KB
testcase_30 AC 34 ms
52,332 KB
testcase_31 AC 30 ms
52,476 KB
testcase_32 AC 30 ms
52,356 KB
testcase_33 AC 30 ms
52,560 KB
testcase_34 AC 65 ms
97,472 KB
testcase_35 AC 44 ms
69,548 KB
testcase_36 AC 61 ms
92,692 KB
testcase_37 AC 58 ms
89,156 KB
testcase_38 AC 50 ms
78,608 KB
testcase_39 AC 43 ms
72,216 KB
testcase_40 AC 46 ms
75,012 KB
testcase_41 AC 40 ms
66,456 KB
testcase_42 AC 56 ms
86,848 KB
testcase_43 AC 58 ms
89,508 KB
testcase_44 WA -
testcase_45 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M, P = map(int, input().split())
A = list(map(int, input().split()))
maxa = max(A)
for i in range(N):
  while A[i]%P==0:
    A[i] //= P
maxa2 = max(A)
ans = 0
x = 1
if M==1:
  print(0)
else:
  while x<=M:
    ans += 1
    if x*maxa>M:
      break
    if ans>1 and maxa2==1:
      ans = -1
      break
    x *= maxa2
  print(ans)
0