結果
問題 | No.154 市バス |
ユーザー | k |
提出日時 | 2020-09-25 06:14:29 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 730 bytes |
コンパイル時間 | 1,973 ms |
コンパイル使用メモリ | 201,352 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-28 05:43:26 |
合計ジャッジ時間 | 3,037 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 11 ms
5,248 KB |
testcase_01 | AC | 11 ms
5,376 KB |
testcase_02 | AC | 11 ms
5,376 KB |
testcase_03 | AC | 10 ms
5,376 KB |
testcase_04 | WA | - |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 11 ms
5,376 KB |
testcase_08 | WA | - |
ソースコード
#include <bits/stdc++.h> using namespace std; #define REP(i,n) for(int i=0; i<(int)(n); i++) bool check(const string &s) { if (!count(s.begin(), s.end(), 'G')) return false; if (!count(s.begin(), s.end(), 'R')) return false; if (count(s.begin(), s.end(), 'W') && s.find_last_of("W") > s.find_last_of("G")) return false; int stk = 0; for (char c: s) { if (c == 'G') ++stk; else if (c == 'R') { if (--stk < 0) return false; } } return !stk; } int main() { ios_base::sync_with_stdio(0); cin.tie(0); int T; cin >> T; while (T--) { string s; cin >> s; if (check(s)) cout << "possible" << endl; else cout << "impossible" << endl; } return 0; }