結果
問題 | No.154 市バス |
ユーザー | nanTosaka2 |
提出日時 | 2016-06-19 23:38:16 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 723 bytes |
コンパイル時間 | 1,292 ms |
コンパイル使用メモリ | 160,400 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-10-13 08:33:02 |
合計ジャッジ時間 | 2,113 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
ソースコード
#include "bits/stdc++.h" using namespace std; #define rep(i, n) for(int i = 0; i < (n); i++) #define REP(i, s, n) for(int i = (s); i < (n); i++) #define all(co) begin(co), end(co) #define maxup(ans, x) (ans = (ans < x ? x : ans)) #define minup(ans, x) (ans = (ans > x ? x : ans)) using P = pair<int, int>; signed main() { int x = 0; int n; cin >> n; rep(_, n) { string s; cin >> s; int w = 0, g = 0, r = 0; bool ok = true; bool wg = false; for (char c : s) { if (c == 'W') { w++; wg = true; } if (c == 'G') { g++; wg = false; } if (c == 'R') { r++; } if (g > w || r > g) { ok == false; break; } } cout << (wg && ok && g == r ? "possible" : "impossible") << endl; } //cin >> n; }