結果

問題 No.205 マージして辞書順最小
コンテスト
ユーザー mai
提出日時 2018-09-25 00:53:23
言語 Ruby
(4.0.2)
コンパイル:
ruby -w -c _filename_
実行:
ruby _filename_
結果
AC  
実行時間 221 ms / 5,000 ms
コード長 250 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 285 ms
コンパイル使用メモリ 8,960 KB
実行使用メモリ 14,976 KB
最終ジャッジ日時 2026-04-11 17:13:16
合計ジャッジ時間 4,134 ms
ジャッジサーバーID
(参考情報)
judge2_1 / judge3_0
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 15
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:7: warning: assigned but unused variable - item
Syntax OK

ソースコード

diff #
raw source code

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