結果
問題 | No.154 市バス |
ユーザー | mocobt |
提出日時 | 2018-06-09 18:58:26 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 976 bytes |
コンパイル時間 | 664 ms |
コンパイル使用メモリ | 74,036 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-30 12:58:15 |
合計ジャッジ時間 | 1,709 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 28 ms
6,812 KB |
testcase_01 | AC | 28 ms
6,940 KB |
testcase_02 | AC | 28 ms
6,944 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 25 ms
6,940 KB |
testcase_08 | WA | - |
ソースコード
#include <cstdio> #include <iostream> #include <queue> #include <string> using namespace std; auto T=0; queue<int> que; void input(){ scanf("%d", &T); } void solve(){ for(int i=0; i<T; i++){ string s; cin >> s; while(!que.empty()){ que.pop(); } int length = s.length(); bool possible = true; for(int j=0;j<length;j++){ switch(s[j]){ case 'G': que.push(1); break; case 'R': if(que.empty()){ possible = false; break; } que.pop(); } if(!possible) break; } if(!que.empty()) possible = false; if(possible){ printf("possible\n"); }else{ printf("Impossible\n"); } } } int main(){ input(); solve(); }