結果
問題 | No.154 市バス |
ユーザー | cureskol |
提出日時 | 2020-04-09 11:05:40 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 470 bytes |
コンパイル時間 | 1,460 ms |
コンパイル使用メモリ | 168,304 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-22 06:42:15 |
合計ジャッジ時間 | 2,473 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 28 ms
6,812 KB |
testcase_01 | AC | 29 ms
6,944 KB |
testcase_02 | AC | 28 ms
6,940 KB |
testcase_03 | AC | 28 ms
6,940 KB |
testcase_04 | AC | 29 ms
6,940 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 24 ms
6,944 KB |
testcase_08 | WA | - |
ソースコード
#include <bits/stdc++.h> using namespace std; template<typename T> void chmax(T &a,T b){ if(a<b)a=b; } signed main(){ int n;cin>>n; while(n--){ bool out=false; string s;cin>>s; reverse(s.begin(),s.end()); int r=0,b=0; for(auto p:s){ if(p=='R')r++; if(p=='G'){ r--; chmax(b,0);b++; if(r<0)out=1; } if(p=='W')b--; } if(r||(b>0))out=1; cout<<(out?"impossible":"possible")<<endl; } }