結果

問題 No.154 市バス
ユーザー AEnAEn
提出日時 2022-05-16 11:17:55
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 440 bytes
コンパイル時間 214 ms
コンパイル使用メモリ 82,376 KB
実行使用メモリ 76,768 KB
最終ジャッジ日時 2024-09-14 03:05:19
合計ジャッジ時間 1,736 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 MLE -
testcase_01 MLE -
testcase_02 MLE -
testcase_03 MLE -
testcase_04 MLE -
testcase_05 AC 39 ms
52,096 KB
testcase_06 AC 41 ms
51,840 KB
testcase_07 MLE -
testcase_08 AC 41 ms
52,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve(S):
    r, g, w, = 0, 0, 0
    for s in S[::-1]:
        if s == 'R':
            r += 1
        elif s == 'G':
            g += 1
            if g > r:
                return False
        elif g == 0:
            return False
        elif w < g:
            w += 1
    return w == g == r


T = int(input())
for t in range(T):
    S = list(input())
    if solve(S):
        print('possible')
    else:
        print('impossible')
0