QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#339437#4212. Bracketshos_lyricAC ✓46ms10748kbC++143.7kb2024-02-27 12:18:502024-02-27 12:18:51

Judging History

你现在查看的是最新测评结果

  • [2024-02-27 12:18:51]
  • 评测
  • 测评结果:AC
  • 用时:46ms
  • 内存:10748kb
  • [2024-02-27 12:18:50]
  • 提交

answer

#include <cassert>
#include <cmath>
#include <cstdint>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <algorithm>
#include <bitset>
#include <complex>
#include <deque>
#include <functional>
#include <iostream>
#include <limits>
#include <map>
#include <numeric>
#include <queue>
#include <random>
#include <set>
#include <sstream>
#include <string>
#include <unordered_map>
#include <unordered_set>
#include <utility>
#include <vector>

using namespace std;

using Int = long long;

template <class T1, class T2> ostream &operator<<(ostream &os, const pair<T1, T2> &a) { return os << "(" << a.first << ", " << a.second << ")"; };
template <class T> ostream &operator<<(ostream &os, const vector<T> &as) { const int sz = as.size(); os << "["; for (int i = 0; i < sz; ++i) { if (i >= 256) { os << ", ..."; break; } if (i > 0) { os << ", "; } os << as[i]; } return os << "]"; }
template <class T> void pv(T a, T b) { for (T i = a; i != b; ++i) cerr << *i << " "; cerr << endl; }
template <class T> bool chmin(T &t, const T &f) { if (t > f) { t = f; return true; } return false; }
template <class T> bool chmax(T &t, const T &f) { if (t < f) { t = f; return true; } return false; }
#define COLOR(s) ("\x1b[" s "m")


/*
  greedy: lex min s.t. OK from tail
    set x[i] = x[mate[i]] = +
    when every suffix sum can be <= 0
      undecided: -
  
  answer exists but greedy fails?
    x: answer
    x[i] = x[mate[i]] = -
    \exists j s.t. i < j < mate[j] && x[j] = x[mate[j]] = +
    x'[i] = x'[mate[i]] = +, x[j] = x[mate[j]] = -: better answer?
    take j with max mate[j]
    - if mate[i] < mate[j]:
        OK
    - otherwise
        i < j < mate[j] < mate[i]
        want: mate[j] < k <= mate[i] ==> sum(x'[k, 2N)) <= 0
        guaranteed by greedy (nothing undecided in [k, 2N))
  
  manage: balanced - balanced - ... - balanced
*/

// unite balanced interval
vector<int> uf, rs;
int root(int u) {
  return (uf[u] < 0) ? u : (uf[u] = root(uf[u]));
}
bool connect(int u, int v) {
  u = root(u);
  v = root(v);
  if (u == v) return false;
  if (uf[u] > uf[v]) swap(u, v);
  uf[u] += uf[v];
  uf[v] = u;
  chmax(rs[u], rs[v]);
  return true;
}
int R(int u) {
  return rs[root(u)];
}

int N;
vector<int> P;

int main() {
  for (; ~scanf("%d", &N); ) {
    P.resize(2*N);
    for (int i = 0; i < 2*N; ++i) {
      scanf("%d", &P[i]);
      --P[i];
    }
    
    vector<int> mate(2*N, -1);
    vector<int> app(N, -1);
    for (int i = 0; i < 2*N; ++i) {
      if (~app[P[i]]) {
        const int j = app[P[i]];
        mate[j] = i;
        mate[i] = j;
      } else {
        app[P[i]] = i;
      }
    }
// cerr<<"mate = "<<mate<<endl;
    
    // unite balanced interval
    uf.assign(2*N + 1, -1);
    rs.resize(2*N + 1);
    for (int i = 0; i <= 2*N; ++i) rs[i] = i;
    
    int cnt = 0;
    string ans(2*N, ')');
    for (int i = 0; i < 2*N; ++i) if (i < mate[i]) {
      // height -4 at i, -2 at mate[i]
      {
        int u = R(mate[i]);
        if (u == 2*N) continue;
        if ((u = R(u + 1)) == 2*N) continue;
      }
      {
        int u = R(i);
        if (u == 2*N) continue;
        if ((u = R(u + 1)) == 2*N) continue;
        if ((u = R(u + 1)) == 2*N) continue;
        if ((u = R(u + 1)) == 2*N) continue;
      }
      cnt += 2;
      ans[i] = ans[mate[i]] = '(';
      connect(mate[i], R(mate[i]) + 1);
      connect(mate[i], R(mate[i]) + 1);
      connect(i, R(i) + 1);
      connect(i, R(i) + 1);
// cerr<<i<<": ";for(int j=0;j<=2*N;++j)cerr<<R(j)<<" ";cerr<<endl;
    }
// cerr<<"ans = "<<ans<<endl;
    puts((cnt == N) ? ans.c_str() : "(");
  }
  return 0;
}

这程序好像有点Bug,我给组数据试试?

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 100
Accepted
time: 0ms
memory: 3676kb

input:

2
1 2 1 2

output:

()()

result:

ok single line: '()()'

Test #2:

score: 0
Accepted
time: 1ms
memory: 3672kb

input:

1
1 1

output:

