# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
857273 | SalihSahin | Crtanje (COCI20_crtanje) | C++14 | 1 ms | 348 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>
#define int long long
using namespace std;
const int mod = 998244353;
int32_t main(){
cin.tie(0);
ios_base::sync_with_stdio(false);
int n;
cin>>n;
string s;
cin>>s;
vector<vector<char> > a(205, vector<char>(n, '.'));
int y = 102;
int mxf = 102, mnf = 102;
for(int i = 0; i < n; i++){
if(s[i] == '+'){
mnf = min(mnf, y);
mxf = max(mxf, y);
a[y][i] = '/';
y--;
}
else if(s[i] == '-'){
y++;
mnf = min(mnf, y);
mxf = max(mxf, y);
a[y][i] = 92;
}
else{
mnf = min(mnf, y);
mxf = max(mxf, y);
a[y][i] = '_';
}
}
for(int i = mnf; i <= mxf; i++){
for(int j = 0; j < n; j++){
//cout<<" gh "<<endl;
cout<<a[i][j];
}
cout<<endl;
}
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |