結果
| 問題 | No.154 市バス |
| コンテスト | |
| ユーザー |
ant2357
|
| 提出日時 | 2016-06-03 23:50:26 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 1,113 bytes |
| コンパイル時間 | 1,042 ms |
| コンパイル使用メモリ | 95,004 KB |
| 実行使用メモリ | 5,248 KB |
| 最終ジャッジ日時 | 2024-10-13 08:21:58 |
| 合計ジャッジ時間 | 1,407 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 1 |
| other | AC * 5 WA * 3 |
ソースコード
#include <iostream>
#include <cmath>
#include <string>
#include <vector>
#include <map>
#include <set>
#include <list>
#include <deque>
#include <algorithm>
#include <iomanip>
#define REP(i, n) for(int i = 0;i < (n); i++)
#define REP2(i, x, n) for(int i = (x); i < (n); i++)
#define REPR(i, n) for(int i = (n); i >= 0; i--)
#define ALL(a) (a).begin(),(a).end()
#define SORT(c) sort((c).begin(),(c).end())
#define LL long long
#define LD long double
#define PI 3.14159265358979
using namespace std;
//================================================
int main() {
ios::sync_with_stdio(false);
cin.tie(0);
int T;
cin >> T;
vector<string>ans(T);
int wCount = 0;
int gCount = 0;
int rCount = 0;
string S = "";
REP(i, T) {
cin >> S;
if (S.substr(S.size() - 1, 1) != "R") {
ans[i] = "impossible";
continue;
}
REP(j, S.size()) {
if (S[j] == 'W') wCount++;
if (S[j] == 'G') gCount++;
if (S[j] == 'R') rCount++;
}
if (gCount == rCount && gCount <= wCount) {
ans[i] = "possible";
} else {
ans[i] = "impossible";
}
}
REP(i, T) cout << ans[i] << "\n";
return 0;
}
ant2357