結果
問題 | No.154 市バス |
ユーザー | kotatsugame |
提出日時 | 2019-10-12 08:07:49 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 28 ms / 2,000 ms |
コード長 | 406 bytes |
コンパイル時間 | 753 ms |
コンパイル使用メモリ | 66,020 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-05-05 11:23:46 |
合計ジャッジ時間 | 1,763 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 28 ms
6,812 KB |
testcase_01 | AC | 25 ms
6,944 KB |
testcase_02 | AC | 24 ms
6,940 KB |
testcase_03 | AC | 25 ms
6,944 KB |
testcase_04 | AC | 25 ms
6,940 KB |
testcase_05 | AC | 1 ms
6,944 KB |
testcase_06 | AC | 2 ms
6,940 KB |
testcase_07 | AC | 21 ms
6,940 KB |
testcase_08 | AC | 2 ms
6,940 KB |
コンパイルメッセージ
main.cpp:5:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type] 5 | main() | ^~~~
ソースコード
#include<iostream> using namespace std; int N; string s; main() { cin>>N; for(;N--;) { cin>>s; int X=0,Y=0,Z=0; bool flag=true; for(int i=s.size();i--;) { if(s[i]=='R')X++; else if(s[i]=='G') { if(X>0)X--,Y++; else flag=false; } else { if(Y>0)Y--,Z=1; else if(Z==0)flag=false; } } if(X>0||Y>0)flag=false; cout<<(flag?"":"im")<<"possible"<<endl; } }