結果
問題 |
No.154 市バス
|
ユーザー |
|
提出日時 | 2016-03-15 08:07:56 |
言語 | Python2 (2.7.18) |
結果 |
WA
|
実行時間 | - |
コード長 | 481 bytes |
コンパイル時間 | 140 ms |
コンパイル使用メモリ | 6,912 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-10-13 08:11:56 |
合計ジャッジ時間 | 3,474 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 |
other | AC * 6 WA * 2 |
ソースコード
# coding: utf-8 #yuki_154 t=int(raw_input()) for i in xrange(t): s=raw_input() rgcount=0 rflag=False gflag=False if s[0]=='G' or s[0]=='R': print "impossible" continue pi=True for j in xrange(len(s)-1,-1,-1): st=s[j] if st=='R': rgcount+=1 rflag=True elif st=='G': rgcount-=1 gflag=True elif st=='W': if rflag==False or gflag==False: pi=False break if rgcount<0: pi=False if pi==True: print "possible" else: print "impossible"