結果
| 問題 | No.154 市バス |
| コンテスト | |
| ユーザー |
yaoshimax
|
| 提出日時 | 2015-02-19 02:44:08 |
| 言語 | Python2 (2.7.18) |
| 結果 |
AC
|
| 実行時間 | 416 ms / 2,000 ms |
| コード長 | 565 bytes |
| コンパイル時間 | 779 ms |
| コンパイル使用メモリ | 7,040 KB |
| 実行使用メモリ | 6,400 KB |
| 最終ジャッジ日時 | 2024-10-13 06:58:08 |
| 合計ジャッジ時間 | 3,527 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | AC * 8 |
ソースコード
T=int(raw_input())
for i in range(T):
S=raw_input()
Rcnt=0
Gcnt=0
ok=True
oneBus =False
for s in S[::-1]:
if s=='R':
Rcnt+=1
if s=='G':
if Rcnt <= 0:
ok=False
break
Rcnt-=1
Gcnt+=1
if s=='W':
if Gcnt <= 0 and oneBus==False:
ok=False
break
Gcnt=max(0,Gcnt-1)
oneBus = True
if ok and Rcnt==0 and Gcnt==0:
print 'possible'
else:
print 'impossible'
yaoshimax