結果

問題 No.1330 Multiply or Divide
ユーザー tamura2004tamura2004
提出日時 2021-01-21 13:12:42
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 330 bytes
コンパイル時間 425 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 27,648 KB
最終ジャッジ日時 2024-06-06 19:24:08
合計ジャッジ時間 9,358 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 192 ms
27,008 KB
testcase_02 AC 90 ms
12,032 KB
testcase_03 AC 87 ms
12,288 KB
testcase_04 AC 90 ms
12,160 KB
testcase_05 AC 88 ms
12,160 KB
testcase_06 AC 200 ms
27,392 KB
testcase_07 WA -
testcase_08 AC 201 ms
27,520 KB
testcase_09 AC 208 ms
27,520 KB
testcase_10 AC 204 ms
27,648 KB
testcase_11 AC 196 ms
27,520 KB
testcase_12 AC 202 ms
27,520 KB
testcase_13 AC 88 ms
12,160 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 90 ms
12,160 KB
testcase_17 WA -
testcase_18 AC 191 ms
27,520 KB
testcase_19 AC 189 ms
27,392 KB
testcase_20 AC 196 ms
27,520 KB
testcase_21 AC 194 ms
27,520 KB
testcase_22 AC 198 ms
27,264 KB
testcase_23 AC 198 ms
27,648 KB
testcase_24 AC 88 ms
12,032 KB
testcase_25 AC 91 ms
12,288 KB
testcase_26 AC 87 ms
12,288 KB
testcase_27 AC 89 ms
12,032 KB
testcase_28 AC 89 ms
12,160 KB
testcase_29 AC 87 ms
12,160 KB
testcase_30 AC 92 ms
12,160 KB
testcase_31 AC 90 ms
12,160 KB
testcase_32 AC 88 ms
12,160 KB
testcase_33 AC 89 ms
12,160 KB
testcase_34 AC 170 ms
23,936 KB
testcase_35 AC 113 ms
15,104 KB
testcase_36 AC 161 ms
22,656 KB
testcase_37 AC 152 ms
20,864 KB
testcase_38 AC 131 ms
17,408 KB
testcase_39 AC 114 ms
15,616 KB
testcase_40 AC 124 ms
16,896 KB
testcase_41 AC 106 ms
14,208 KB
testcase_42 AC 150 ms
20,608 KB
testcase_43 AC 156 ms
22,272 KB
testcase_44 WA -
testcase_45 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:15: warning: ambiguous first argument; put parentheses or a space even after `-' operator
Main.rb:1: warning: assigned but unused variable - n
Syntax OK

ソースコード

diff #

n,m,p = gets.to_s.split.map{ |v| v.to_i }
a = gets.to_s.split.map{ |v| v.to_i }
b = a.map do |v|
  x = v
  while x >= p && x % p == 0
    x /= p
  end
  x
end

am = a.max
bm = b.max

if am < m && bm == 1
  puts -1
  exit
end

ans = 0
x = 1
while x <= m
  ans += 1
  if x * am <= m
    x *= bm
  else
    x *= am
  end
end
puts ans
0