結果
問題 | No.154 市バス |
ユーザー | srjywrdnprkt |
提出日時 | 2023-01-19 12:58:08 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,174 bytes |
コンパイル時間 | 1,169 ms |
コンパイル使用メモリ | 107,244 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-06-13 03:15:30 |
合計ジャッジ時間 | 1,802 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 29 ms
6,816 KB |
testcase_01 | AC | 29 ms
6,940 KB |
testcase_02 | AC | 29 ms
6,940 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 2 ms
6,940 KB |
testcase_06 | AC | 2 ms
6,948 KB |
testcase_07 | AC | 26 ms
6,944 KB |
testcase_08 | WA | - |
ソースコード
#include <iostream> #include <vector> #include <cmath> #include <map> #include <set> #include <iomanip> #include <queue> #include <algorithm> #include <numeric> #include <deque> #include <complex> #include <cassert> using namespace std; int main(){ int T, g, r; string S; cin >> T; while(T){ cin >> S; g = 0; r=0; for (int i=0; i<S.size(); i++) if (S[i] == 'R') r++; if (S.back() != 'R'){ cout << "impossible" << '\n'; T--; continue; } bool f=1; for (int i=0; i<S.size(); i++){ if (S[i] == 'G') g++; else if (S[i] == 'R'){ r--; if (g == 0){ T--; cout << "impossible" << '\n'; f = 0; break; } else g--; } else if (S[i] == 'W' && r == 1 && g == 1){ cout << "impossible" << '\n'; f = 0; break; } } if (f) cout << (g == 0 ? "possible" : "impossible") << '\n'; T--; } return 0; }