結果

問題 No.342 一番ワロタww
ユーザー KisaragiEffectiveKisaragiEffective
提出日時 2021-05-17 08:09:09
言語 Ruby
(3.3.0)
結果
RE  
実行時間 -
コード長 212 bytes
コンパイル時間 46 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 12,544 KB
最終ジャッジ日時 2024-04-15 20:38:00
合計ジャッジ時間 2,092 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 RE -
testcase_07 WA -
testcase_08 RE -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 RE -
testcase_15 RE -
testcase_16 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

z = "([^w]*w+)?"
gets.chomp.split(?\n).map {|l| 
    /^(?:w*)#{z * 100}$/.match(l).to_a[1..].compact.group_by { 
        _1.count(?w) 
    }.sort_by { -_1[0] }[0]
}.flat_map { _1[1] }.each {
    puts _1
}
0