結果
| 問題 | No.154 市バス |
| コンテスト | |
| ユーザー |
takakin
|
| 提出日時 | 2020-05-01 18:24:01 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
AC
|
| 実行時間 | 454 ms / 2,000 ms |
| コード長 | 413 bytes |
| コンパイル時間 | 494 ms |
| コンパイル使用メモリ | 12,416 KB |
| 実行使用メモリ | 10,752 KB |
| 最終ジャッジ日時 | 2024-12-24 13:21:08 |
| 合計ジャッジ時間 | 3,970 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | AC * 8 |
ソースコード
import sys
input=lambda: sys.stdin.readline().rstrip()
t=int(input())
for _ in range(t):
S=input()[::-1]
w,g,r=0,0,0
chk=True
for s in S:
if s=="W":
if g==0:
chk=False
else:
w=min(w+1,g)
elif s=="G":
if r==0:
chk=False
else:
r-=1
g+=1
else:
r+=1
if r>0 or w<g:
chk=False
print("possible" if chk else "impossible")
takakin