結果

問題 No.154 市バス
ユーザー tookunn_1213tookunn_1213
提出日時 2017-05-05 09:33:37
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 332 bytes
コンパイル時間 106 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-04-21 10:15:44
合計ジャッジ時間 2,853 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 288 ms
10,624 KB
testcase_01 AC 286 ms
10,752 KB
testcase_02 AC 293 ms
10,752 KB
testcase_03 AC 291 ms
10,624 KB
testcase_04 AC 316 ms
10,752 KB
testcase_05 WA -
testcase_06 AC 27 ms
10,752 KB
testcase_07 AC 316 ms
10,752 KB
testcase_08 WA -
権限があれば一括ダウンロードができます

ソースコード

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