結果

問題 No.154 市バス
ユーザー tookunn_1213
提出日時 2017-05-05 09:33:37
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 332 bytes
コンパイル時間 138 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-10-13 09:03:01
合計ジャッジ時間 2,927 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 1
other AC * 7 WA * 1
権限があれば一括ダウンロードができます

ソースコード

diff #

T = int(input())
for i in range(T):
	S = input()
	flag = True
	w,g,ww = 0,0,0
	for s in S:
		if s == 'W':
			w += 1
			ww+=1
		elif s == 'G':
			w -= 1
			g += 1
			ww = 0
		else:
			g -= 1
			ww = 0
		if g < 0 or w < 0:
				flag = False
	if g > 0 or ww > 0:
		flag = False
	if flag:
		print("possible")
	else:
		print("impossible")
0