結果
問題 | No.154 市バス |
ユーザー | nanTosaka2 |
提出日時 | 2016-06-19 22:59:04 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 611 bytes |
コンパイル時間 | 1,354 ms |
コンパイル使用メモリ | 158,448 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-13 08:32:20 |
合計ジャッジ時間 | 1,981 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 26 ms
5,248 KB |
testcase_01 | AC | 26 ms
5,248 KB |
testcase_02 | AC | 26 ms
5,248 KB |
testcase_03 | AC | 25 ms
5,248 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 2 ms
5,248 KB |
testcase_07 | AC | 23 ms
5,248 KB |
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 n; cin >> n; rep(_, n) { string s; cin >> s; int num = 0; bool r = false; for (char c : s) { if (c == 'W') r = true; if (c == 'G') num++; if (c == 'R') num--, r = false; if (num < 0) break; } cout << (num == 0 && !r ? "possible" : "impossible") << endl; } }