-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path1774A.cpp
37 lines (33 loc) · 892 Bytes
/
1774A.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
//<<<<<<<<<<<<<Tushars_07>>>>>>>>>>>>>>>>
#include<bits/stdc++.h>
using namespace std;
#define lli long long int
#define ll long long
#define no cout<<"NO \n";
#define yes cout<<"YES \n";
#define test lli trtyuio ; cin>>trtyuio; while(trtyuio--)
int main(){
ios_base::sync_with_stdio(false);
cin.tie(NULL);
test{
int n ,i=0;
cin >> n ;
string str ;
cin >> str ;
int counter = 1 ;
if(str[0]=='1') counter++ ;
for( i = 1 ; i<n ; i++){
if(str[i]=='1'){
if(counter%2==1)
cout<<"-";
else
cout<<"+";
counter++ ;
}
else cout<<"+";
}
cout<<endl;
}
return 0;
}
//<<<<<<<<<<Tushars_07>>>>>>>>>>>>>>>>