結果
問題 | No.154 市バス |
ユーザー | gazelle |
提出日時 | 2018-01-07 21:59:00 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 971 bytes |
コンパイル時間 | 777 ms |
コンパイル使用メモリ | 91,004 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-13 09:17:33 |
合計ジャッジ時間 | 1,352 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 8 ms
5,248 KB |
testcase_01 | AC | 8 ms
5,248 KB |
testcase_02 | AC | 8 ms
5,248 KB |
testcase_03 | AC | 9 ms
5,248 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 5 ms
5,248 KB |
testcase_08 | WA | - |
ソースコード
#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) cout<<"possible"<<endl; else cout<<"impossible"<<endl; } }