(

result:

ok single line: '('

Test #3:

score: 0
Accepted
time: 1ms
memory: 3660kb

input:

4
4 3 1 2 3 2 1 4

output:

(

result:

ok single line: '('

Test #4:

score: 0
Accepted
time: 0ms
memory: 3928kb

input:

4
3 1 2 1 4 3 2 4

output:

(()()())

result:

ok single line: '(()()())'

Test #5:

score: 0
Accepted
time: 1ms
memory: 3572kb

input:

4
2 4 3 1 3 4 2 1

output:

()()()()

result:

ok single line: '()()()()'

Test #6:

score: 0
Accepted
time: 0ms
memory: 3596kb

input:

4
4 4 3 3 1 2 1 2

output:

(((())))

result:

ok single line: '(((())))'

Test #7:

score: 0
Accepted
time: 0ms
memory: 3640kb

input:

4
1 3 1 2 4 4 2 3

output:

()(())()

result:

ok single line: '()(())()'

Test #8:

score: 0
Accepted
time: 1ms
memory: 3640kb

input:

11
3 9 10 5 4 7 7 8 11 9 5 3 6 1 2 11 10 6 1 2 4 8

output:

(

result:

ok single line: '('

Test #9:

score: 0
Accepted
time: 0ms
memory: 3608kb

input:

20
16 3 16 6 5 6 19 11 15 10 14 18 20 18 8 7 13 1 7 3 8 2 9 17 9 19 12 14 4 2 15 4 11 1 13 5 20 17 10 12

output:

(((((((((((()()))))()))))()())()())())()

result:

ok single line: '(((((((((((()()))))()))))()())()())())()'

Test #10:

score: 0
Accepted
time: 1ms
memory: 3648kb

input:

12
10 3 2 5 7 4 9 12 12 4 11 2 8 1 6 1 10 8 9 11 7 3 6 5

output:

((()((())()())))()()(())

result:

ok single line: '((()((())()())))()()(())'

Test #11:

score: 0
Accepted
time: 1ms
memory: 3924kb

input:

11
5 8 7 6 4 2 9 7 3 11 10 8 10 6 11 5 1 9 2 4 3 1

output:

(

result:

ok single line: '('

Test #12:

score: 0
Accepted
time: 0ms
memory: 3596kb

input:

12
10 7 1 8 6 2 10 5 9 3 4 4 6 2 1 12 11 5 7 12 11 9 8 3

output:

((((((()))))((()))()))()

result:

ok single line: '((((((()))))((()))()))()'

Test #13:

score: 0
Accepted
time: 1ms
memory: 3656kb

input:

16
14 4 7 10 15 2 3 5 11 16 12 6 6 11 8 13 14 7 15 4 16 2 3 5 10 8 12 1 9 13 1 9

output:

(((((((())))))))(((()(((()))))))

result:

ok single line: '(((((((())))))))(((()(((()))))))'

Test #14:

score: 0
Accepted
time: 0ms
memory: 3660kb

input:

42
9 21 32 32 26 31 29 21 20 30 4 9 38 27 25 7 25 22 12 11 28 40 34 2 41 14 5 26 14 3 31 39 17 13 42 15 23 12 17 19 8 34 16 37 22 35 3 24 38 10 42 18 11 5 28 29 4 23 20 27 10 7 33 36 35 2 1 36 8 15 37 18 39 24 6 19 13 33 6 41 1 16 40 30

output:

((((((((()(((((((((((((((()(()())))))()))())()))()))()((()(()()))()))))))))))))())()

result:

ok single line: '((((((((()(((((((((((((((()(()...)((()(()()))()))))))))))))())()'

Test #15:

score: 0
Accepted
time: 0ms
memory: 3632kb

input:

34
34 28 30 31 14 7 4 10 26 20 30 10 25 17 3 24 13 33 27 32 21 19 6 11 13 26 11 5 25 18 3 6 15 21 15 2 19 12 28 20 22 2 14 29 18 23 1 7 16 22 29 31 16 12 5 24 8 32 9 23 8 33 4 9 1 27 34 17

output:

((((((((((((()(((()(()))(())()())())))(())())))()))()))()()))(()))()

result:

ok single line: '((((((((((((()(((()(()))(())()...)(())())))()))()))()()))(()))()'

Test #16:

score: 0
Accepted
time: 0ms
memory: 3636kb

input:

24
21 17 14 4 11 24 21 19 5 6 7 16 20 2 18 19 23 20 23 6 22 5 12 8 22 9 10 12 9 24 16 10 13 1 15 14 18 1 7 2 15 3 8 13 17 11 3 4

output:

((()(((((((((()()()()()))))))(())))())(())))(())

result:

ok single line: '((()(((((((((()()()()()))))))(())))())(())))(())'

Test #17:

score: 0
Accepted
time: 0ms
memory: 3608kb

input:

27
23 13 13 2 16 24 9 11 21 17 20 23 2 8 5 11 10 15 6 27 10 26 14 21 25 25 17 1 3 18 14 16 12 20 18 7 24 12 22 26 27 4 8 3 4 15 9 6 5 1 19 7 19 22

output:

(

result:

ok single line: '('

Test #18:

score: 0
Accepted
time: 0ms
memory: 3944kb

input:

20
3 19 13 18 17 20 17 2 7 4 8 1 11 18 13 16 20 19 4 11 3 8 6 9 7 5 12 9 6 1 14 5 2 10 16 12 14 15 10 15

output:

((((((((((())(()((()(())()))))))()))))))

result:

ok single line: '((((((((((())(()((()(())()))))))()))))))'

Test #19:

score: 0
Accepted
time: 0ms
memory: 3860kb

input:

43
27 6 31 7 3 12 10 26 9 33 23 17 32 39 26 23 13 42 15 2 17 22 27 8 14 40 42 6 18 4 36 20 32 12 30 35 38 29 18 20 37 5 28 41 34 4 2 24 28 16 1 41 25 11 31 19 37 33 10 9 30 24 5 38 36 16 43 14 8 15 34 43 21 39 29 13 3 25 7 1 19 22 35 21 40 11

output:

(

result:

ok single line: '('

Test #20:

score: 0
Accepted
time: 0ms
memory: 3904kb

input:

20
9 15 8 19 15 20 17 1 11 16 3 18 9 7 12 8 17 20 4 13 4 6 14 14 10 19 10 12 18 2 11 3 13 1 6 5 7 16 5 2

output:

((((((((((()())((()))))))())))(()()))())

result:

ok single line: '((((((((((()())((()))))))())))(()()))())'

Test #21:

score: 0
Accepted
time: 0ms
memory: 3720kb

input:

22
6 7 1 3 16 18 19 4 9 12 18 11 13 14 2 11 8 3 15 17 1 22 9 5 15 12 22 7 10 16 20 10 21 13 5 8 20 2 14 6 21 4 17 19

output:

(((((()(((((())()())()())()()()))()))))()())

result:

ok single line: '(((((()(((((())()())()())()()()))()))))()())'

Test #22:

score: 0
Accepted
time: 0ms
memory: 3580kb

input:

96
35 31 19 20 24 50 85 28 68 52 37 39 91 71 63 80 25 22 53 58 61 44 86 76 88 30 1 47 49 48 14 87 2 75 6 81 17 27 54 94 50 46 16 56 2 83 8 34 9 91 15 96 5 13 23 63 53 40 58 72 7 17 36 4 48 87 96 64 5 85 77 79 51 7 23 78 73 26 38 37 35 65 26 14 82 45 11 86 62 31 38 60 36 89 71 89 10 59 67 55 18 33 13...

output:

((((((((((((((((((((((((((((((((((((((((((((((((((())))(()())())(()))()))))))))(())()))()())))())))))))))(())(()()))()((())()))()))((()))))())))))()()(()))()())()()))))))()()()(())((())))())))

result:

ok single line: '((((((((((((((((((((((((((((((...)()))))))()()()(())((())))())))'

Test #23:

score: 0
Accepted
time: 0ms
memory: 3724kb

input:

290
22 100 249 261 285 266 228 17 3 27 95 152 222 54 37 70 33 17 62 142 124 24 25 165 7 199 41 288 118 12 132 74 43 253 252 179 75 145 264 18 225 30 170 163 265 245 82 113 10 252 123 242 94 24 159 263 204 240 29 265 222 65 36 180 283 144 278 115 32 258 74 2 138 116 248 107 38 67 156 179 140 66 157 2...

output:

(((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((())(()))))(()(())())())))))(())))))))))))(((()))))())((())))()()())))))()))))))))())))()))))())))()))))))()))))()))())))((())())(...

result:

ok single line: '((((((((((((((((((((((((((((((...())())()(()))())))))))(()))))))'

Test #24:

score: 0
Accepted
time: 0ms
memory: 3892kb

input:

89
16 44 48 44 28 45 4 86 46 82 3 35 22 30 29 31 60 52 45 74 18 62 9 84 76 24 27 82 11 86 67 22 15 71 53 87 62 74 51 60 59 56 40 17 36 12 41 18 26 14 48 35 85 37 76 59 34 78 43 23 8 28 69 24 49 38 38 11 16 71 58 9 75 88 5 27 70 64 66 32 64 39 78 30 7 43 57 70 77 54 19 61 68 33 13 1 40 54 6 51 58 50 ...

output:

(

result:

ok single line: '('

Test #25:

score: 0
Accepted
time: 0ms
memory: 3720kb

input:

265
164 64 85 5 53 118 184 202 50 39 171 12 255 70 42 206 45 124 26 114 33 152 125 18 21 138 145 181 88 42 56 167 207 98 148 69 163 254 93 14 201 54 187 235 180 56 86 31 131 39 130 232 204 232 14 167 101 223 170 46 94 209 74 186 107 202 79 215 13 2 32 247 116 54 240 233 169 138 62 84 121 8 188 205 2...

output:

(

result:

ok single line: '('

Test #26:

score: 0
Accepted
time: 0ms
memory: 3580kb

input:

101
44 81 89 14 77 85 11 59 58 49 92 42 27 4 48 60 55 61 41 3 83 85 77 9 76 43 84 19 47 96 86 26 21 54 72 8 28 29 2 56 79 74 76 55 22 100 75 90 25 59 9 64 10 90 46 52 71 50 14 26 45 93 95 82 72 41 53 53 69 69 70 23 92 100 25 36 29 80 101 61 10 12 93 94 22 56 52 8 80 68 71 33 78 62 6 30 34 79 99 58 4...

output:

(

result:

ok single line: '('

Test #27:

score: 0
Accepted
time: 0ms
memory: 3720kb

input:

123
5 1 122 31 101 113 55 47 13 100 93 37 26 1 99 85 106 16 9 30 91 65 41 103 67 75 26 33 115 65 59 5 6 19 86 30 43 110 104 115 31 53 95 32 114 58 48 60 13 68 18 90 107 89 73 40 98 92 80 117 108 11 46 118 74 28 27 81 61 103 87 51 51 71 55 16 67 58 79 119 28 111 108 57 114 33 99 71 23 69 54 7 43 81 2...

output:

(

result:

ok single line: '('

Test #28:

score: 0
Accepted
time: 0ms
memory: 3724kb

input:

199
103 52 114 199 174 72 99 141 128 110 99 167 40 171 81 117 181 100 161 68 133 64 106 30 40 145 119 181 188 143 19 52 1 142 26 73 144 151 78 34 155 182 154 195 148 59 148 31 195 180 107 18 3 153 17 178 26 4 15 65 19 49 122 175 28 136 20 164 58 4 117 147 66 6 168 96 83 89 186 51 6 96 97 80 163 127 ...

output:

(

result:

ok single line: '('

Test #29:

score: 0
Accepted
time: 0ms
memory: 3576kb

input:

122
37 44 52 49 86 118 49 39 50 18 33 25 113 7 117 94 31 85 29 11 42 116 23 103 109 69 68 57 90 88 33 99 108 24 81 84 64 51 47 88 26 72 93 100 78 97 80 40 14 51 54 79 16 40 119 121 20 68 113 14 5 83 53 38 99 30 48 101 55 108 77 74 48 50 91 60 122 89 7 39 19 114 30 22 56 92 23 10 89 107 55 41 106 103...

output:

((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((()(())))(())()))()))())(())(())()))((())))())))))())()))))()(())))()(()))))()))()())))))))())(())()))))))))))))))))()(()(()())(())()()))()()))))))())()))())()))())))()(()))))

