結果
| 問題 | No.154 市バス |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2015-06-06 17:43:41 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 944 bytes |
| コンパイル時間 | 698 ms |
| コンパイル使用メモリ | 81,248 KB |
| 実行使用メモリ | 5,248 KB |
| 最終ジャッジ日時 | 2024-10-13 07:27:04 |
| 合計ジャッジ時間 | 1,445 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 1 |
| other | AC * 7 WA * 1 |
ソースコード
#include <algorithm>
#include <bitset>
#include <functional>
#include <iomanip>
#include <iostream>
#include <list>
#include <map>
#include <numeric>
#include <queue>
#include <set>
#include <sstream>
#include <stack>
#include <string>
#include <utility>
#include <vector>
#define REP(i,s,n) for(int i=(int)(s);i<(int)(n);i++)
using namespace std;
typedef long long int ll;
typedef vector<int> VI;
typedef pair<int, int> PI;
const double EPS=1e-9;
bool solve(const string &s) {
int n = s.length();
int w = 0, g = 0, r = 0;
REP(i, 0, n) {
switch(s[i]) {
case 'W':
w++; break;
case 'G':
g++; break;
case 'R':
r++; break;
default:
return 0;
}
if (w < g || w < r || g < r) {
return 0;
}
}
return g == r && g >= 1;
}
int main(void){
int t;
cin >> t;
REP (loop_var, 0, t) {
string s;
cin >> s;
cout << (solve(s) ? "possible" : "impossible") << endl;
}
}