結果

問題 No.154 市バス
ユーザー tookunn_1213tookunn_1213
提出日時 2017-05-05 09:37:52
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 270 ms / 2,000 ms
コード長 322 bytes
コンパイル時間 125 ms
コンパイル使用メモリ 10,544 KB
実行使用メモリ 7,864 KB
最終ジャッジ日時 2023-08-03 12:20:25
合計ジャッジ時間 2,774 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 269 ms
7,728 KB
testcase_01 AC 263 ms
7,820 KB
testcase_02 AC 269 ms
7,800 KB
testcase_03 AC 266 ms
7,828 KB
testcase_04 AC 268 ms
7,796 KB
testcase_05 AC 17 ms
7,820 KB
testcase_06 AC 16 ms
7,804 KB
testcase_07 AC 270 ms
7,784 KB
testcase_08 AC 16 ms
7,864 KB
権限があれば一括ダウンロードができます

ソースコード

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
		if g < 0 or w < 0:
				flag = False
	if g > 0 or ww > 0:
		flag = False
	if flag:
		print("possible")
	else:
		print("impossible")
0