結果

問題 No.154 市バス
ユーザー finefine
提出日時 2016-01-17 22:23:26
言語 Ruby
(3.4.1)
結果
WA  
実行時間 -
コード長 640 bytes
コンパイル時間 40 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 13,440 KB
最終ジャッジ日時 2024-10-13 07:59:47
合計ジャッジ時間 2,223 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 7 WA * 1
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

gets.to_i.times{
    s = gets.chomp
    s.reverse =~ /R(.*?)G/
    tmp = s.count('G')
    if s[-1] != 'R' || s[0] != 'W' || $1.to_s.include?('W') || tmp != s.count('R') || s.count('W') < tmp
        puts "impossible"
    else
        flag = 0
        s.delete!('W')
        g = []
        r = []
        (tmp * 2).times{|i|
            case s[i]
                when 'G'
                g.push(i)
                when 'R'
                r.push(i)
            end
            }
        tmp.times{|i|
            if g[i] > r[i]
                flag = 1
            end
            }
        puts ["possible","impossible"][flag]
    end
    }
0