結果
問題 | No.154 市バス |
ユーザー | 0w1 |
提出日時 | 2016-11-21 00:15:58 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 512 bytes |
コンパイル時間 | 1,534 ms |
コンパイル使用メモリ | 166,996 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-13 08:47:27 |
合計ジャッジ時間 | 2,318 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | AC | 2 ms
5,248 KB |
testcase_07 | AC | 24 ms
5,248 KB |
testcase_08 | WA | - |
ソースコード
#include <bits/stdc++.h> using namespace std; const string msg[] = { "impossible", "possible" }; signed main(){ int T; cin >> T; for( int i = 0; i < T; ++i ){ int ng = 0; string S; cin >> S; int w = 0, g = 0, r = 0; for( int j = S.size() - 1; j >= 0; --j ){ if( S[ j ] == 'R' ) ++r; if( S[ j ] == 'G' ){ if( --r < 0 ) ng = 1; ++g; } if( S[ j ] == 'W' ){ if( --g < 0 ) ng = 1; } } cout << msg[ not ng ] << endl; } return 0; }