結果
問題 | No.154 市バス |
ユーザー | nebukuro09 |
提出日時 | 2016-10-05 10:29:28 |
言語 | Python2 (2.7.18) |
結果 |
WA
|
実行時間 | - |
コード長 | 652 bytes |
コンパイル時間 | 294 ms |
コンパイル使用メモリ | 6,948 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-10-13 08:44:37 |
合計ジャッジ時間 | 1,617 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 126 ms
6,816 KB |
testcase_01 | AC | 126 ms
6,820 KB |
testcase_02 | AC | 128 ms
6,820 KB |
testcase_03 | AC | 51 ms
6,816 KB |
testcase_04 | WA | - |
testcase_05 | AC | 10 ms
6,820 KB |
testcase_06 | AC | 12 ms
6,820 KB |
testcase_07 | AC | 149 ms
6,816 KB |
testcase_08 | AC | 9 ms
6,816 KB |
ソースコード
def solve(s): numG, numR = s.count('G'), s.count('R') if numG != numR or numG == 0: return False W, G, R = 0, 0, 0 for light in s: if light == 'R': R += 1 elif light == 'G': G += 1 else: W += 1 if (R == 0 or G == 0) and W > 0: return False if G > R: return False if G == numG and R == numR and W >= numG: return True if G == numG and R == numR and W >= numG: return True else: return False for t in xrange(input()): print 'possible' if solve(raw_input()[::-1]) else 'impossible'