結果
問題 | No.154 市バス |
ユーザー |
|
提出日時 | 2021-01-04 21:28:48 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 301 bytes |
コンパイル時間 | 259 ms |
コンパイル使用メモリ | 12,416 KB |
実行使用メモリ | 10,752 KB |
最終ジャッジ日時 | 2024-10-15 06:31:49 |
合計ジャッジ時間 | 1,721 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 |
other | AC * 7 WA * 1 |
ソースコード
n=int(input())a="impossible"for i in range(n):c=-2s=input()m=len(s)if m>2 and s[0]!='G':for i in range(1,m):t=s[-i:]if 'W' in t: breakif 'G' in t and 'R' in t: c+=2; breaks=s.replace('W','')for x in s:if x=='G':c+=1else:c-=1if c<0: breakprint(a[(c==0)*2:])