結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 311 ms
10,752 KB
testcase_01 AC 301 ms
10,752 KB
testcase_02 AC 300 ms
10,880 KB
testcase_03 AC 314 ms
10,624 KB
testcase_04 AC 304 ms
10,880 KB
testcase_05 AC 28 ms
10,752 KB
testcase_06 AC 29 ms
10,752 KB
testcase_07 AC 303 ms
10,752 KB
testcase_08 AC 28 ms
10,752 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