結果
問題 | No.154 市バス |
ユーザー | tikitaka1201 |
提出日時 | 2020-09-16 20:59:52 |
言語 | PyPy3 (7.3.15) |
結果 |
MLE
|
実行時間 | - |
コード長 | 446 bytes |
コンパイル時間 | 292 ms |
コンパイル使用メモリ | 82,108 KB |
実行使用メモリ | 77,068 KB |
最終ジャッジ日時 | 2024-06-22 03:35:51 |
合計ジャッジ時間 | 2,010 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | MLE | - |
testcase_01 | MLE | - |
testcase_02 | MLE | - |
testcase_03 | MLE | - |
testcase_04 | MLE | - |
testcase_05 | WA | - |
testcase_06 | AC | 36 ms
53,504 KB |
testcase_07 | MLE | - |
testcase_08 | WA | - |
ソースコード
t=int(input()) for _ in range(t): flg=True s=list(input()) n=len(s) w=0 g=0 r=0 for i in range(n): if s[i]=='W': w+=1 elif s[i]=='G': g+=1 w-=1 elif s[i]=='R': r+=1 g-=1 if w<0 or g<0: flg=False break if flg==False or r==0 or g>0 or s[-1]=='W': print('impossible') else: print('possible')