結果

問題 No.154 市バス
ユーザー いたいた
提出日時 2024-12-29 13:49:48
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 377 bytes
コンパイル時間 408 ms
コンパイル使用メモリ 82,180 KB
実行使用メモリ 77,156 KB
最終ジャッジ日時 2024-12-29 13:49:50
合計ジャッジ時間 1,930 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 MLE -
testcase_01 MLE -
testcase_02 MLE -
testcase_03 MLE -
testcase_04 MLE -
testcase_05 AC 39 ms
52,024 KB
testcase_06 AC 41 ms
52,604 KB
testcase_07 MLE -
testcase_08 AC 40 ms
52,728 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T=int(input())


for i in range(T):
  w=g=r=0
  t=True
  S=list(input())
  for j in range(len(S)):
    if not w>=g>=r:
      print("impossible")
      t=False
      break
    if S[j]=="W":
      w+=1
      la=j
    if S[j]=="G":
      g+=1
      l=j
    if S[j]=="R":
      r+=1
  if t:
    if g==r and g>0 and l>la:
      print("possible")
    else:
      print("impossible")
0