結果
問題 | No.154 市バス |
ユーザー | mamekin |
提出日時 | 2015-02-18 19:32:33 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,015 bytes |
コンパイル時間 | 728 ms |
コンパイル使用メモリ | 90,652 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-13 06:55:21 |
合計ジャッジ時間 | 1,466 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 25 ms
5,248 KB |
testcase_01 | AC | 25 ms
5,248 KB |
testcase_02 | AC | 24 ms
5,248 KB |
testcase_03 | AC | 23 ms
5,248 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 2 ms
5,248 KB |
testcase_07 | AC | 21 ms
5,248 KB |
testcase_08 | WA | - |
ソースコード
#include <cstdio> #include <iostream> #include <sstream> #include <fstream> #include <iomanip> #include <algorithm> #include <cmath> #include <string> #include <vector> #include <list> #include <queue> #include <stack> #include <set> #include <map> #include <bitset> #include <numeric> #include <limits> #include <climits> #include <cfloat> #include <functional> using namespace std; bool solve(const string& s) { int n = s.size(); if(s == string(n, 'W')) return false; int cnt = 0; for(int i=0; i<n; ++i){ if(s[i] == 'G'){ ++ cnt; } else if(s[i] == 'R'){ -- cnt; if(cnt < 0) return false; } } if(cnt == 0) return true; else return false; } int main() { int t; cin >> t; while(--t >= 0){ string s; cin >> s; if(solve(s)) cout << "possible" << endl; else cout << "impossible" << endl; } return 0; }