結果
問題 | No.154 市バス |
ユーザー | aaaaaaiu |
提出日時 | 2019-08-24 20:36:06 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 33 ms / 2,000 ms |
コード長 | 579 bytes |
コンパイル時間 | 2,569 ms |
コンパイル使用メモリ | 192,576 KB |
最終ジャッジ日時 | 2025-01-07 14:51:45 |
ジャッジサーバーID (参考情報) |
judge5 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 |
other | AC * 8 |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:23:21: warning: ‘l’ may be used uninitialized [-Wmaybe-uninitialized] 23 | if (!f||g!=r||l!='G') { | ~~~~~~~~^~~~~~~~ main.cpp:13:14: note: ‘l’ was declared here 13 | char l; | ^
ソースコード
#include <bits/stdc++.h> using namespace std; typedef long long ll; int main() { int t; cin>>t; while (t--) { string s; cin>>s; int w=0,g=0,r=0; bool f=true; char l; for (char c:s) { if (c=='W') w++,l=c; else if (c=='G') g++,l=c; else r++; if (w<g||g<r) { f=false; break; } } if (!f||g!=r||l!='G') { puts("impossible"); } else { puts("possible"); } } return 0; }