結果

問題 No.154 市バス
コンテスト
ユーザー ayaoni
提出日時 2020-11-27 14:33:51
言語 Python3
(3.14.3 + numpy 2.4.4 + scipy 1.17.1)
コンパイル:
python3 -mpy_compile _filename_
実行:
python3 _filename_
結果
WA  
実行時間 -
コード長 630 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 650 ms
コンパイル使用メモリ 20,700 KB
実行使用メモリ 15,488 KB
最終ジャッジ日時 2026-04-03 16:28:30
合計ジャッジ時間 2,606 ms
ジャッジサーバーID
(参考情報)
judge3_1 / judge1_0
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 1
other AC * 6 WA * 2
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

import sys
def I(): return int(sys.stdin.readline().rstrip())
def S(): return sys.stdin.readline().rstrip()


T = I()
for _ in range(T):
    U = S()
    r,g,w = 0,0,0
    for u in U:
        if u == 'R':
            if g > 0:
                g -= 1
            else:
                print('impossible')
                break
        elif u == 'G':
            if w > 0:
                w -= 1
                g += 1
            else:
                print('impossible')
                break
        else:
            w += 1
    else:
        if g == 0:
            print('possible')
        else:
            print('impossible')
0