結果
問題 | No.154 市バス |
ユーザー | H20 |
提出日時 | 2022-02-13 02:26:38 |
言語 | PyPy3 (7.3.15) |
結果 |
MLE
|
実行時間 | - |
コード長 | 815 bytes |
コンパイル時間 | 166 ms |
コンパイル使用メモリ | 81,860 KB |
実行使用メモリ | 83,760 KB |
最終ジャッジ日時 | 2024-06-29 05:20:06 |
合計ジャッジ時間 | 10,529 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | MLE | - |
testcase_01 | MLE | - |
testcase_02 | MLE | - |
testcase_03 | MLE | - |
testcase_04 | MLE | - |
testcase_05 | WA | - |
testcase_06 | AC | 38 ms
51,968 KB |
testcase_07 | MLE | - |
testcase_08 | -- | - |
ソースコード
T = int(input()) for _ in range(T): S = list(input()) S = S[::-1] USE = [0]*len(S) f = True if S[0]=='R': for i in range(len(S)): if not f: break if S[i]=='R': USE[i]=1 for j in range(i,len(S)): if S[j]=='G' and USE[j]==0: USE[j]=1 for k in range(j,len(S)): if S[k]=='W' and USE[k]==0: USE[k]=1 break else: f = False else: f = False for i in range(len(S)): if USE[i]==0 and S[i]!='W': f=False if f: print('possible') else: print('impossible')