結果
問題 | No.154 市バス |
ユーザー | amtgjw |
提出日時 | 2018-06-06 10:31:31 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 960 bytes |
コンパイル時間 | 551 ms |
コンパイル使用メモリ | 65,244 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-30 10:13:40 |
合計ジャッジ時間 | 1,291 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 27 ms
5,248 KB |
testcase_01 | AC | 27 ms
5,376 KB |
testcase_02 | AC | 28 ms
5,376 KB |
testcase_03 | AC | 27 ms
5,376 KB |
testcase_04 | WA | - |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 1 ms
5,376 KB |
testcase_07 | AC | 24 ms
5,376 KB |
testcase_08 | AC | 1 ms
5,376 KB |
ソースコード
#include <iostream> #include <cstdio> #include <string> #include <vector> #include <cmath> #include <algorithm> using namespace std; #define REP(i,n) for(int i=0;i<(n);++i) #define REPS(i,s,t) for(int i=(s);i<(t);++i) #define PER(i,n) for(int i=0;i>(n);--i) #define PERS(i,s,t) for(int i=(s);i>(t);--i) #define INF 2000000007 #define MINF -200000007 #define MOD 17 // 2^20 #define MAX 100005 typedef unsigned int uint; typedef unsigned long long int ull; typedef long long int ll; //int dp[4912]; int main(){ int N;cin>>N; REP(i,N){ string str;cin>>str; bool flag = true; int cntw=0,cntr=0,cntg=0; PERS(j,str.size()-1,-1){ if(str[j]=='R'){cntr++;} else if(str[j]=='G'){cntg++;} else cntw++; if(cntr-cntg<0) {flag = false;break;} if((cntw&&!cntr) || (cntw&&!cntg)){flag=false;break;} } if(cntw < cntr || cntr-cntg!=0 || !cntr) flag = false; cout << (flag ? "possible\n" : "impossible\n") ; } return 0; }