結果
問題 | No.154 市バス |
ユーザー |
|
提出日時 | 2023-08-29 09:11:57 |
言語 | PyPy3 (7.3.15) |
結果 |
MLE
|
実行時間 | - |
コード長 | 669 bytes |
コンパイル時間 | 298 ms |
コンパイル使用メモリ | 82,344 KB |
実行使用メモリ | 74,984 KB |
最終ジャッジ日時 | 2024-12-30 23:08:18 |
合計ジャッジ時間 | 1,902 ms |
ジャッジサーバーID (参考情報) |
judge6 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | WA * 1 |
other | AC * 2 WA * 1 MLE * 5 |
ソースコード
T = int(input())for i in range(T):s = input()L = len(s)cnt = 0g = 0w = 0if s[0] != 'W':print('impossible')breakfor i in range(L-1, -1, -1):if s[i] == 'R':cnt += 1elif s[i] == 'G':cnt -= 1g += 1elif s[i] == 'W' :w += 1if g == 0:print('impossible')breakif cnt < 0:print('impossible')breakelse:if cnt == 0 and g <= w:print('possible')else:print('impossible')