結果
問題 | No.154 市バス |
ユーザー | fura |
提出日時 | 2020-05-12 01:43:27 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 627 bytes |
コンパイル時間 | 1,838 ms |
コンパイル使用メモリ | 202,740 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-19 13:06:05 |
合計ジャッジ時間 | 4,139 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 147 ms
5,248 KB |
testcase_01 | AC | 146 ms
5,376 KB |
testcase_02 | AC | 155 ms
5,376 KB |
testcase_03 | AC | 154 ms
5,376 KB |
testcase_04 | WA | - |
testcase_05 | AC | 1 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 420 ms
5,376 KB |
testcase_08 | WA | - |
ソースコード
#include <bits/stdc++.h> #define rep(i,n) for(int i=0;i<(n);i++) using namespace std; void solve(){ string s; cin>>s; while(!s.empty()){ int n=s.length(); if(s[n-1]!='R'){ puts("impossible"); return; } vector<bool> del(n); del[n-1]=true; int phase=0; for(int i=n-2;i>=0;i--){ if(phase==0 && s[i]=='G'){ del[i]=true; phase=1; } else if(phase==1 && s[i]=='W'){ del[i]=true; } } if(phase==0){ puts("impossible"); return; } string t; rep(i,n) if(!del[i]) t+=s[i]; s=t; } puts("possible"); } int main(){ int q; scanf("%d",&q); rep(_,q) solve(); return 0; }