結果
| 問題 | No.154 市バス |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2015-06-09 13:00:32 |
| 言語 | Python2 (2.7.18) |
| 結果 |
AC
|
| 実行時間 | 274 ms / 2,000 ms |
| コード長 | 822 bytes |
| コンパイル時間 | 683 ms |
| コンパイル使用メモリ | 6,912 KB |
| 実行使用メモリ | 6,400 KB |
| 最終ジャッジ日時 | 2024-10-13 07:29:21 |
| 合計ジャッジ時間 | 3,232 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | AC * 8 |
ソースコード
# -*- coding:utf-8 -*-
def solve():
s = raw_input()
s = list(s)
g = s.count("G")
r = s.count("R")
if g != r:
print "impossible"
return
i = 1
gg = s[::-1].index("G")
ww = s[::-1].index("W")
if ww < gg:
print "impossible"
return
while i <= g:
gg = s[::-1].index("G")
rr = s[::-1].index("R")
if gg < rr:
print "impossible"
return
s[len(s)-gg -1] = s[len(s) - rr -1] = "W"
i += 1
print "possible"
if __name__ == "__main__":
n = input()
for i in xrange(n):
S = raw_input()
need = False
w = r = cnt = 0
for s in S:
if s == "G":
r += 1
w -= 1
need = False
elif s == "R":
r -= 1
else:
w += 1
need = True
if r < 0 or w < 0:
print "impossible"
break
else:
if r == 0 and not need:
print "possible"
else:
print "impossible"