結果

問題 No.154 市バス
ユーザー mizzsigmizzsig
提出日時 2018-02-04 15:27:25
言語 PHP
(843.2)
結果
WA  
実行時間 -
コード長 978 bytes
コンパイル時間 216 ms
コンパイル使用メモリ 30,900 KB
実行使用メモリ 31,340 KB
最終ジャッジ日時 2024-10-13 09:20:36
合計ジャッジ時間 1,502 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 89 ms
30,876 KB
testcase_01 AC 88 ms
31,340 KB
testcase_02 AC 88 ms
30,928 KB
testcase_03 WA -
testcase_04 AC 85 ms
30,980 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 83 ms
31,060 KB
testcase_08 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
  $n = trim(fgets(STDIN));

  for ($i = 0; $i < $n; $i++) {
    $str = trim(fgets(STDIN));

    $length = strlen($str);

    $isPossible = true;
    $noMustW = 0;
    $w = 0;
    $g = 0;
    // 各バスの状態を保存する
    $bus = [];

    // それぞれのテストケースを確認
    for ($l = 0; $l < $length; $l++) {
      switch ($str[$l]) {
        case 'W':
          if ($w == 0) { $w++; }
          else { $noMustW++; }
          break;
        case 'G':
          if ($w > 0) {
              $w--;
              $g++;
          } else if ($noMustW > 0) {
              $noMustW--;
              $g++;
          } else $isPossible = false;
          break;
        case 'R':
          if ($g > 0) {
              $g--;
          } else $isPossible = false;
          break;
      }
      if (!$isPossible) break;
    }

    // 結果出力
    if ($isPossible) {
        echo 'possible' . "\n";
    } else {
        echo 'impossible' . "\n";
    }
  }
0