結果
| 問題 | No.154 市バス |
| コンテスト | |
| ユーザー |
convexineq
|
| 提出日時 | 2020-12-08 05:35:48 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
MLE
|
| 実行時間 | - |
| コード長 | 364 bytes |
| コンパイル時間 | 172 ms |
| コンパイル使用メモリ | 81,792 KB |
| 実行使用メモリ | 76,288 KB |
| 最終ジャッジ日時 | 2024-09-17 14:22:18 |
| 合計ジャッジ時間 | 1,536 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge6 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 1 |
| other | WA * 2 MLE * 6 |
ソースコード
t = int(input())
for _ in range(t):
s = input()
r = [0,0,0]
ok = 1
for i in s:
if i=="W":
r[0] += 1
if i=="G":
if r[1] >= r[0]: ok = 0
r[1] += 1
if i=="R":
if r[2] >= r[1]: ok = 0
r[2] += 1
if r[1] != r[2]: ok = 0
print("possible " if ok else "impossible")
convexineq