結果

問題 No.154 市バス
ユーザー trineutrontrineutron
提出日時 2020-04-11 14:43:16
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 639 bytes
コンパイル時間 2,090 ms
コンパイル使用メモリ 201,148 KB
実行使用メモリ 4,348 KB
最終ジャッジ日時 2023-10-19 05:27:58
合計ジャッジ時間 3,186 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
4,348 KB
testcase_01 AC 28 ms
4,348 KB
testcase_02 AC 27 ms
4,348 KB
testcase_03 AC 27 ms
4,348 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 25 ms
4,348 KB
testcase_08 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int main() {
    int t;
    cin >> t;
    for (int i = 0; i < t; i++) {
        string s;
        cin >> s;
        reverse(s.begin(), s.end());
        bool ok = true;
        int r = 0;
        for (char c : s) {
            if (c == 'R') {
                r++;
            } else if (c == 'G') {
                r--;
                if (r < 0) {
                    ok = false;
                    break;
                }
            }
        }
        if (r) ok = false;
        if (ok) {
            puts("possible");
        } else {
            puts("impossible");
        }
    }
}
0