結果

問題 No.154 市バス
ユーザー TANIGUCHI KousukeTANIGUCHI Kousuke
提出日時 2015-11-06 15:56:29
言語 Ruby
(3.3.0)
結果
AC  
実行時間 1,281 ms / 2,000 ms
コード長 613 bytes
コンパイル時間 85 ms
コンパイル使用メモリ 11,440 KB
実行使用メモリ 15,624 KB
最終ジャッジ日時 2023-08-03 11:03:17
合計ジャッジ時間 8,739 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,089 ms
15,624 KB
testcase_01 AC 1,115 ms
15,620 KB
testcase_02 AC 1,101 ms
15,596 KB
testcase_03 AC 956 ms
15,260 KB
testcase_04 AC 1,074 ms
15,524 KB
testcase_05 AC 78 ms
15,120 KB
testcase_06 AC 77 ms
15,064 KB
testcase_07 AC 1,281 ms
15,284 KB
testcase_08 AC 79 ms
15,108 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

n = gets.to_i
n.times do
    lines = []
    s = gets.chomp.chars.reverse
    s.each do |c|
        if c == 'R'
            lines << 0
        elsif c == 'G'
            g = lines.index(0)
            if g
                lines[g] = 1
            else
                lines << -1
                break
            end
        else
            w = lines.index(1) || lines.index(2)
            if w 
                lines[w] = 2 if lines[w] == 1
            else
                lines << -1
                break;
            end
        end
    end
    puts lines.all? {|v| v == 2 } ? "possible" : "impossible"
end
0