#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] == '+'){
a[y][i] = '/';
y--;
mnf = min(mnf, y);
}
else if(s[i] == '-'){
y++;
a[y][i] = 92;
mxf = max(mxf, y);
}
else{
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 |
1 |
Incorrect |
1 ms |
348 KB |
Output isn't correct |
2 |
Incorrect |
0 ms |
348 KB |
Output isn't correct |
3 |
Incorrect |
0 ms |
348 KB |
Output isn't correct |
4 |
Correct |
0 ms |
348 KB |
Output is correct |
5 |
Incorrect |
1 ms |
348 KB |
Output isn't correct |