結果

問題 No.205 マージして辞書順最小
ユーザー maimai
提出日時 2018-09-25 00:53:23
言語 Ruby
(3.3.0)
結果
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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 86 ms
12,160 KB
testcase_01 AC 82 ms
12,288 KB
testcase_02 AC 124 ms
12,416 KB
testcase_03 AC 124 ms
12,672 KB
testcase_04 AC 120 ms
12,416 KB
testcase_05 AC 118 ms
12,416 KB
testcase_06 AC 88 ms
12,160 KB
testcase_07 AC 184 ms
12,544 KB
testcase_08 AC 183 ms
12,800 KB
testcase_09 AC 177 ms
12,544 KB
testcase_10 AC 335 ms
12,672 KB
testcase_11 AC 288 ms
12,672 KB
testcase_12 AC 254 ms
12,544 KB
testcase_13 AC 192 ms
12,544 KB
testcase_14 AC 88 ms
12,288 KB
testcase_15 AC 87 ms
12,160 KB
testcase_16 AC 86 ms
12,160 KB
testcase_17 AC 86 ms
12,160 KB
testcase_18 AC 84 ms
12,288 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
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