diff --git a/1742C Stripes/1742C.cpp b/1742C Stripes/1742C.cpp new file mode 100644 index 0000000..f17fe2a --- /dev/null +++ b/1742C Stripes/1742C.cpp @@ -0,0 +1,28 @@ +#include +using namespace std; +using ll = long long; + +void solve() +{ + bool red=false; + for(int i=0; i<8; ++i) + { + string s; + cin>>s; + if(s=="RRRRRRRR") red=true; + } + if(red) cout<<"R"<> TC; + cin.ignore(); + while (TC--) + solve(); +} \ No newline at end of file