結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 168 ms
25,600 KB
testcase_02 AC 79 ms
12,160 KB
testcase_03 AC 78 ms
12,288 KB
testcase_04 AC 79 ms
12,032 KB
testcase_05 AC 78 ms
12,160 KB
testcase_06 AC 168 ms
25,472 KB
testcase_07 WA -
testcase_08 AC 169 ms
25,984 KB
testcase_09 AC 167 ms
25,984 KB
testcase_10 AC 171 ms
25,856 KB
testcase_11 AC 169 ms
26,112 KB
testcase_12 AC 170 ms
25,984 KB
testcase_13 AC 79 ms
12,032 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 80 ms
12,032 KB
testcase_17 WA -
testcase_18 AC 147 ms
26,112 KB
testcase_19 AC 152 ms
25,984 KB
testcase_20 AC 151 ms
25,984 KB
testcase_21 AC 159 ms
25,856 KB
testcase_22 AC 150 ms
25,856 KB
testcase_23 AC 170 ms
26,240 KB
testcase_24 AC 81 ms
12,160 KB
testcase_25 AC 78 ms
12,160 KB
testcase_26 AC 80 ms
12,032 KB
testcase_27 AC 80 ms
12,032 KB
testcase_28 AC 78 ms
12,160 KB
testcase_29 AC 78 ms
12,288 KB
testcase_30 AC 78 ms
12,160 KB
testcase_31 AC 83 ms
12,032 KB
testcase_32 AC 84 ms
12,160 KB
testcase_33 AC 83 ms
12,160 KB
testcase_34 AC 145 ms
22,784 KB
testcase_35 AC 103 ms
14,720 KB
testcase_36 AC 134 ms
21,376 KB
testcase_37 AC 121 ms
20,096 KB
testcase_38 AC 109 ms
17,152 KB
testcase_39 AC 103 ms
15,616 KB
testcase_40 AC 110 ms
16,256 KB
testcase_41 AC 98 ms
14,080 KB
testcase_42 AC 120 ms
19,968 KB
testcase_43 AC 124 ms
21,248 KB
testcase_44 WA -
testcase_45 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:1: warning: assigned but unused variable - n
Main.rb:8: warning: assigned but unused variable - l
Main.rb:11: warning: assigned but unused variable - ans
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
l=[]
mq=0
nq=0
ans=1/0.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==0
  puts "-1"
  exit
end
x=1
while x<m
  x*=nq
  c+=1
end
puts c
0