結果

問題 No.154 市バス
ユーザー zeroyonichihachizeroyonichihachi
提出日時 2016-10-18 11:36:55
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 422 bytes
コンパイル時間 159 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 13,568 KB
最終ジャッジ日時 2024-04-21 09:58:57
合計ジャッジ時間 3,505 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 326 ms
13,568 KB
testcase_01 AC 322 ms
13,440 KB
testcase_02 AC 320 ms
13,440 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 328 ms
13,440 KB
testcase_08 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

ws = 0
gs = 0

gets.to_i.times do
  possible = true

  gets.chomp.chars.each do |c|
    case c
    when "W"
      ws += 1
    when "G"
      if ws <= 0
        possible = false
        break
      end
      ws -= 1
      gs += 1
    when "R"
      if gs <= 0
        possible = false
        break
      end
      gs -= 1
    end
  end

  if possible && gs.zero?
    puts "possible"
  else
    puts "impossible"
  end
end
0