結果

問題 No.154 市バス
ユーザー syunsukesyunsuke
提出日時 2019-08-10 22:17:41
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 373 bytes
コンパイル時間 139 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-07-19 17:25:34
合計ジャッジ時間 3,082 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

N=int(input())
for i in range(N):
    r=0
    g=0
    S=list(input())
    F=1
    for j in range(len(S)):
        if S[j]=="R":
            r+=1
        elif S[j]=="G":
            g+=1
        if r>g:
            print("impossible")
            F=0
            break
    if r==g and S[-1]=="R" and F==1:
        print("possible")
    elif F==1:
        print("impossible")
0