結果
問題 | No.154 市バス |
ユーザー | 🍮かんプリン |
提出日時 | 2019-04-18 22:17:13 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,414 bytes |
コンパイル時間 | 804 ms |
コンパイル使用メモリ | 73,156 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-09-22 10:45:55 |
合計ジャッジ時間 | 1,990 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 25 ms
6,812 KB |
testcase_01 | AC | 25 ms
6,940 KB |
testcase_02 | AC | 25 ms
6,944 KB |
testcase_03 | AC | 25 ms
6,940 KB |
testcase_04 | AC | 25 ms
6,940 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 23 ms
6,940 KB |
testcase_08 | WA | - |
ソースコード
#include <iostream> #include <vector> #include <algorithm> #include <map> #include <string> #include <queue> #include <stack> #include <math.h> #include <set> #define ALL(obj) (obj).begin(),(obj).end() #define RALL(obj) (obj).rbegin(),(obj).rend() #define P pair<int, int> #define MOD 1000000007 #define INF 2147483647 #define NINF (-2147483647-1) #define LLINF 9223372036854775807 using ll = long long; using namespace std; int main() { int t; int w, g, r; cin >> t; for (int i = 0; i < t; i++) { string s; cin >> s; w = g = r = 0; bool miss = false; for (int j = 0; j < s.length(); j++) { switch (s[j]) { case 'W': w++; break; case 'G': if (w <= g) { miss = true; } else { g++; } break; case 'R': if (g <= r) { miss = true; } else { r++; } break; } if (miss) break; } if (miss || g != r) cout << "impossible" << endl; else cout << "possible" << endl; } getchar(); getchar(); return 0; }