結果

問題 No.154 市バス
ユーザー finefine
提出日時 2016-01-17 22:23:26
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 640 bytes
コンパイル時間 175 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 13,312 KB
最終ジャッジ日時 2024-04-21 09:07:12
合計ジャッジ時間 2,885 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 217 ms
13,184 KB
testcase_01 AC 213 ms
13,312 KB
testcase_02 AC 213 ms
13,312 KB
testcase_03 AC 129 ms
12,928 KB
testcase_04 WA -
testcase_05 AC 93 ms
12,288 KB
testcase_06 AC 92 ms
12,032 KB
testcase_07 AC 345 ms
13,312 KB
testcase_08 AC 93 ms
12,032 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
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