結果
問題 | No.154 市バス |
ユーザー | trineutron |
提出日時 | 2020-04-11 14:43:16 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 639 bytes |
コンパイル時間 | 2,067 ms |
コンパイル使用メモリ | 199,816 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-09-19 01:46:54 |
合計ジャッジ時間 | 3,071 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 28 ms
5,248 KB |
testcase_01 | AC | 28 ms
5,376 KB |
testcase_02 | AC | 27 ms
5,376 KB |
testcase_03 | AC | 27 ms
5,376 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 25 ms
5,376 KB |
testcase_08 | WA | - |
ソースコード
#include <bits/stdc++.h> using namespace std; int main() { int t; cin >> t; for (int i = 0; i < t; i++) { string s; cin >> s; reverse(s.begin(), s.end()); bool ok = true; int r = 0; for (char c : s) { if (c == 'R') { r++; } else if (c == 'G') { r--; if (r < 0) { ok = false; break; } } } if (r) ok = false; if (ok) { puts("possible"); } else { puts("impossible"); } } }