結果
問題 | No.154 市バス |
ユーザー | Iruyan_Zak |
提出日時 | 2016-06-19 15:31:16 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 764 bytes |
コンパイル時間 | 4,037 ms |
コンパイル使用メモリ | 213,732 KB |
実行使用メモリ | 13,632 KB |
最終ジャッジ日時 | 2024-10-13 08:30:46 |
合計ジャッジ時間 | 18,961 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1,930 ms
10,152 KB |
testcase_01 | AC | 1,887 ms
5,248 KB |
testcase_02 | AC | 1,898 ms
5,248 KB |
testcase_03 | AC | 1,894 ms
5,248 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 1 ms
5,248 KB |
testcase_07 | TLE | - |
testcase_08 | -- | - |
ソースコード
#include<iostream> #include<string> #include<regex> using namespace std; string solve(string str){ # define OK "possible" # define NG "impossible" regex re("^W+"); reverse(str.begin(), str.end()); while(!str.empty()){ if(str[0] != 'R') return NG; str.replace(0, 1, ""); int g_index = str.find("G"); if(g_index == -1) return NG; str.replace(g_index, 1, ""); int w_index = str.find("W"); if(w_index == -1) return NG; str.replace(w_index, 1, ""); str = regex_replace(str, re, "", regex_constants::format_first_only); } return OK; } int main(){ int n; cin >> n; for(int i=0; i<n; ++i){ string str; cin >> str; cout << solve(str) << endl; } }