結果
問題 | No.154 市バス |
ユーザー | srjywrdnprkt |
提出日時 | 2023-01-19 12:48:52 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 873 bytes |
コンパイル時間 | 1,272 ms |
コンパイル使用メモリ | 107,416 KB |
実行使用メモリ | 13,884 KB |
最終ジャッジ日時 | 2024-06-13 03:01:46 |
合計ジャッジ時間 | 5,283 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 27 ms
13,884 KB |
testcase_01 | AC | 27 ms
6,944 KB |
testcase_02 | AC | 27 ms
6,948 KB |
testcase_03 | TLE | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
ソースコード
#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; string S; cin >> T; while(T){ cin >> S; g = 0; if (S.back() != 'R'){ cout << "impossible" << endl; T--; continue; } for (int i=0; i<S.size(); i++){ if (S[i] == 'G') g++; else if (S[i] == 'R'){ if (g == 0){ T--; cout << "impossible" << endl; continue; } else g--; } } cout << (g == 0 ? "possible" : "impossible") << endl; T--; } return 0; }