結果

問題 No.154 市バス
ユーザー TANIGUCHI KousukeTANIGUCHI Kousuke
提出日時 2015-11-06 15:56:29
言語 Ruby
(3.3.0)
結果
AC  
実行時間 1,216 ms / 2,000 ms
コード長 613 bytes
コンパイル時間 152 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 13,568 KB
最終ジャッジ日時 2024-04-21 08:57:19
合計ジャッジ時間 8,499 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,045 ms
13,440 KB
testcase_01 AC 1,065 ms
13,568 KB
testcase_02 AC 1,062 ms
13,440 KB
testcase_03 AC 912 ms
13,440 KB
testcase_04 AC 1,033 ms
13,440 KB
testcase_05 AC 82 ms
12,160 KB
testcase_06 AC 81 ms
12,032 KB
testcase_07 AC 1,216 ms
13,312 KB
testcase_08 AC 78 ms
12,032 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