result:

ok single line: '((((((((((((((((((((((((((((((...)))())()))())()))())))()(()))))'

Test #30:

score: 0
Accepted
time: 0ms
memory: 3668kb

input:

272
40 183 69 248 256 121 171 247 112 234 189 42 269 83 70 201 183 186 26 96 1 199 128 110 28 268 33 253 229 252 181 87 88 240 25 68 79 17 95 49 203 18 125 35 233 95 160 69 239 235 30 171 204 81 232 144 233 213 111 251 105 15 113 213 4 84 156 70 200 219 270 120 206 57 71 37 167 252 147 66 147 167 32...

output:

((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((())((()))))(()()))()((()())())))))))()))))())()))))))))))))(())))())))))))))())()())))()(()))())())))))))))))))))))))())))))))(()))))))(...

result:

ok single line: '((((((((((((((((((((((((((((((...))))))()()())()))))))())())))()'

Test #31:

score: 0
Accepted
time: 0ms
memory: 3932kb

input:

252
95 97 114 180 78 2 138 177 183 33 194 111 42 195 145 84 68 102 62 196 17 172 243 155 35 107 239 238 32 188 27 243 153 189 11 128 239 148 141 118 190 173 210 152 13 214 127 160 248 208 249 63 150 219 5 44 96 153 136 49 25 123 14 8 181 46 82 83 168 169 225 185 105 212 246 206 135 116 218 101 28 15...

output:

(((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((())))())))))))))()()())))())))(()))(((((()(())))(()))))((())))))(()))))))(())))))))()))))()())))()))(())))))()))()()))))()))))))()))))))))))())))))((()()...

result:

ok single line: '((((((((((((((((((((((((((((((...(()))))))))(()())())())))))()))'

Test #32:

score: 0
Accepted
time: 0ms
memory: 3720kb

input:

103
78 55 42 67 58 99 74 25 81 94 37 27 51 30 2 84 30 83 28 13 73 83 93 15 96 76 36 82 72 35 27 37 14 2 23 1 54 23 46 29 5 21 8 96 92 102 58 3 68 87 60 63 54 9 33 49 41 40 16 50 99 41 15 91 70 44 100 97 25 52 8 66 16 4 33 79 45 89 59 101 64 17 80 38 103 82 12 77 28 29 102 101 86 10 60 51 34 26 44 98...

output:

(

result:

ok single line: '('

Test #33:

score: 0
Accepted
time: 0ms
memory: 3932kb

input:

135
59 100 29 55 37 87 121 94 116 115 134 105 110 104 37 107 122 86 39 9 125 79 33 11 48 72 62 133 27 10 59 12 21 108 69 108 19 81 11 31 64 72 68 106 49 60 45 132 77 129 96 127 41 52 28 3 2 58 134 90 61 128 127 73 25 101 130 14 97 102 74 43 84 73 8 23 53 135 124 35 17 17 123 51 83 6 4 22 118 80 99 3...

output:

(

result:

ok single line: '('

Test #34:

score: 0
Accepted
time: 0ms
memory: 3664kb

input:

123
99 43 82 87 11 83 122 14 114 15 30 62 121 50 74 86 102 69 99 115 103 112 104 91 97 1 35 21 92 114 98 80 83 74 101 60 98 91 35 55 65 40 5 67 24 94 3 2 32 85 95 111 123 103 37 71 110 45 80 22 88 60 12 89 20 38 70 25 76 6 63 104 52 56 120 56 65 73 41 47 108 67 38 54 27 4 53 54 14 69 12 26 96 108 66...

output:

(

result:

ok single line: '('

Test #35:

score: 0
Accepted
time: 0ms
memory: 3948kb

input:

211
156 149 122 161 58 4 34 114 152 115 16 91 65 17 32 187 20 210 2 153 22 134 33 189 201 140 72 12 146 147 7 7 171 204 27 173 111 28 8 119 39 167 172 132 70 48 71 56 199 73 125 15 150 159 116 134 173 6 69 200 118 141 164 180 192 186 94 151 195 169 102 108 110 129 62 46 171 95 41 208 193 92 198 106 ...

output:

(

result:

ok single line: '('

Test #36:

score: 0
Accepted
time: 0ms
memory: 3892kb

input:

84
22 63 57 17 6 20 75 67 27 28 36 22 35 37 18 36 12 66 24 60 17 66 69 30 56 33 44 53 62 81 73 56 30 75 46 79 8 7 40 58 45 57 69 51 38 39 50 62 48 14 77 8 1 3 44 42 78 33 19 4 21 29 38 11 18 64 54 32 11 9 63 48 2 41 20 27 80 24 40 71 82 84 58 13 55 5 52 83 49 2 84 70 43 76 4 34 51 16 68 26 47 6 46 3...

output:

((((((((((((((((((((((((((((((((((((((((((((((((((((()())())))()()))))(())(()(()))()))))))))))))())))(())(()))))))((())))()()()()))))))))())(())()))))())))))()))))(()))

result:

ok single line: '((((((((((((((((((((((((((((((...())(())()))))())))))()))))(()))'

Test #37:

score: 0
Accepted
time: 0ms
memory: 3940kb

input:

219
52 53 30 206 77 193 122 127 137 125 98 114 133 216 32 28 158 22 102 41 2 61 56 150 153 216 4 100 157 159 219 118 206 205 172 187 152 217 162 86 50 162 13 163 151 26 9 215 135 143 208 32 114 17 56 192 79 208 49 189 121 169 161 144 146 131 47 62 67 40 23 97 91 44 209 85 51 186 51 149 15 12 5 39 12...

output:

(

result:

ok single line: '('

Test #38:

score: 0
Accepted
time: 0ms
memory: 3664kb

input:

288
157 198 125 29 38 89 103 65 159 209 51 155 114 160 183 252 243 136 66 276 212 105 62 15 193 77 203 224 246 29 18 139 213 7 186 250 228 9 271 159 139 279 8 72 52 93 106 85 194 229 210 169 201 129 205 256 281 73 170 28 238 230 146 171 268 35 216 90 113 90 132 100 157 137 56 283 189 83 152 266 56 1...

output:

(((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((())())()))()))()())))()))))(())()()()))())))))(()(()()())()())))()()())))()))))))()())))))())()))))()()))))())()())())()))(...

result:

ok single line: '((((((((((((((((((((((((((((((...())()()())))))()))()(()))))))))'

Test #39:

score: 0
Accepted
time: 0ms
memory: 3944kb

input:

292
273 115 88 283 109 165 184 141 177 135 36 202 211 137 226 145 125 268 9 276 174 281 150 194 111 110 290 42 130 48 18 110 203 146 38 112 191 171 102 183 212 179 154 191 283 73 87 122 244 1 271 166 124 292 278 161 257 216 174 82 23 71 27 31 17 116 269 256 30 209 39 111 43 210 10 289 127 81 92 77 1...

output:

((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((()(((((((((((((((((())))(())))))))))))()()))))())))())()))())))))))))())()((()(()())()))))))((())()))(()(()(())))))()((()())))(()))((())))()()(()))))))()(()...

result:

ok single line: '((((((((((((((((((((((((((((((...)()))))))(()))))))))))(()))))))'

Test #40:

score: 0
Accepted
time: 0ms
memory: 3684kb

input:

229
68 147 123 62 143 164 109 186 8 161 61 139 186 228 226 157 92 30 26 91 116 125 151 138 105 172 136 102 27 70 196 83 183 176 217 206 172 47 69 16 79 138 214 60 221 182 99 96 201 51 4 110 225 19 74 70 109 62 217 185 177 195 153 50 204 19 63 41 38 28 191 221 39 43 44 67 20 150 148 32 131 64 171 207...

output:

(

result:

ok single line: '('

Test #41:

score: 0
Accepted
time: 0ms
memory: 3660kb

input:

189
168 129 7 31 159 116 39 107 104 148 71 132 180 176 41 188 6 175 1 181 92 122 44 103 64 73 15 130 171 147 136 5 106 56 9 2 66 83 58 78 69 31 186 42 40 183 62 12 34 157 187 128 68 60 15 103 122 96 131 13 82 164 100 177 57 60 32 10 14 172 77 113 10 73 72 120 99 127 167 61 165 99 24 167 85 163 13 11...

output:

(

result:

ok single line: '('

Test #42:

score: 0
Accepted
time: 0ms
memory: 3664kb

input:

245
1 47 3 202 165 227 125 187 229 180 25 44 124 48 220 162 181 15 142 32 156 217 71 113 148 5 84 245 70 116 176 137 199 143 97 50 29 169 26 239 184 208 192 15 230 172 219 233 68 39 55 219 157 224 168 69 122 139 27 106 90 216 118 210 245 45 20 102 188 232 58 30 206 66 154 218 87 211 166 3 118 122 1 ...

output:

(

result:

ok single line: '('

Test #43:

score: 0
Accepted
time: 0ms
memory: 3660kb

input:

284
185 149 14 222 172 64 165 131 257 15 247 212 35 205 64 168 181 180 77 139 16 274 175 56 19 259 254 4 74 71 261 99 10 27 242 48 99 111 22 230 24 75 25 50 275 138 145 1 6 96 207 104 98 212 125 213 202 173 10 237 252 129 36 211 154 283 269 203 109 196 153 158 228 271 187 250 123 104 36 115 4 101 68...

output:

(((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((())()()(())(()())))))()()()))((())))(()))()))((())()()((()))(()))))))))))))())())))(())))())))((())))())))))))))))()((()()))(()))...

