結果
問題 | No.154 市バス |
ユーザー | yoma |
提出日時 | 2019-10-19 14:06:13 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,056 bytes |
コンパイル時間 | 1,518 ms |
コンパイル使用メモリ | 166,884 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-06-27 03:27:57 |
合計ジャッジ時間 | 2,297 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 29 ms
6,816 KB |
testcase_01 | AC | 28 ms
6,944 KB |
testcase_02 | AC | 28 ms
6,944 KB |
testcase_03 | AC | 28 ms
6,940 KB |
testcase_04 | AC | 29 ms
6,940 KB |
testcase_05 | WA | - |
testcase_06 | AC | 1 ms
6,940 KB |
testcase_07 | AC | 25 ms
6,944 KB |
testcase_08 | WA | - |
ソースコード
#include<bits/stdc++.h> #define EM 1000000 using namespace std; using LL = long long; using P = pair<LL, LL>; LL LINF = 1e18; int INF = 1e9; LL mod = 1e9+7; using vint = vector<int>; using vLL = vector<LL>; using vvint = vector<vector<int>>; using vvLL = vector<vector<LL>>; template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; } template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; } int main(){ int T; cin >> T; for(int i = 0;i < T;i++){ string s; cin >> s; bool ans = true; int w = 0, g = 0, r = 0; for(int j = 0;j < s.size();j++){ if(s[j] == 'W'){ w++; }else if(s[j] == 'G'){ g++; if(g > w) ans = false; }else{ r++; if(r > g) ans = false; } } if(r != g || g == 0) ans = false; if(ans) cout << "possible" << endl; else cout << "impossible" << endl; } }