| # | Time | Username | Problem | Language | Result | Execution time | Memory |
|---|---|---|---|---|---|---|---|
| 1094118 | MattNattFeczan | Tracks in the Snow (BOI13_tracks) | C++14 | 252 ms | 15960 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include<bits/stdc++.h>
using namespace std;
int main(){
int n,m;
cin>>n>>m;
bool r=0, f=0;
for(int i=0;i<n;i++){
string s;
cin>>s;
for(auto& elm : s){
if(elm == 'R')
r = true;
else if(elm == 'F')
f = true;
}
}
int w = r+f;
cout<<w;
}
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
