結果
問題 | No.154 市バス |
ユーザー | ntuda |
提出日時 | 2024-01-03 21:32:33 |
言語 | PyPy3 (7.3.15) |
結果 |
MLE
|
実行時間 | - |
コード長 | 355 bytes |
コンパイル時間 | 168 ms |
コンパイル使用メモリ | 82,168 KB |
実行使用メモリ | 76,404 KB |
最終ジャッジ日時 | 2024-09-27 18:28:21 |
合計ジャッジ時間 | 1,849 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | MLE | - |
testcase_01 | MLE | - |
testcase_02 | MLE | - |
testcase_03 | MLE | - |
testcase_04 | MLE | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | MLE | - |
testcase_08 | WA | - |
ソースコード
dic = {"G": 0, "R": 1, "W": 2} for _ in range(int(input())): S = input() X = [0, 0] for s in S: if dic[s] < 2: X[dic[s]] += 1 if X[1] > X[0]: print("impossible") break else: if X[0] == X[1]: print("possible") else: print("impossible")