結果

問題 No.154 市バス
ユーザー persimmon-persimmonpersimmon-persimmon
提出日時 2021-06-17 09:42:13
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 512 ms / 2,000 ms
コード長 597 bytes
コンパイル時間 86 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 18,816 KB
最終ジャッジ日時 2024-06-10 17:41:31
合計ジャッジ時間 3,933 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 512 ms
18,816 KB
testcase_01 AC 483 ms
18,560 KB
testcase_02 AC 494 ms
18,688 KB
testcase_03 AC 192 ms
18,688 KB
testcase_04 AC 475 ms
18,688 KB
testcase_05 AC 29 ms
10,752 KB
testcase_06 AC 31 ms
10,752 KB
testcase_07 AC 472 ms
18,560 KB
testcase_08 AC 31 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

t=int(input())
sary=[list(input()) for _ in range(t)]
from collections import Counter
for s in sary:
  cs=dict(Counter(s))
  if "W" not in cs or "G" not in cs or "R" not in cs:
    print("impossible")
    continue
  if cs["R"]!=cs["G"] or cs["R"]>cs["W"]:
    print("impossible")
    continue
  flg=True
  counter={"W":0,"G":0,"R":0}
  for x in s:
    counter[x]+=1
    if counter["W"]>=counter["G"]>=counter["R"]:
      pass
    else:
      flg=False
      break
    if counter["G"]==cs["G"] and x=="W":
      flg=False
      break
  if flg:
    print("possible")
  else:
    print("impossible")
0