結果
問題 | No.154 市バス |
ユーザー | steek79 |
提出日時 | 2015-10-14 16:00:43 |
言語 | Python2 (2.7.18) |
結果 |
WA
|
実行時間 | - |
コード長 | 841 bytes |
コンパイル時間 | 397 ms |
コンパイル使用メモリ | 7,072 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-10-13 07:42:33 |
合計ジャッジ時間 | 1,220 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 10 ms
6,400 KB |
testcase_07 | WA | - |
testcase_08 | AC | 11 ms
6,400 KB |
ソースコード
def check(str): if str.count('R') != str.count('G'): return 'impossible' elif str.count('W') < str.count('R'): return 'impossible' elif str.count('W') * str.count('R') * str.count('G') == 0: return 'impossible' else: coming_green = False coming_red = 0 for s in str: if s == 'W': coming_green = True elif s == 'G': if coming_green == False: return 'impossible' else: coming_green = False coming_red += 1 elif s == 'R': if coming_red < 1: return 'impossible' else: coming_red -= -1 return 'possible' T = input() for t in range(T): print check(raw_input())