結果
問題 | No.154 市バス |
ユーザー |
👑 |
提出日時 | 2022-07-02 19:50:39 |
言語 | PyPy3 (7.3.15) |
結果 |
MLE
|
実行時間 | - |
コード長 | 494 bytes |
コンパイル時間 | 151 ms |
コンパイル使用メモリ | 82,404 KB |
実行使用メモリ | 75,968 KB |
最終ジャッジ日時 | 2024-11-27 16:42:15 |
合計ジャッジ時間 | 1,570 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | WA * 1 |
other | AC * 1 WA * 1 MLE * 6 |
ソースコード
def solve():S = input()flg = Falsecnt = 0for s in S[::-1]:if s == "W":if not flg:print("impossible")returnelif s == "R":cnt += 1flg = Trueelse:cnt -= 1if cnt < 0:print("impossible")returnif S[0] != "W":print("impossible")else:print("possible")for _ in range(int(input())):solve()