#include<bits/stdc++.h>
#define ll long long
#define f first
#define s second
#define pb push_back
using namespace std;
ll n;
char a[205][250];
string s;
int main(){
ios::sync_with_stdio(false);
cin >> n;
ll mx = 0,mn = 0, x = 0;
cin >> s;
for(int i=0; i<n; i++){
if(s[i] == '+'){
x++;
}
if(s[i] == '-')x--;
mx = max(mx , x);
mn = min(mn , x);
}
x = 0;
for(int i=0; i<=200; i++)
for(int j=0; j<=200; j++)
a[i][j] = '.';
for(int i=0; i<n; i++){
if(s[i] == '+'){
a[x - mn][i] = '/';
x++;
}
if(s[i] == '-'){
x--;
a[x - mn][i] = char(92);
}
if(s[i] == '=')
a[x - mn][i] = '_';
}
for(int i=(mx - mn)-1; i>=0; i--){
for(int j=0; j<n; j++)
cout << a[i][j];
cout << '\n';
}
return 0;
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
364 KB |
Output is correct |
2 |
Correct |
1 ms |
364 KB |
Output is correct |
3 |
Correct |
1 ms |
364 KB |
Output is correct |
4 |
Incorrect |
1 ms |
364 KB |
Output isn't correct |
5 |
Correct |
1 ms |
364 KB |
Output is correct |