結果

問題 No.205 マージして辞書順最小
ユーザー mai
提出日時 2018-09-25 00:53:23
言語 Ruby
(3.4.1)
結果
AC  
実行時間 335 ms / 5,000 ms
コード長 250 bytes
コンパイル時間 191 ms
コンパイル使用メモリ 7,680 KB
実行使用メモリ 12,800 KB
最終ジャッジ日時 2024-09-24 12:29:49
合計ジャッジ時間 4,244 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 15
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:7: warning: assigned but unused variable - item
Syntax OK

ソースコード

diff #

def ascan; gets.split.map(&:to_i); end

strs = gets.to_i.times.map{(gets.chomp+'~').chars}

ans = ''
while !strs.empty?
    item, i = strs.each_with_index.min
    ans << strs[i].shift
    strs.delete_at(i) if strs[i].empty?
end

puts ans.gsub('~','')
0