結果
問題 | No.154 市バス |
ユーザー | Navier_Boltzmann |
提出日時 | 2023-01-21 17:49:40 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
AC
|
実行時間 | 530 ms / 2,000 ms |
コード長 | 1,080 bytes |
コンパイル時間 | 113 ms |
コンパイル使用メモリ | 12,928 KB |
実行使用メモリ | 11,136 KB |
最終ジャッジ日時 | 2024-06-24 00:55:50 |
合計ジャッジ時間 | 4,515 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 |
other | AC * 8 |
ソースコード
def answer(): S = list(input()) W = [int(i == 'W') for i in S] G = [int(i == 'G') for i in S] R = [int(i == 'R') for i in S] N = len(S) from itertools import accumulate SW = list(accumulate(W)) SG = list(accumulate(G)) SR = list(accumulate(R)) for i in range(N): if SW[i]>=SG[i]>=SR[i]: continue else: print('impossible') return if SG[-1] != SR[-1]: print('impossible') return LG = N LR = N for i in range(N-1,-1,-1): if S[i]=='R': LR = i break for i in range(N-1,-1,-1): if S[i]=='G': LG = i break if LR<LG: print('impossible') return if LR!=N-1: print('impossible') return if SR[-1]==0: print('impossible') return if SG[-1]==0: print('impossible') return if 'W' in S[LG:]: print('impossible') return print('possible') return for _ in range(int(input())): answer()