結果
問題 | No.154 市バス |
ユーザー | 👑 CleyL |
提出日時 | 2020-02-05 20:23:25 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 712 bytes |
コンパイル時間 | 532 ms |
コンパイル使用メモリ | 67,196 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-09-22 22:21:00 |
合計ジャッジ時間 | 1,358 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 28 ms
6,816 KB |
testcase_01 | AC | 28 ms
6,940 KB |
testcase_02 | AC | 28 ms
6,940 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 1 ms
6,940 KB |
testcase_06 | AC | 2 ms
6,944 KB |
testcase_07 | AC | 25 ms
6,940 KB |
testcase_08 | WA | - |
ソースコード
#include <iostream> #include <algorithm> using namespace std; int main(){ int t;cin>>t; while(t--){ string s;cin>>s; reverse(s.begin(),s.end()); int nw = 0; bool ok = false; bool ans = true; for(int i = 0; s.size() > i; i++){ if(s[i] == 'R')nw++; else if(s[i] == 'G'){ nw--; ok = true; if(nw < 0){ ans = false; break; } }else{ if(!ok){ ans = false; break; } } } cout << (ans?"possible":"impossible") << endl; } }