結果
問題 |
No.154 市バス
|
ユーザー |
![]() |
提出日時 | 2018-10-31 02:11:42 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 488 bytes |
コンパイル時間 | 206 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 10,880 KB |
最終ジャッジ日時 | 2024-11-19 11:16:39 |
合計ジャッジ時間 | 2,653 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 |
other | AC * 6 WA * 2 |
ソースコード
for _ in range(int(input())): r, g = 0, 0 S = input() for c in S[::-1]: if c == 'R': r += 1 if c == 'G': if r > 0: g += 1 else: print('impossible') break if c == 'W': if g == 0: print('impossible') break else: if r == g and S[0] == 'W': print('possible') else: print('impossible')