結果

問題 No.380 悪の台本
ユーザー mai
提出日時 2016-06-18 06:27:33
言語 Ruby
(3.4.1)
結果
WA  
実行時間 -
コード長 1,139 bytes
コンパイル時間 159 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 19,584 KB
最終ジャッジ日時 2024-11-06 22:56:49
合計ジャッジ時間 2,021 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 4 WA * 4
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:9: warning: assigned but unused variable - f
Syntax OK

ソースコード

diff #

while cin=gets
    cin=cin.scan(/^(digi|petit|rabi|gema|piyo) (.+)/)
    if cin.size!=1
        puts "WRONG!"
        next
    end
    cin=cin[0]
    f=false
    case (cin[0])
        when "digi" then
            if !cin[-1].downcase.match(/nyo\W{0,3}$/)
                puts "WRONG!"
            else
                puts "CORRECT (maybe)"
            end
            
        when "petit" then
            if !cin[-1].downcase.match(/nyu\W{0,3}$/)
                puts "WRONG!"
            else
                puts "CORRECT (maybe)"
            end
        when "rabi" then
            if !cin[-1].downcase.match(/\w$/)
                puts "WRONG!"
            else
                puts "CORRECT (maybe)"
            end
        when "gema" then
            if !cin[-1].downcase.match(/gema\W{0,3}$/)
                puts "WRONG!"
            else
                puts "CORRECT (maybe)"
            end
        when "piyo" then
            if !cin[-1].downcase.match(/pyo\W{0,3}$/)
                puts "WRONG!"
            else
                puts "CORRECT (maybe)"
            end
        else
            puts "WRONG!"
    end
end
0