結果

問題 No.1330 Multiply or Divide
ユーザー gmm_teagmm_tea
提出日時 2021-01-08 22:07:35
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 304 bytes
コンパイル時間 327 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 26,112 KB
最終ジャッジ日時 2024-11-16 12:21:34
合計ジャッジ時間 8,904 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 183 ms
25,600 KB
testcase_02 AC 85 ms
12,160 KB
testcase_03 AC 87 ms
12,288 KB
testcase_04 AC 87 ms
12,032 KB
testcase_05 AC 86 ms
12,160 KB
testcase_06 AC 177 ms
25,600 KB
testcase_07 WA -
testcase_08 AC 183 ms
25,984 KB
testcase_09 AC 185 ms
25,856 KB
testcase_10 AC 184 ms
25,856 KB
testcase_11 AC 184 ms
25,856 KB
testcase_12 AC 183 ms
25,728 KB
testcase_13 AC 87 ms
12,032 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 85 ms
12,032 KB
testcase_17 WA -
testcase_18 AC 163 ms
25,728 KB
testcase_19 AC 165 ms
25,984 KB
testcase_20 AC 166 ms
25,856 KB
testcase_21 AC 164 ms
25,856 KB
testcase_22 AC 164 ms
26,112 KB
testcase_23 AC 182 ms
26,112 KB
testcase_24 AC 86 ms
12,032 KB
testcase_25 AC 91 ms
12,160 KB
testcase_26 AC 94 ms
12,032 KB
testcase_27 AC 90 ms
12,160 KB
testcase_28 AC 92 ms
12,032 KB
testcase_29 AC 87 ms
12,032 KB
testcase_30 AC 87 ms
12,160 KB
testcase_31 AC 93 ms
12,032 KB
testcase_32 AC 87 ms
12,160 KB
testcase_33 AC 87 ms
12,160 KB
testcase_34 AC 142 ms
22,656 KB
testcase_35 AC 102 ms
14,720 KB
testcase_36 AC 140 ms
21,504 KB
testcase_37 AC 134 ms
20,480 KB
testcase_38 AC 119 ms
17,280 KB
testcase_39 AC 105 ms
15,616 KB
testcase_40 AC 115 ms
16,512 KB
testcase_41 AC 99 ms
14,080 KB
testcase_42 AC 130 ms
19,712 KB
testcase_43 AC 134 ms
21,248 KB
testcase_44 WA -
testcase_45 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:1: warning: assigned but unused variable - n
Syntax OK

ソースコード

diff #

n,m,q=gets.split.map(&:to_i)
m+=1
a=gets.split.map(&:to_i)
if a.max>=m
  puts 1
  exit
end
mq=0
nq=0
a.each do |aa|
  if aa%q==0
    mq=aa if mq<aa
  else
    nq=aa if nq<aa
  end
end
c=0
if mq>0&&mq>nq
  m=(m-1)/mq+1
  c=1
end
if m>1&&nq<=1
  puts "-1"
  exit
end
x=1
while x<m
  x*=nq
  c+=1
end
puts c
0