結果

問題 No.154 市バス
ユーザー Yug_min_nullYug_min_null
提出日時 2021-11-15 17:42:24
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 749 bytes
コンパイル時間 2,238 ms
コンパイル使用メモリ 186,500 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-08 17:34:06
合計ジャッジ時間 3,003 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
5,248 KB
testcase_01 AC 27 ms
5,248 KB
testcase_02 AC 26 ms
5,376 KB
testcase_03 AC 27 ms
5,376 KB
testcase_04 AC 25 ms
5,376 KB
testcase_05 WA -
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 24 ms
5,376 KB
testcase_08 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#define _GLIBCXX_DEBUG
#define ll long long
#include <bits/stdc++.h>
using namespace std;
using Graph = vector<vector<int>>;

int main(){
  int T; cin >> T;
  for(int i = 0; i < T; i++){
    string S; cin >> S;
    int s = (int)S.size();
    int W = 0, G = 0, R = 0, WW = 0;
    bool flag = true;
    for(int j = 0; j < s; j++){
      switch(S[j]){
        case 'W': 
          W++;
          WW++;
          break;
        case 'G': 
          W = 0; 
          if(G < WW) G++;
          else flag = false;
          break;
        case 'R': 
          W = 0; 
          R++;
          if(G < R) flag = false;
          break;
      }
    }
    if(flag and W == 0 and G == R) cout << "possible" << endl;
    else cout << "impossible" << endl;
  }
}
0