結果

問題 No.154 市バス
ユーザー gazellegazelle
提出日時 2018-01-07 22:00:08
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 995 bytes
コンパイル時間 778 ms
コンパイル使用メモリ 90,620 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-04-21 10:29:07
合計ジャッジ時間 1,580 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include<iostream>
#include<iomanip>
#include<math.h>
#include<vector>
#include<algorithm>
#include<set>
#include<map>
#include<queue>
#include<stack>
#include<string>
#include<bitset>
#include<random>
#define INF 1000000000ll
#define MOD 1000000007ll
#define EPS 1e-10
#define REP(i,m) for(long long i=0; i<m; i++)
#define FOR(i,n,m) for(long long i=n; i<m; i++)
#define DUMP(a) for(long long dump=0; dump<(ll)a.size(); dump++) { cout<<a[dump]; if(dump!=(ll)a.size()-1) cout<<" "; else cout<<endl; }
#define ALL(v) v.begin(),v.end()
#define pb push_back
using namespace std;
typedef long long ll;
typedef pair<ll, ll> P;
typedef long double ld;

int main() {
	cin.tie(0);
	ios::sync_with_stdio(false);
	ll t;
	cin>>t;
	REP(roop,t) {
		ll gc=0;
		string s;
		cin>>s;
		bool d=true;
		REP(i,(ll)s.size()) {
			if(s[i]=='G') gc++;
			if(s[i]=='R') {
				if(gc>0) gc--;
				else d=false;
			}
		}
		if(d&&gc==0&&s[(ll)s.size()-1]!='W') cout<<"possible"<<endl;
		else cout<<"impossible"<<endl;
	}
}
0