結果

問題 No.154 市バス
ユーザー Yug_min_nullYug_min_null
提出日時 2021-11-15 17:40:12
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 687 bytes
コンパイル時間 2,098 ms
コンパイル使用メモリ 188,104 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-05-08 17:32:04
合計ジャッジ時間 3,286 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
5,248 KB
testcase_01 AC 28 ms
5,376 KB
testcase_02 AC 28 ms
5,376 KB
testcase_03 AC 28 ms
5,376 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 25 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;
    bool flag = true;
    for(int j = 0; j < s; j++){
      switch(S[j]){
        case 'W': 
          W++; 
          break;
        case 'G': 
          W = 0; 
          G++; 
          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