結果
問題 | No.154 市バス |
ユーザー | いた |
提出日時 | 2024-12-29 13:49:32 |
言語 | PyPy3 (7.3.15) |
結果 |
MLE
|
実行時間 | - |
コード長 | 408 bytes |
コンパイル時間 | 830 ms |
コンパイル使用メモリ | 81,664 KB |
実行使用メモリ | 79,488 KB |
最終ジャッジ日時 | 2024-12-29 13:49:37 |
合計ジャッジ時間 | 2,793 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | MLE | - |
testcase_01 | MLE | - |
testcase_02 | MLE | - |
testcase_03 | MLE | - |
testcase_04 | MLE | - |
testcase_05 | MLE | - |
testcase_06 | MLE | - |
testcase_07 | MLE | - |
testcase_08 | MLE | - |
ソースコード
from logging import lastResort T=int(input()) for i in range(T): w=g=r=0 t=True S=list(input()) for j in range(len(S)): if not w>=g>=r: print("impossible") t=False break if S[j]=="W": w+=1 la=j if S[j]=="G": g+=1 l=j if S[j]=="R": r+=1 if t: if g==r and g>0 and l>la: print("possible") else: print("impossible")