result:

ok single line: '((((((((((((((((((((((((((((((...))))))))())))))))()()()())())))'

Test #44:

score: 0
Accepted
time: 0ms
memory: 3684kb

input:

147
66 63 58 8 107 88 100 53 4 42 60 135 142 41 68 37 70 87 144 3 73 17 35 115 37 88 140 146 136 49 80 41 65 61 84 67 8 74 108 56 52 12 26 14 38 17 59 67 28 84 15 54 112 48 126 122 40 78 111 5 77 69 43 141 64 21 33 23 91 81 5 70 95 143 138 75 125 117 45 6 22 139 103 26 7 81 105 61 126 74 98 54 95 29...

output:

(

result:

ok single line: '('

Test #45:

score: 0
Accepted
time: 0ms
memory: 3720kb

input:

235
56 193 228 176 167 106 132 104 10 178 109 37 96 17 157 129 50 84 36 224 162 141 184 130 35 202 153 173 225 47 7 81 220 212 6 211 98 32 87 51 81 131 214 208 134 15 31 28 15 27 45 98 66 194 74 94 136 138 196 95 213 171 92 34 91 72 12 203 53 159 70 114 42 115 48 198 129 112 113 80 229 234 227 75 20...

output:

(

result:

ok single line: '('

Test #46:

score: 0
Accepted
time: 1ms
memory: 3996kb

input:

1669
534 1403 1539 291 718 583 668 1492 863 556 422 274 676 650 1266 267 918 17 1119 768 85 471 777 882 1203 600 1046 1660 122 1549 965 16 156 1443 499 28 1614 811 854 808 1525 1222 1220 159 1093 489 1042 1056 1647 177 206 610 356 1456 1195 8 341 512 1054 215 1149 273 230 89 836 236 632 1355 843 198...

output:

(

result:

ok single line: '('

Test #47:

score: 0
Accepted
time: 1ms
memory: 3720kb

input:

1259
805 479 592 887 623 29 1080 757 84 861 1162 849 678 668 426 985 922 1005 195 79 982 767 863 484 1149 280 56 854 1170 483 826 624 724 959 1072 691 239 583 307 1117 159 314 1135 979 684 965 1111 421 288 363 922 266 578 103 178 477 671 611 844 457 32 1140 368 314 28 1240 750 396 141 1129 845 1056 ...

output:

(

result:

ok single line: '('

Test #48:

score: 0
Accepted
time: 0ms
memory: 3716kb

input:

1730
810 147 1646 177 324 51 43 1397 779 1000 851 1630 348 1358 807 247 495 166 1566 676 856 760 518 1142 1582 148 1275 335 1079 1093 691 435 1187 1428 532 1022 1508 1031 1198 1485 1479 1391 459 671 621 1288 353 13 1644 1703 570 1115 237 1040 595 636 1176 823 284 388 777 1070 930 1408 138 681 1379 1...

output:

((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((...

result:

ok single line: '((((((((((((((((((((((((((((((...())())))()))))))))))()))))(()))'

Test #49:

score: 0
Accepted
time: 1ms
memory: 3652kb

input:

1240
38 812 422 479 821 349 1198 517 711 655 310 77 229 718 693 57 981 202 802 1036 1077 621 593 21 1173 1157 893 674 87 164 307 287 698 407 974 327 62 834 541 1129 610 736 32 471 771 212 233 1028 983 260 765 144 748 929 227 85 329 125 619 672 963 1223 203 1148 418 423 700 970 882 1207 98 497 1115 2...

output:

((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((...

result:

ok single line: '((((((((((((((((((((((((((((((...))))()))()())))))))))(()())))()'

Test #50:

score: 0
Accepted
time: 1ms
memory: 3768kb

input:

1530
1099 1290 793 1512 1265 793 612 507 1241 1467 1347 928 979 300 88 1350 1193 383 519 1311 552 993 735 337 773 216 1159 871 6 131 1402 476 358 818 784 988 659 463 1178 648 6 273 1133 945 1255 316 443 1160 1331 1000 1204 511 929 1405 593 567 1183 1147 1099 867 975 1315 134 601 1028 1314 1165 940 1...

output:

((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((...

result:

ok single line: '((((((((((((((((((((((((((((((...)))()))())())))())(()))))))))))'

Test #51:

score: 0
Accepted
time: 1ms
memory: 3724kb

input:

1709
1038 1464 1123 801 345 299 1491 771 77 1669 754 303 796 1232 705 187 166 20 847 37 591 1054 193 822 920 546 1106 1016 112 1428 1020 133 101 643 344 321 965 1021 1671 950 1259 182 1599 999 243 1393 1375 719 1605 477 1182 277 856 862 1214 1129 1053 799 610 531 1677 483 1598 693 1163 1138 1704 321...

output:

(

result:

ok single line: '('

Test #52:

score: 0
Accepted
time: 1ms
memory: 3776kb

input:

1898
1456 1316 27 1396 962 489 1058 1038 1500 380 1320 456 946 1129 188 408 428 1509 1310 988 364 1202 1800 894 496 1611 1374 430 647 906 244 336 1874 1794 270 128 1722 44 492 695 1092 184 929 1135 1239 1294 594 102 134 1028 65 363 1581 1119 127 197 871 1552 869 534 1205 35 244 1874 145 1289 264 140...

output:

((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((...

result:

ok single line: '((((((((((((((((((((((((((((((...)))()))()))))((()))((()())())()'

Test #53:

score: 0
Accepted
time: 1ms
memory: 3760kb

input:

1214
718 428 546 647 348 228 364 637 509 571 773 594 493 394 1059 835 78 1042 980 1179 474 374 887 1047 794 630 352 764 383 452 704 986 1170 209 1001 776 274 529 115 440 994 638 874 400 110 394 311 158 346 170 1102 1194 531 703 941 343 41 492 833 130 240 421 708 1110 578 615 959 884 635 783 914 1019...

output:

((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((...

result:

ok single line: '((((((((((((((((((((((((((((((...())((()(()(())))))))))))())))))'

Test #54:

score: 0
Accepted
time: 1ms
memory: 3664kb

input:

1909
596 397 543 1444 74 1322 743 1878 341 1876 1346 510 1043 1818 229 386 1018 406 375 1289 654 398 1160 659 1538 125 970 306 608 979 143 315 683 830 252 71 778 24 1639 762 1492 1629 873 144 590 516 1612 292 1903 527 868 1382 1882 1787 1372 319 1099 1736 1683 1135 1629 256 863 474 1656 1262 1095 16...

output:

(

result:

ok single line: '('

Test #55:

score: 0
Accepted
time: 1ms
memory: 3768kb

input:

1379
1308 1173 9 735 160 843 1264 1162 1217 1191 460 1354 621 844 789 1136 420 1223 1099 621 77 423 275 1132 153 1366 498 533 1335 94 1266 754 280 796 743 1362 264 434 483 1345 765 1072 456 325 110 477 867 437 172 647 761 905 1001 207 184 1052 501 803 136 10 235 177 1357 855 589 1224 893 930 1165 11...

output:

(

result:

ok single line: '('

Test #56:

score: 0
Accepted
time: 1ms
memory: 3676kb

input:

1210
323 693 519 300 888 655 543 972 609 975 736 542 309 1132 738 908 1125 362 125 671 1169 181 670 384 579 311 421 211 297 1160 929 373 1041 590 1128 26 1017 641 154 774 921 2 325 682 120 341 1199 885 1072 1098 1169 769 320 1072 458 850 1065 654 798 624 428 110 1094 902 442 614 981 253 309 42 987 5...

output:

((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((...

result:

ok single line: '((((((((((((((((((((((((((((((...)))))()()(()))()))(())()())))))'

Test #57:

score: 0
Accepted
time: 1ms
memory: 3728kb

input:

1445
1230 1352 1373 464 26 1065 937 1084 868 259 1315 1275 862 1248 74 1022 677 83 361 1304 672 52 521 94 967 427 1245 1435 308 113 1378 723 1294 92 989 1315 1017 1036 854 129 932 1323 210 816 927 736 57 1233 1085 601 534 1326 822 437 580 892 387 581 798 668 1423 825 713 1190 700 402 1375 1195 475 2...

output:

(

result:

ok single line: '('

Test #58:

score: 0
Accepted
time: 1ms
memory: 3704kb

input:

1805
1644 1044 267 1462 305 150 1691 432 1268 1470 1606 26 322 1236 26 1526 762 1641 742 995 1716 760 1338 813 651 417 485 1273 503 175 260 1583 979 935 335 246 733 1495 1351 423 1502 1688 1786 1253 1425 884 158 1469 1154 1001 1071 676 248 433 684 44 1343 808 862 1732 40 306 498 671 1091 1556 1188 1...

output:

(

result:

ok single line: '('

Test #59:

score: 0
Accepted
time: 1ms
memory: 4008kb

input:

1762
149 1672 350 1624 1422 1564 82 389 708 1192 338 1726 1599 1359 805 1189 312 1402 1101 1421 102 1406 1519 1761 834 744 146 821 535 1036 989 917 256 1234 106 727 279 1658 1155 907 57 1109 78 1353 201 855 548 1497 1070 380 1555 1490 1235 1231 628 1050 960 915 597 214 1652 1591 1 553 847 1006 1326 ...

output:

((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((...

result:

ok single line: '((((((((((((((((((((((((((((((...())())))())))))((()())))())))()'

Test #60:

score: 0
Accepted
time: 1ms
memory: 3644kb

input:

1023
521 158 129 469 141 977 141 2 175 338 696 459 112 170 512 545 112 508 936 749 153 892 540 912 329 326 427 160 348 98 71 684 750 650 154 591 919 549 765 444 702 202 362 133 519 77 908 113 652 159 796 3 502 668 575 631 677 364 742 122 373 111 43 477 195 746 983 806 82 841 532 466 486 673 53 617 5...

output:

(

result:

ok single line: '('

Test #61:

score: 0
Accepted
time: 1ms
memory: 3760kb

input:

1150
774 30 235 231 261 166 843 1141 811 1069 1006 152 1016 121 236 384 508 24 93 1005 925 727 582 536 252 723 805 380 708 204 414 572 577 884 575 792 110 632 660 444 761 71 621 329 475 89 357 446 573 356 955 835 920 961 630 182 91 880 308 870 1117 680 125 305 129 892 406 518 477 1132 644 1026 334 1...

output:

((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((...

result:

ok single line: '((((((((((((((((((((((((((((((...)())()())))()))(())))))()))))))'

Test #62:

score: 0
Accepted
time: 1ms
memory: 3708kb

input:

1415
460 1078 435 413 454 1016 1134 739 479 501 636 513 480 973 277 286 96 407 1370 756 1185 1381 948 1392 66 1204 706 363 84 632 41 1398 114 998 610 569 611 933 1162 72 914 1174 436 1222 52 1044 585 1186 336 115 1273 724 991 1399 637 1315 22 240 474 954 46 205 950 1331 582 558 1214 202 1269 282 566...

output:

(

result:

ok single line: '('

Test #63:

score: 0
Accepted
time: 1ms
memory: 3720kb

input:

1869
507 116 766 874 933 624 1675 518 191 1108 445 1509 1556 1647 1478 242 1759 1648 938 1831 1093 708 243 564 33 113 1502 1842 1715 548 771 218 1113 579 1800 690 845 1831 1109 750 1811 1383 545 437 1729 251 1435 705 247 1124 724 768 1177 801 1401 1261 295 391 1711 254 1523 420 160 434 1438 882 1288...

output:

(

result:

ok single line: '('

Test #64:

score: 0
Accepted
time: 0ms
memory: 3700kb

input:

1744
1371 862 1589 120 87 1621 26 1490 962 733 392 1408 236 351 964 1172 17 1473 1482 1432 1707 290 677 42 439 909 705 57 1506 718 831 123 1708 965 1404 434 1415 839 660 1673 856 994 1000 311 964 131 150 708 1714 257 1219 519 1445 1679 1200 955 552 214 1190 145 118 1240 1504 1212 200 236 1427 1262 1...

output:

((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((...

result:

ok single line: '((((((((((((((((((((((((((((((...))())))))(()(()()))())(()))()()'

Test #65:

score: 0
Accepted
time: 1ms
memory: 3984kb

input:

1374
177 1012 1065 339 624 1296 662 391 1094 129 27 201 217 1081 1038 338 890 166 941 520 112 1222 421 1167 437 1349 988 96 1337 1330 1033 804 69 71 955 890 677 330 511 171 922 682 756 1179 20 321 303 603 1096 895 973 198 940 181 782 911 1308 979 1071 603 1172 726 1215 1241 741 861 227 547 447 499 9...

output:

(((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((()(((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((...

result:

ok single line: '((((((((((((((((((((((((((((((...()))()()))))))))))))())))))()))'

Test #66:

score: 0
Accepted
time: 1ms
memory: 4008kb

input:

1701
736 1017 539 706 861 226 1202 172 752 746 973 12 1188 215 1570 617 1127 828 153 1346 1141 1616 317 999 172 1016 1546 420 102 1387 181 1388 767 802 91 690 1552 776 80 1281 57 814 54 672 1659 1651 1643 68 928 147 129 591 254 812 14 252 842 1230 1322 783 996 1297 1684 577 347 74 1245 1220 584 1545...

output:

(

result:

ok single line: '('

Test #67:

score: 0
Accepted
time: 1ms
memory: 3984kb

input:

1535
666 925 110 369 412 1496 590 401 1133 1197 156 274 1078 478 450 705 530 682 923 1209 1152 324 732 224 624 5 63 519 1306 959 798 591 417 1046 787 1451 1046 364 998 1083 1147 1303 710 872 1219 1351 758 764 1412 1393 885 1494 1398 240 761 291 580 1377 980 707 1075 560 1369 1039 785 1499 609 80 22 ...

output:

(

result:

ok single line: '('

Test #68:

score: 0
Accepted
time: 11ms
memory: 7080kb

input:

108748
8441 5110 12142 12767 63260 23435 36408 104744 57632 86419 34198 94112 69048 5940 92231 35030 76479 89043 80545 87512 25918 82383 39122 16631 38546 72806 76223 8471 77540 66804 54041 19567 38129 61311 10079 103786 103582 29543 89733 55961 78758 6989 45651 57367 90170 33367 51894 94797 39291 8...

output:

((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((...

result:

ok single line: '((((((((((((((((((((((((((((((...()(()((()())())(())))()))))))))'

Test #69:

score: 0
Accepted
time: 32ms
memory: 10604kb

input:

194430
177509 17096 64453 117937 124855 178749 70411 24361 62769 126706 124363 165935 92135 66330 61402 113575 63472 50002 75649 37287 171149 60177 116556 130439 137276 30623 101455 181372 101795 42859 106690 77561 78618 105208 181037 71926 79422 154990 175397 108791 124491 69593 120504 192838 1619 ...

output:

((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((...

result:

ok single line: '((((((((((((((((((((((((((((((...))))())(()()))))())()))))()))))'

Test #70:

score: 0
Accepted
time: 19ms
memory: 7292kb

input:

112336
9441 70376 106901 73825 6189 716 53712 86889 65038 79001 28229 6662 30797 12566 4787 68661 45994 33565 89265 50076 98401 101561 90878 80767 21208 73337 109584 85511 56069 4268 71652 92891 47902 34376 14154 60049 41254 23523 46747 40623 54903 14798 87995 95944 49945 65925 57519 9930 70227 1472...

output:

((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((...

result:

ok single line: '((((((((((((((((((((((((((((((...)())))((()()))))))))))()))())))'

Test #71:

score: 0
Accepted
time: 37ms
memory: 10344kb

input:

191185
178975 121623 33039 133497 164114 185730 170800 12443 168982 101843 34704 86412 30727 175298 23137 183601 34364 38311 80005 93880 180711 83255 49756 49601 182573 31913 96461 62114 60449 179481 84670 27968 140437 37282 141506 96115 31046 47093 146970 9696 56274 107550 157777 157116 112917 1731...

output:

(

result:

ok single line: '('

Test #72:

score: 0
Accepted
time: 19ms
memory: 7184kb

input:

106049
30516 40778 98171 84788 102224 2345 54477 28439 95542 34721 16794 73981 4914 63456 16930 13491 43651 105945 101371 100119 81149 12759 40278 91017 61385 29562 58240 62011 71278 9271 33034 70071 103718 2909 68443 76740 56252 3684 11139 21871 34156 54292 2881 1952 12839 42044 44093 38750 55372 1...

output:

(

result:

ok single line: '('

Test #73:

score: 0
Accepted
time: 28ms
memory: 9664kb

input:

170434
49144 47012 20377 19033 153320 20638 2323 7575 141215 113432 82371 133877 127525 170013 29528 80466 88355 42731 149502 137468 146787 91017 114017 114654 10993 148727 142320 142798 106458 19869 11718 143268 16427 44938 77230 101772 4971 151227 68679 86582 52504 7873 79142 87720 16838 134869 35...

output:

((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((...

result:

ok single line: '((((((((((((((((((((((((((((((...(())))))))(())))())))))))))))))'

Test #74:

score: 0
Accepted
time: 14ms
memory: 6984kb

input:

104228
31817 49368 43568 103356 35347 64167 95976 78799 41891 74087 52731 40104 21124 69973 64847 95489 97226 57388 9772 20101 19853 87501 55863 91482 63525 11491 89617 34397 21904 63199 60703 25461 84329 2064 72440 51320 78314 68361 68677 35626 66859 24 82702 33981 66981 42004 22393 100380 16088 22...

output:

((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((...

result:

ok single line: '((((((((((((((((((((((((((((((...))((((())(())()())()))()())))()'

Test #75:

score: 0
Accepted
time: 15ms
memory: 7904kb

input:

123669
32493 21101 119623 78452 101700 67676 24117 79105 54402 18472 45084 70824 17755 80195 122585 59659 79107 12953 108404 41580 1767 44328 20416 28007 110443 74454 96275 23714 73575 30955 107867 14107 30131 106324 56122 51533 25487 90818 18579 70678 11714 110970 15913 1944 40532 971 88911 35519 8...

output:

(

result:

ok single line: '('

Test #76:

score: 0
Accepted
time: 33ms
memory: 9776kb

input:

175422
122980 81382 66174 175401 139719 163419 99163 65400 172211 111592 87552 108934 74767 122041 27138 108228 11488 76561 32634 154775 8869 54291 131065 71427 171482 160447 2135 169474 68450 135579 68530 167837 51846 84074 149745 123621 84970 48927 105277 39470 146497 24701 73274 112324 63415 1371...

output:

((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((...

result:

ok single line: '((((((((((((((((((((((((((((((...))))())))))))))()()))))))))()))'

Test #77:

score: 0
Accepted
time: 30ms
memory: 9948kb

input:

176625
167230 30550 54263 5249 5310 82969 42948 96539 147434 78418 172036 125824 115629 41789 115499 127152 140506 103423 62969 67301 83147 8086 5477 37895 113292 166547 4482 160652 135129 112541 175950 18362 35411 30103 1604 99367 135226 24181 112197 164735 148515 8105 173512 102931 27483 59224 550...

output:

(

result:

ok single line: '('

Test #78:

score: 0
Accepted
time: 29ms
memory: 9880kb

input:

178264
168709 80387 24541 176720 69736 124774 170443 170817 144036 16693 59549 120388 88123 102367 35299 46054 115385 20761 90545 125218 168196 118137 34219 79819 108313 5264 173919 138679 58337 155271 51220 139189 126607 108570 125413 108255 121406 141193 172997 156397 159568 37670 144850 44840 104...

output:

((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((...

result:

ok single line: '((((((((((((((((((((((((((((((...())()))))()))))()))()())())()))'

Test #79:

score: 0
Accepted
time: 22ms
memory: 8880kb

input:

157342
9224 90972 27872 98218 92128 67141 57455 104421 128020 45965 13190 121980 155833 147469 19479 1631 54783 77473 75750 4207 134339 41460 148605 27076 120534 116559 84360 48241 19700 142079 68800 129212 54238 121307 94945 114772 148926 136366 58300 146547 112029 86726 40388 104919 86950 107133 5...

output:

((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((...

result:

ok single line: '((((((((((((((((((((((((((((((...())()()))))()))))))()))()))(())'

Test #80:

score: 0
Accepted
time: 33ms
memory: 10412kb

input:

187663
4168 84663 94667 21926 141621 121119 41657 155464 86208 119425 141839 97824 55032 97218 51504 159376 129337 69955 184025 107352 97729 9887 80709 116556 69394 39172 45183 172756 169952 62018 156223 172820 53447 58002 139659 50260 18642 15130 106451 184312 121223 177018 141152 184065 125929 948...

output:

(

result:

ok single line: '('

Test #81:

score: 0
Accepted
time: 21ms
memory: 9132kb

input:

159248
38165 64881 7391 68357 51239 65551 57377 14657 34691 73113 138885 71373 1120 38535 20666 157104 111011 43133 88547 13102 2084 107541 19008 80223 7606 93161 31953 47944 67544 116768 9785 32746 48865 119310 155432 106776 84825 126888 26776 104782 54098 67552 62111 123364 92341 108254 2938 63320...

output:

((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((...

result:

ok single line: '((((((((((((((((((((((((((((((...(()()(()))()))()())()()))))))()'

Test #82:

score: 0
Accepted
time: 26ms
memory: 8232kb

input:

134615
49319 101614 7513 100570 100048 120810 68988 85653 124701 52248 51943 57595 61586 92834 51021 119472 88519 113687 92435 65993 46528 27603 127158 6377 111070 79944 28259 46749 64082 111422 84902 91363 129104 46811 93569 59727 83312 81940 98867 104961 133836 43920 69629 13261 60772 7820 77256 8...

output:

(

result:

ok single line: '('

Test #83:

score: 0
Accepted
time: 15ms
memory: 8120kb

input:

129720
16572 38432 120345 73876 12923 30837 76586 20855 105510 6565 54507 21080 8005 69353 15086 58743 45781 75051 122979 25502 16115 95273 123870 5059 78580 91133 17664 21712 55312 23325 48757 31114 74092 42544 77802 70039 77491 107868 2620 54951 108607 85172 75162 24857 97778 39769 124523 6435 111...

output:

((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((...

result:

ok single line: '((((((((((((((((((((((((((((((...(((()())())()((())))))))))))())'

Test #84:

score: 0
Accepted
time: 32ms
memory: 9488kb

input:

170874
132166 158755 109320 141356 26127 24995 42676 121717 17398 157885 117079 18212 150968 25715 18947 73040 125130 93909 143850 91897 74918 60212 125718 12701 44177 61415 75845 28169 60621 70206 159246 157266 115619 47178 72131 164800 105097 60366 25045 152111 63831 112927 32311 64795 12750 32250...

output:

((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((...

result:

ok single line: '((((((((((((((((((((((((((((((...)))))())))))))))))())()(()())))'

Test #85:

score: 0
Accepted
time: 32ms
memory: 10616kb

input:

200000
77434 12970 136482 29713 150287 14928 71624 20196 5608 61929 78604 113824 84581 149163 87069 133500 184224 16831 155171 167986 101749 197765 158968 176010 64090 57141 174689 8116 174223 144939 158743 130933 180296 22909 125262 22809 22843 74527 193409 84043 71580 87041 188148 120221 1606 3923...

output:

((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((...

result:

ok single line: '((((((((((((((((((((((((((((((...))))()))()())))))))))())))())))'

Test #86:

score: 0
Accepted
time: 37ms
memory: 10556kb

input:

200000
32617 113177 194099 181796 115564 185511 83848 166385 140564 79775 22199 193517 2127 192637 130120 183624 111202 144724 151293 146336 5058 57686 179768 19961 71579 40978 185539 171336 119906 137882 142537 196363 155296 76225 88805 149805 145684 84604 80506 139842 63203 197274 156183 21114 398...

output:

((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((...

result:

ok single line: '((((((((((((((((((((((((((((((...))())())))())()((())))))())))()'

Test #87:

score: 0
Accepted
time: 37ms
memory: 10492kb

input:

200000
97271 199253 72155 51987 179357 49773 189987 81454 20384 29762 22795 13819 125935 62361 105134 82610 102035 154564 87991 34480 68960 21254 151337 121623 147178 91922 108146 174910 68511 173362 119291 46154 64416 22358 61862 50000 53062 127115 196329 82027 76090 101711 132659 163726 14473 1957...

output:

((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((...

result:

ok single line: '((((((((((((((((((((((((((((((...()))))))())))()(())(()()))())))'

Test #88:

score: 0
Accepted
time: 26ms
memory: 10516kb

input:

200000
36377 60534 43890 35024 54971 177770 84270 26343 9192 88605 103439 40647 104332 8653 129070 35251 161914 15283 194777 191987 114239 144074 90062 160085 102911 137915 125551 157442 151120 90862 73549 35097 3768 187409 15654 62336 141675 161055 2507 32965 191979 32575 61622 60687 3905 10165 131...

output:

((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((...

result:

ok single line: '((((((((((((((((((((((((((((((...()(()()(()())())()())())())))()'

Test #89:

score: 0
Accepted
time: 46ms
memory: 10464kb

input:

200000
191211 99915 119430 12474 60640 82164 5816 60950 134941 42861 160840 22125 154682 160866 49183 62789 68430 97826 181620 80933 118353 2060 117676 104833 55290 128091 39468 176678 126464 101900 167498 21256 108546 128789 96741 149780 135120 22825 87280 60411 112385 126304 41883 99166 37068 1785...

output:

((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((...

result:

ok single line: '((((((((((((((((((((((((((((((...)()())))))(()))))()))()()))()))'

Test #90:

score: 0
Accepted
time: 33ms
memory: 10672kb

input:

200000
9598 88516 9015 23801 58227 47760 51787 167917 20405 59388 137985 128078 26179 178013 102098 41749 1849 143237 157006 105278 172911 65043 130345 143391 39286 21137 130732 912 124685 31836 131983 90196 84842 66136 12491 107851 66376 112829 69073 184232 133877 112003 25190 16881 147936 54201 18...

output:

((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((...

result:

ok single line: '((((((((((((((((((((((((((((((...))()(())))))()()))(()())()()())'

Test #91:

score: 0
Accepted
time: 34ms
memory: 10748kb

input:

200000
46243 172600 187454 37266 169072 137947 109269 54692 195101 128260 154371 99245 184676 92121 55699 114942 95745 55579 42887 110247 180491 21750 129641 87417 11196 50092 120711 136049 171864 92995 97160 66103 17707 116652 83153 53795 127337 27415 56938 68007 187515 687 114412 145444 24600 5183...

output:

((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((...

result:

ok single line: '((((((((((((((((((((((((((((((...()(((())()))(()())))()())(())))'

Test #92:

score: 0
Accepted
time: 37ms
memory: 10624kb

input:

200000
161413 9685 22060 184170 183785 127789 42717 74359 78969 130388 59183 20493 89523 41937 18414 180167 145991 43764 134179 33171 138320 4758 186188 141399 115140 157868 60464 68038 88121 161239 3920 170847 85350 77361 8185 35244 21419 124608 170327 101366 114217 6888 189531 164972 138944 190640...

output:

((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((...

result:

ok single line: '((((((((((((((((((((((((((((((...))())())()(()()())()()))(()))))'

Test #93:

score: 0
Accepted
time: 37ms
memory: 10616kb

input:

200000
117856 81475 132636 197099 36843 3614 83024 46578 33372 32241 127128 19286 77929 82270 12636 176068 107861 134539 95577 20632 133498 184001 173733 122679 157819 184911 125413 8314 30076 25834 89729 61312 47873 15533 41547 117074 101873 18163 184794 12038 91369 89683 80353 156618 155307 108904...

output:

((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((...

result:

ok single line: '((((((((((((((((((((((((((((((...)))))((())()))))))())))))))))()'

Test #94:

score: 0
Accepted
time: 33ms
memory: 10716kb

input:

200000
118713 27907 186955 157348 56263 111437 15779 3374 81411 94339 60618 172493 35325 79404 37884 182403 159897 50628 67263 1526 78714 86656 46313 71601 27865 92445 106397 72674 134424 77067 175612 129127 49730 150646 134037 17287 90867 7694 168865 7483 150412 58644 49875 12103 3440 19516 42859 1...

output:

((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((...

result:

ok single line: '((((((((((((((((((((((((((((((...())((()())))))())))()((()))()()'

Test #95:

score: 0
Accepted
time: 33ms
memory: 10508kb

input:

200000
13737 166231 10769 15115 74725 152542 32264 33064 66305 42061 62980 105747 75106 142603 155080 184290 50567 54309 198536 159064 165743 198548 44448 73449 45670 118551 164893 32868 199473 151811 127570 132181 179021 115854 68510 173272 183858 135571 103667 129083 5705 159912 46938 140931 10707...

output:

((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((...

result:

ok single line: '((((((((((((((((((((((((((((((...))())))))))(()))))()))))))))())'

Test #96:

score: 0
Accepted
time: 37ms
memory: 10468kb

input:

200000
162169 62885 147516 66913 81552 72837 162908 82515 84192 193788 121383 178298 100546 36623 163723 151795 26865 149695 47203 10380 181259 96121 132684 117320 98397 151027 2264 81468 121547 122388 174440 98812 18475 52333 52025 196364 91629 46584 63505 90327 185602 74533 117080 194484 5499 1710...

output:

((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((...

result:

ok single line: '((((((((((((((((((((((((((((((...()())())))())))))))())))(())())'

Test #97:

score: 0
Accepted
time: 37ms
memory: 10608kb

input:

200000
146977 190198 6819 113148 152917 189100 161738 10512 76811 59823 67274 9997 71427 40407 145981 72700 145779 196755 42935 198502 70254 125306 182773 68952 124416 135354 32453 189683 119769 178543 165814 99643 136641 103013 46449 25397 8627 22634 67652 51089 97642 76851 21485 94289 76088 90033 ...

output:

((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((...

result:

ok single line: '((((((((((((((((((((((((((((((...()(()()(((())))))))(()(()(())))'

Test #98:

score: 0
Accepted
time: 29ms
memory: 10608kb

input:

200000
101491 148395 167823 130576 176528 179804 183320 56525 5634 52050 174167 104440 21293 55236 156320 162335 9188 64722 113214 115872 61321 113318 110798 13194 126466 32591 138094 157950 131099 165206 123910 21264 77990 14620 126542 135336 193373 44975 37613 142686 168412 171555 39167 105997 109...

output:

((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((...

result:

ok single line: '((((((((((((((((((((((((((((((...())))))))))()((()))))))))())())'

Test #99:

score: 0
Accepted
time: 37ms
memory: 10556kb

input:

200000
62797 15621 145494 30944 148269 128610 94431 80382 41778 189401 3814 19475 124641 147922 41071 39680 143875 91769 104590 97535 63926 133848 166911 103204 51237 1927 21376 7569 128074 134924 197136 158628 175532 164510 12371 12215 148766 19532 156604 21436 9095 199867 88836 31283 174188 22235 ...

output:

((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((...

result:

ok single line: '((((((((((((((((((((((((((((((...)()()((())(())()(((()))(()))())'

Test #100:

score: 0
Accepted
time: 26ms
memory: 10524kb

input:

200000
122368 121602 18180 10450 111598 31664 147981 104855 2290 104785 94911 141312 163776 97611 63320 69011 166919 184394 168655 140160 84908 112744 101041 192802 10172 50729 85132 190385 157539 182991 98859 93032 177811 72496 139026 133247 67310 168647 20298 41252 9860 60422 140630 177551 69597 1...

output:

((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((...

result:

ok single line: '((((((((((((((((((((((((((((((...))))())()))))))))))()))))))))()'

Test #101:

score: 0
Accepted
time: 37ms
memory: 10468kb

input:

200000
5098 41347 14015 9904 159190 39138 146430 9616 97959 95429 133120 64927 49394 54126 198049 80322 50513 175608 163589 164448 190305 149875 48615 190689 184589 132941 197948 115093 67284 195830 133736 3305 7221 118137 196156 118998 39931 196565 134303 152188 167268 16125 36014 65601 189456 7313...

output:

((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((...

result:

ok single line: '((((((((((((((((((((((((((((((...()())))))()))))(())())())))()))'

Test #102:

score: 0
Accepted
time: 30ms
memory: 10620kb

input:

200000
137471 155551 149392 41010 56143 159039 116972 153831 159012 45682 66913 130705 138584 96820 130434 135378 43163 26312 168250 177954 144896 45581 186907 184820 72742 134056 113653 33023 193158 129968 93003 51202 1187 188055 197705 184984 162630 63035 69276 91964 180389 105117 36498 26907 1983...

output:

((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((...

result:

ok single line: '((((((((((((((((((((((((((((((...)())((())))(((()))((()))()())()'

Test #103:

score: 0
Accepted
time: 30ms
memory: 10620kb

input:

200000
142620 76593 82677 146697 58988 59956 94374 43450 26567 167989 128616 110134 101517 142706 186945 173485 115381 158443 174785 49452 112319 97801 15492 50006 145004 124934 68755 153980 136304 2066 194941 32051 118904 51049 135136 159839 127530 191296 19214 167237 97766 154910 60626 29191 19535...

output:

((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((...

result:

ok single line: '((((((((((((((((((((((((((((((...))))))))))))())))))()))))))))))'

Test #104:

score: 0
Accepted
time: 37ms
memory: 10456kb

input:

200000
113677 124498 984 131239 32431 108031 946 182003 35716 197277 139522 175653 6178 4715 78545 7736 153207 51892 120442 169876 180607 118966 109989 167104 65130 65454 9928 126713 39417 70722 162132 112465 13450 109179 112360 182803 28236 2787 176330 623 68801 28475 164633 171899 138393 13019 815...

output:

((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((...

result:

ok single line: '((((((((((((((((((((((((((((((...)()))()))))()())())()()))))()))'