結果
| 問題 | No.205 マージして辞書順最小 |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2018-09-25 00:53:23 |
| 言語 | Ruby (4.0.2) |
| 結果 |
AC
|
| 実行時間 | 221 ms / 5,000 ms |
| コード長 | 250 bytes |
| 記録 | |
| コンパイル時間 | 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
ソースコード
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('~','')