結果
問題 | No.154 市バス |
ユーザー | Bantako |
提出日時 | 2018-06-04 20:51:15 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 968 bytes |
コンパイル時間 | 1,597 ms |
コンパイル使用メモリ | 167,620 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-06-30 09:45:51 |
合計ジャッジ時間 | 2,300 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 28 ms
6,812 KB |
testcase_01 | AC | 28 ms
6,940 KB |
testcase_02 | AC | 28 ms
6,940 KB |
testcase_03 | WA | - |
testcase_04 | AC | 27 ms
6,940 KB |
testcase_05 | WA | - |
testcase_06 | AC | 2 ms
6,940 KB |
testcase_07 | AC | 25 ms
6,944 KB |
testcase_08 | WA | - |
コンパイルメッセージ
main.cpp:7:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type] 7 | main(){ | ^~~~
ソースコード
#include<bits/stdc++.h> typedef long long ll; using namespace std; int INF = 1e9; int MOD = 1e9+7; main(){ int N; cin >> N; for(int i = 0;i < N;i++){ string S; cin >> S; //reverse(S.begin(),S.end()); int rcnt = 0,gcnt = 0,wcnt = 0; bool ng = 0; for(char c:S){ if(c == 'R')rcnt++; if(c == 'G')gcnt++; if(c == 'W')wcnt++; //GR列が対応してない if(gcnt < rcnt){ng = 1;break;} //全ての'G'に対して'W'が一つ以上ない if(gcnt > wcnt){ng = 1;break;} //if(c == 'W' && (rcnt == 0 || gcnt == 0)){ng = 1;break;} } //最後の{G,R}の後ろにWが存在する for(int i = S.size() - 1;i >= 0;i--){ if(S[i] == 'W'){ng = 1;break;} if(S[i] == 'R')break; } if(ng)cout << "impossible" << endl; else cout << "possible" << endl; } }