結果
問題 | No.154 市バス |
ユーザー |
![]() |
提出日時 | 2019-12-24 18:40:13 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 962 bytes |
コンパイル時間 | 253 ms |
コンパイル使用メモリ | 12,800 KB |
実行使用メモリ | 11,008 KB |
最終ジャッジ日時 | 2024-09-22 08:06:47 |
合計ジャッジ時間 | 1,679 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 |
other | AC * 7 WA * 1 |
ソースコード
from collections import * from heapq import * import sys sys.setrecursionlimit(10 ** 6) int1 = lambda x: int(x) - 1 p2D = lambda x: print(*x, sep="\n") def II(): return int(sys.stdin.readline()) def MI(): return map(int, sys.stdin.readline().split()) def MF(): return map(float, sys.stdin.readline().split()) def LI(): return list(map(int, sys.stdin.readline().split())) def LF(): return list(map(float, sys.stdin.readline().split())) def LLI(rows_number): return [LI() for _ in range(rows_number)] def ok(s): cw = cg = cr = 0 if s[0]!="W" or s[-1]!="R":return False for c in s[::-1]: if c=="R": cr+=1 if c=="G": cg+=1 if cg>cr:return False if c=="W": cw+=1 if cg==0:return False if cr!=cg:return False return True def main(): t=II() for _ in range(t): s=input() if ok(s):print("possible") else:print("impossible") main()