結果

問題 No.154 市バス
ユーザー phtmscgphtmscg
提出日時 2019-05-14 19:13:47
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 592 ms / 2,000 ms
コード長 862 bytes
コンパイル時間 80 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-07-19 05:32:27
合計ジャッジ時間 5,000 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 582 ms
10,752 KB
testcase_01 AC 571 ms
10,752 KB
testcase_02 AC 583 ms
10,624 KB
testcase_03 AC 175 ms
10,624 KB
testcase_04 AC 592 ms
10,624 KB
testcase_05 AC 29 ms
10,624 KB
testcase_06 AC 29 ms
10,752 KB
testcase_07 AC 539 ms
10,624 KB
testcase_08 AC 27 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
for _ in range(N):
    C = input()[::-1]
    cr,cg,cw = C.count("R"),C.count("G"),C.count("W")
    if cr == cg and cw >= cr:
        QR = [0,0]
        QG = [0,0]
        while C:
            color = C[0]
            C = C[1:]
            if color == "R":
                QR[0] += 1
            elif color == "G" and QR[0]>QG[0]:
                QG[0] += 1
            elif color == "G":
                print("impossible")
                break
            elif QR[0]*QG[0]==0 and color == "W":
                print("impossible")
                break
            elif QR[0]>QR[1] and QG[0]>QG[1]:
                QR[1] += 1
                QG[1] += 1
        else:
            if QR[0]-QR[1] == 0 and QG[0]-QG[1]==0:
                print("possible")
            else:
                print("impossible")
    else:
        print("impossible")
0