結果

問題 No.2806 Cornflake Man
ユーザー suzuishisuzuishi
提出日時 2024-07-12 23:48:37
言語 Ruby
(3.4.1)
結果
AC  
実行時間 777 ms / 2,000 ms
コード長 329 bytes
コンパイル時間 307 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 39,452 KB
最終ジャッジ日時 2024-07-17 20:27:54
合計ジャッジ時間 6,816 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 17
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:11: warning: ambiguous first argument; put parentheses or a space even after `-' operator
Main.rb:2: warning: assigned but unused variable - n
Syntax OK

ソースコード

diff #

require 'set'
n, m = gets.split.map &:to_i
a = gets.split.map(&:to_i).sort
s = Set.new a.filter {|i| i > 0}
b = []
a.each do |i|
  next if i == 0 || !s.include?(i)
  s.delete i
  i.step(m, i) do |j|
    if a.bsearch {|k| j - k}.nil? then
      puts -1
      exit
    end
    s.delete j
  end
  b << i
end
puts b.size
puts b * ' '
0