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
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
#include <iostream>
#include <vector>
using namespace std;

namespace {

struct FibNum {
  vector<char> digits;

  friend istream& operator>>(istream& is, FibNum& x)
  {
    int n;
    is >> n;
    x.digits.resize(n);
    for (auto& d: x.digits) {
      int q;
      is >> q;
      d = q;
    }
    return is;
  }

  friend ostream& operator<<(ostream& os, FibNum const& x)
  {
    os << x.digits.size();
    for (auto d: x.digits) os << ' ' << int(d);
    return os;
  }

  FibNum& operator+=(FibNum const& rhs)
  {
    if (digits.size() < rhs.digits.size()) digits.resize(rhs.digits.size());
    int n = digits.size();
    int m = rhs.digits.size();
    for (int i = 0; i < m; ++i) {
      digits[i] += rhs.digits[i];
    }
    auto get = [&](int x) {
      if (x >= int(digits.size())) return 0;
      return int(digits[x]);
    };
    auto set = [&](int x, int d) {
      if (x >= int(digits.size())) digits.resize(x + 1);
      digits[x] = d;
    };
    for (int i = n; i >= 2; --i) {
      if (get(i) != 0) continue;
      if (i >= 3 && get(i - 1) == 3) {
        set(i, 1);
        set(i - 1, 1);
        set(i - 2, 0);
        set(i - 3, get(i - 3) + 1);
      } else if (get(i - 1) == 2) {
        if (i >= 3 && get(i - 2) == 0) {
          set(i, 1);
          set(i - 1, 0);
          set(i - 2, 0);
          set(i - 3, get(i - 3) + 1);
        } else if (get(i - 2) == 1) {
          set(i, 1);
          set(i - 1, 1);
          set(i - 2, 0);
        }
      } else if (get(i - 1) == 1) {
        if (get(i - 2) == 2) {
          set(i, 1);
          set(i - 1, 0);
          set(i - 2, 1);
        }
      }
    }
    if (get(1) == 3) {
      set(0, 1);
      set(1, 1);
      set(2, 1);
    }
    if (get(1) == 2) {
      if (get(2) == 0) {
        set(0, 1);
        set(1, 0);
        set(2, 1);
      } else {
        set(0, 0);
        set(1, 1);
        set(2, 0);
        set(3, 1);
      }
    }
    if (get(0) == 3) {
      set(0, 1);
      set(1, 1);
    }
    if (get(0) == 2) {
      if (get(1) == 0) {
        set(0, 0);
        set(1, 1);
      } else {
        set(0, 1);
        set(1, 0);
        set(2, 1);
      }
    }
    for (int i = 0; i < n - 1; ++i) {
      if (get(i) == 1 && get(i + 1) == 1 && get(i + 2) == 0) {
        set(i, 0);
        set(i + 1, 0);
        set(i + 2, 1);
      }
    }
    for (int i = n - 1; i >= 0; --i) {
      if (get(i) == 1 && get(i + 1) == 1 && get(i + 2) == 0) {
        set(i, 0);
        set(i + 1, 0);
        set(i + 2, 1);
      }
    }
    n = digits.size();
    return *this;
  }

  friend FibNum operator*(FibNum const& x, FibNum const& y)
  {
    FibNum res;
    FibNum p = x;
    FibNum c = x;
    for (auto const& d: y.digits) {
      if (d == 1) res += c;
      p += c;
      swap(p, c);
    }
    return res;
  }
};

}

int main()
{
  iostream::sync_with_stdio(false);
  cin.tie(nullptr);

  int t;
  cin >> t;
  while (t > 0) {
    --t;
    FibNum x, y;
    cin >> x >> y;
    cout << x * y << endl;
  }

  return 0;
}