結果

問題 No.154 市バス
ユーザー H20H20
提出日時 2022-02-13 02:39:00
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 1,149 bytes
コンパイル時間 350 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-06-29 05:22:45
合計ジャッジ時間 7,903 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 882 ms
10,880 KB
testcase_01 AC 853 ms
10,752 KB
testcase_02 AC 882 ms
10,752 KB
testcase_03 WA -
testcase_04 AC 875 ms
10,880 KB
testcase_05 AC 30 ms
10,752 KB
testcase_06 AC 30 ms
10,880 KB
testcase_07 AC 1,341 ms
10,880 KB
testcase_08 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

T = int(input())
for _ in range(T):
    S = list(input())
    S = S[::-1]
    USE = [0]*len(S)
    f = True
    tj=0
    tk=0
    if S[0]=='R':
        for i in range(len(S)):
            if not f:
                break
            if S[i]=='R':
                USE[i]=1
                tj = max(tj,i)
                for j in range(tj,len(S)):
                    if S[j]=='G' and USE[j]==0:
                        USE[j]=1
                        tj = max(tj,j)
                        tk = max(tk,j)
                        for k in range(tk,len(S)):
                            if S[k]=='W' and USE[k]==0:
                                USE[k]=1
                                tk = max(tk,k)
                                break
                        else:
                            f = False
                        break
    else:
        f = False
    for i in range(len(S)):
        if USE[i]==0 and S[i]!='W':
            f=False 
    for i in range(len(S)):
        if S[i]=='G':
            break
        if S[i]=='W':
            f=False
            break
    if f:
        print('possible')
    else:
        print('impossible')
0