結果
問題 | No.154 市バス |
ユーザー | Hachimori |
提出日時 | 2015-02-18 00:12:02 |
言語 | Python2 (2.7.18) |
結果 |
WA
|
実行時間 | - |
コード長 | 448 bytes |
コンパイル時間 | 73 ms |
コンパイル使用メモリ | 6,656 KB |
実行使用メモリ | 6,400 KB |
最終ジャッジ日時 | 2024-10-13 06:35:58 |
合計ジャッジ時間 | 2,884 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 287 ms
6,272 KB |
testcase_01 | AC | 286 ms
6,144 KB |
testcase_02 | AC | 285 ms
6,400 KB |
testcase_03 | AC | 209 ms
6,144 KB |
testcase_04 | AC | 272 ms
6,272 KB |
testcase_05 | WA | - |
testcase_06 | AC | 10 ms
6,272 KB |
testcase_07 | AC | 298 ms
6,144 KB |
testcase_08 | WA | - |
ソースコード
#!/usr/bin/env python #coding:utf8 def read(): return raw_input() def work(s): chList = "WGR" val = [0, 0, 0] for ch in s: val[chList.find(ch)] += 1 if not (val[0] >= val[1] >= val[2]): print "impossible" return print "possible" if val[0] >= val[1] and val[1] == val[2] and val[2] > 0 else "impossible" if __name__ == "__main__": for i in range(input()): work(read())