QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#105529#6414. Classical Maximization ProblemmaspyAC ✓148ms27024kbC++2319.6kb2023-05-14 11:33:302023-05-14 11:33:31

Judging History

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

  • [2023-08-10 23:21:45]
  • System Update: QOJ starts to keep a history of the judgings of all the submissions.
  • [2023-05-14 11:33:31]
  • 评测
  • 测评结果:AC
  • 用时:148ms
  • 内存:27024kb
  • [2023-05-14 11:33:30]
  • 提交

answer

#line 1 "library/my_template.hpp"
#if defined(LOCAL)
#include <my_template_compiled.hpp>
#else
#pragma GCC optimize("Ofast")
#pragma GCC optimize("unroll-loops")

#include <bits/stdc++.h>

using namespace std;

using ll = long long;
using u32 = unsigned int;
using u64 = unsigned long long;
using i128 = __int128;

template <class T>
constexpr T infty = 0;
template <>
constexpr int infty<int> = 1'000'000'000;
template <>
constexpr ll infty<ll> = ll(infty<int>) * infty<int> * 2;
template <>
constexpr u32 infty<u32> = infty<int>;
template <>
constexpr u64 infty<u64> = infty<ll>;
template <>
constexpr i128 infty<i128> = i128(infty<ll>) * infty<ll>;
template <>
constexpr double infty<double> = infty<ll>;
template <>
constexpr long double infty<long double> = infty<ll>;

using pi = pair<ll, ll>;
using vi = vector<ll>;
template <class T>
using vc = vector<T>;
template <class T>
using vvc = vector<vc<T>>;
template <class T>
using vvvc = vector<vvc<T>>;
template <class T>
using vvvvc = vector<vvvc<T>>;
template <class T>
using vvvvvc = vector<vvvvc<T>>;
template <class T>
using pq = priority_queue<T>;
template <class T>
using pqg = priority_queue<T, vector<T>, greater<T>>;

#define vv(type, name, h, ...) \
  vector<vector<type>> name(h, vector<type>(__VA_ARGS__))
#define vvv(type, name, h, w, ...)   \
  vector<vector<vector<type>>> name( \
      h, vector<vector<type>>(w, vector<type>(__VA_ARGS__)))
#define vvvv(type, name, a, b, c, ...)       \
  vector<vector<vector<vector<type>>>> name( \
      a, vector<vector<vector<type>>>(       \
             b, vector<vector<type>>(c, vector<type>(__VA_ARGS__))))

// https://trap.jp/post/1224/
#define FOR1(a) for (ll _ = 0; _ < ll(a); ++_)
#define FOR2(i, a) for (ll i = 0; i < ll(a); ++i)
#define FOR3(i, a, b) for (ll i = a; i < ll(b); ++i)
#define FOR4(i, a, b, c) for (ll i = a; i < ll(b); i += (c))
#define FOR1_R(a) for (ll i = (a)-1; i >= ll(0); --i)
#define FOR2_R(i, a) for (ll i = (a)-1; i >= ll(0); --i)
#define FOR3_R(i, a, b) for (ll i = (b)-1; i >= ll(a); --i)
#define overload4(a, b, c, d, e, ...) e
#define overload3(a, b, c, d, ...) d
#define FOR(...) overload4(__VA_ARGS__, FOR4, FOR3, FOR2, FOR1)(__VA_ARGS__)
#define FOR_R(...) overload3(__VA_ARGS__, FOR3_R, FOR2_R, FOR1_R)(__VA_ARGS__)

#define FOR_subset(t, s) \
  for (ll t = (s); t >= 0; t = (t == 0 ? -1 : (t - 1) & (s)))
#define all(x) x.begin(), x.end()
#define len(x) ll(x.size())
#define elif else if

#define eb emplace_back
#define mp make_pair
#define mt make_tuple
#define fi first
#define se second

#define stoi stoll

int popcnt(int x) { return __builtin_popcount(x); }
int popcnt(u32 x) { return __builtin_popcount(x); }
int popcnt(ll x) { return __builtin_popcountll(x); }
int popcnt(u64 x) { return __builtin_popcountll(x); }
// (0, 1, 2, 3, 4) -> (-1, 0, 1, 1, 2)
int topbit(int x) { return (x == 0 ? -1 : 31 - __builtin_clz(x)); }
int topbit(u32 x) { return (x == 0 ? -1 : 31 - __builtin_clz(x)); }
int topbit(ll x) { return (x == 0 ? -1 : 63 - __builtin_clzll(x)); }
int topbit(u64 x) { return (x == 0 ? -1 : 63 - __builtin_clzll(x)); }
// (0, 1, 2, 3, 4) -> (-1, 0, 1, 0, 2)
int lowbit(int x) { return (x == 0 ? -1 : __builtin_ctz(x)); }
int lowbit(u32 x) { return (x == 0 ? -1 : __builtin_ctz(x)); }
int lowbit(ll x) { return (x == 0 ? -1 : __builtin_ctzll(x)); }
int lowbit(u64 x) { return (x == 0 ? -1 : __builtin_ctzll(x)); }

template <typename T, typename U>
T ceil(T x, U y) {
  return (x > 0 ? (x + y - 1) / y : x / y);
}
template <typename T, typename U>
T floor(T x, U y) {
  return (x > 0 ? x / y : (x - y + 1) / y);
}
template <typename T, typename U>
pair<T, T> divmod(T x, U y) {
  T q = floor(x, y);
  return {q, x - q * y};
}

template <typename T, typename U>
T SUM(const vector<U> &A) {
  T sum = 0;
  for (auto &&a: A) sum += a;
  return sum;
}

#define MIN(v) *min_element(all(v))
#define MAX(v) *max_element(all(v))
#define LB(c, x) distance((c).begin(), lower_bound(all(c), (x)))
#define UB(c, x) distance((c).begin(), upper_bound(all(c), (x)))
#define UNIQUE(x) \
  sort(all(x)), x.erase(unique(all(x)), x.end()), x.shrink_to_fit()

template <typename T>
T POP(deque<T> &que) {
  T a = que.front();
  que.pop_front();
  return a;
}
template <typename T>
T POP(pq<T> &que) {
  T a = que.top();
  que.pop();
  return a;
}
template <typename T>
T POP(pqg<T> &que) {
  assert(!que.empty());
  T a = que.top();
  que.pop();
  return a;
}
template <typename T>
T POP(vc<T> &que) {
  assert(!que.empty());
  T a = que.back();
  que.pop_back();
  return a;
}

template <typename F>
ll binary_search(F check, ll ok, ll ng, bool check_ok = true) {
  if (check_ok) assert(check(ok));
  while (abs(ok - ng) > 1) {
    auto x = (ng + ok) / 2;
    tie(ok, ng) = (check(x) ? mp(x, ng) : mp(ok, x));
  }
  return ok;
}
template <typename F>
double binary_search_real(F check, double ok, double ng, int iter = 100) {
  FOR(iter) {
    double x = (ok + ng) / 2;
    tie(ok, ng) = (check(x) ? mp(x, ng) : mp(ok, x));
  }
  return (ok + ng) / 2;
}

template <class T, class S>
inline bool chmax(T &a, const S &b) {
  return (a < b ? a = b, 1 : 0);
}
template <class T, class S>
inline bool chmin(T &a, const S &b) {
  return (a > b ? a = b, 1 : 0);
}

// ? は -1
vc<int> s_to_vi(const string &S, char first_char) {
  vc<int> A(S.size());
  FOR(i, S.size()) { A[i] = (S[i] != '?' ? S[i] - first_char : -1); }
  return A;
}

template <typename T, typename U>
vector<T> cumsum(vector<U> &A, int off = 1) {
  int N = A.size();
  vector<T> B(N + 1);
  FOR(i, N) { B[i + 1] = B[i] + A[i]; }
  if (off == 0) B.erase(B.begin());
  return B;
}

// stable sort
template <typename T>
vector<int> argsort(const vector<T> &A) {
  vector<int> ids(len(A));
  iota(all(ids), 0);
  sort(all(ids),
       [&](int i, int j) { return (A[i] == A[j] ? i < j : A[i] < A[j]); });
  return ids;
}

// A[I[0]], A[I[1]], ...
template <typename T>
vc<T> rearrange(const vc<T> &A, const vc<int> &I) {
  vc<T> B(len(I));
  FOR(i, len(I)) B[i] = A[I[i]];
  return B;
}
#endif
#line 1 "library/other/io.hpp"
// based on yosupo's fastio
#include <unistd.h>

namespace fastio {
#define FASTIO
// クラスが read(), print() を持っているかを判定するメタ関数
struct has_write_impl {
  template <class T>
  static auto check(T &&x) -> decltype(x.write(), std::true_type{});

  template <class T>
  static auto check(...) -> std::false_type;
};

template <class T>
class has_write : public decltype(has_write_impl::check<T>(std::declval<T>())) {
};

struct has_read_impl {
  template <class T>
  static auto check(T &&x) -> decltype(x.read(), std::true_type{});

  template <class T>
  static auto check(...) -> std::false_type;
};

template <class T>
class has_read : public decltype(has_read_impl::check<T>(std::declval<T>())) {};

struct Scanner {
  FILE *fp;
  char line[(1 << 15) + 1];
  size_t st = 0, ed = 0;
  void reread() {
    memmove(line, line + st, ed - st);
    ed -= st;
    st = 0;
    ed += fread(line + ed, 1, (1 << 15) - ed, fp);
    line[ed] = '\0';
  }
  bool succ() {
    while (true) {
      if (st == ed) {
        reread();
        if (st == ed) return false;
      }
      while (st != ed && isspace(line[st])) st++;
      if (st != ed) break;
    }
    if (ed - st <= 50) {
      bool sep = false;
      for (size_t i = st; i < ed; i++) {
        if (isspace(line[i])) {
          sep = true;
          break;
        }
      }
      if (!sep) reread();
    }
    return true;
  }
  template <class T, enable_if_t<is_same<T, string>::value, int> = 0>
  bool read_single(T &ref) {
    if (!succ()) return false;
    while (true) {
      size_t sz = 0;
      while (st + sz < ed && !isspace(line[st + sz])) sz++;
      ref.append(line + st, sz);
      st += sz;
      if (!sz || st != ed) break;
      reread();
    }
    return true;
  }
  template <class T, enable_if_t<is_integral<T>::value, int> = 0>
  bool read_single(T &ref) {
    if (!succ()) return false;
    bool neg = false;
    if (line[st] == '-') {
      neg = true;
      st++;
    }
    ref = T(0);
    while (isdigit(line[st])) { ref = 10 * ref + (line[st++] & 0xf); }
    if (neg) ref = -ref;
    return true;
  }
  template <typename T,
            typename enable_if<has_read<T>::value>::type * = nullptr>
  inline bool read_single(T &x) {
    x.read();
    return true;
  }
  bool read_single(double &ref) {
    string s;
    if (!read_single(s)) return false;
    ref = std::stod(s);
    return true;
  }
  bool read_single(char &ref) {
    string s;
    if (!read_single(s) || s.size() != 1) return false;
    ref = s[0];
    return true;
  }
  template <class T>
  bool read_single(vector<T> &ref) {
    for (auto &d: ref) {
      if (!read_single(d)) return false;
    }
    return true;
  }
  template <class T, class U>
  bool read_single(pair<T, U> &p) {
    return (read_single(p.first) && read_single(p.second));
  }
  template <size_t N = 0, typename T>
  void read_single_tuple(T &t) {
    if constexpr (N < std::tuple_size<T>::value) {
      auto &x = std::get<N>(t);
      read_single(x);
      read_single_tuple<N + 1>(t);
    }
  }
  template <class... T>
  bool read_single(tuple<T...> &tpl) {
    read_single_tuple(tpl);
    return true;
  }
  void read() {}
  template <class H, class... T>
  void read(H &h, T &... t) {
    bool f = read_single(h);
    assert(f);
    read(t...);
  }
  Scanner(FILE *fp) : fp(fp) {}
};

struct Printer {
  Printer(FILE *_fp) : fp(_fp) {}
  ~Printer() { flush(); }

  static constexpr size_t SIZE = 1 << 15;
  FILE *fp;
  char line[SIZE], small[50];
  size_t pos = 0;
  void flush() {
    fwrite(line, 1, pos, fp);
    pos = 0;
  }
  void write(const char val) {
    if (pos == SIZE) flush();
    line[pos++] = val;
  }
  template <class T, enable_if_t<is_integral<T>::value, int> = 0>
  void write(T val) {
    if (pos > (1 << 15) - 50) flush();
    if (val == 0) {
      write('0');
      return;
    }
    if (val < 0) {
      write('-');
      val = -val; // todo min
    }
    size_t len = 0;
    while (val) {
      small[len++] = char(0x30 | (val % 10));
      val /= 10;
    }
    for (size_t i = 0; i < len; i++) { line[pos + i] = small[len - 1 - i]; }
    pos += len;
  }
  void write(const string s) {
    for (char c: s) write(c);
  }
  void write(const char *s) {
    size_t len = strlen(s);
    for (size_t i = 0; i < len; i++) write(s[i]);
  }
  void write(const double x) {
    ostringstream oss;
    oss << fixed << setprecision(15) << x;
    string s = oss.str();
    write(s);
  }
  void write(const long double x) {
    ostringstream oss;
    oss << fixed << setprecision(15) << x;
    string s = oss.str();
    write(s);
  }
  template <typename T,
            typename enable_if<has_write<T>::value>::type * = nullptr>
  inline void write(T x) {
    x.write();
  }
  template <class T>
  void write(const vector<T> val) {
    auto n = val.size();
    for (size_t i = 0; i < n; i++) {
      if (i) write(' ');
      write(val[i]);
    }
  }
  template <class T, class U>
  void write(const pair<T, U> val) {
    write(val.first);
    write(' ');
    write(val.second);
  }
  template <size_t N = 0, typename T>
  void write_tuple(const T t) {
    if constexpr (N < std::tuple_size<T>::value) {
      if constexpr (N > 0) { write(' '); }
      const auto x = std::get<N>(t);
      write(x);
      write_tuple<N + 1>(t);
    }
  }
  template <class... T>
  bool write(tuple<T...> tpl) {
    write_tuple(tpl);
    return true;
  }
  template <class T, size_t S>
  void write(const array<T, S> val) {
    auto n = val.size();
    for (size_t i = 0; i < n; i++) {
      if (i) write(' ');
      write(val[i]);
    }
  }
  void write(i128 val) {
    string s;
    bool negative = 0;
    if (val < 0) {
      negative = 1;
      val = -val;
    }
    while (val) {
      s += '0' + int(val % 10);
      val /= 10;
    }
    if (negative) s += "-";
    reverse(all(s));
    if (len(s) == 0) s = "0";
    write(s);
  }
};
Scanner scanner = Scanner(stdin);
Printer printer = Printer(stdout);
void flush() { printer.flush(); }
void print() { printer.write('\n'); }
template <class Head, class... Tail>
void print(Head &&head, Tail &&... tail) {
  printer.write(head);
  if (sizeof...(Tail)) printer.write(' ');
  print(forward<Tail>(tail)...);
}

void read() {}
template <class Head, class... Tail>
void read(Head &head, Tail &... tail) {
  scanner.read(head);
  read(tail...);
}
} // namespace fastio
using fastio::print;
using fastio::flush;
using fastio::read;

#define INT(...)   \
  int __VA_ARGS__; \
  read(__VA_ARGS__)
#define LL(...)   \
  ll __VA_ARGS__; \
  read(__VA_ARGS__)
#define STR(...)      \
  string __VA_ARGS__; \
  read(__VA_ARGS__)
#define CHAR(...)   \
  char __VA_ARGS__; \
  read(__VA_ARGS__)
#define DBL(...)      \
  double __VA_ARGS__; \
  read(__VA_ARGS__)

#define VEC(type, name, size) \
  vector<type> name(size);    \
  read(name)
#define VV(type, name, h, w)                     \
  vector<vector<type>> name(h, vector<type>(w)); \
  read(name)

void YES(bool t = 1) { print(t ? "YES" : "NO"); }
void NO(bool t = 1) { YES(!t); }
void Yes(bool t = 1) { print(t ? "Yes" : "No"); }
void No(bool t = 1) { Yes(!t); }
void yes(bool t = 1) { print(t ? "yes" : "no"); }
void no(bool t = 1) { yes(!t); }
#line 2 "library/graph/base.hpp"

template <typename T>
struct Edge {
  int frm, to;
  T cost;
  int id;
};

template <typename T = int, bool directed = false>
struct Graph {
  int N, M;
  using cost_type = T;
  using edge_type = Edge<T>;
  vector<edge_type> edges;
  vector<int> indptr;
  vector<edge_type> csr_edges;
  vc<int> vc_deg, vc_indeg, vc_outdeg;
  bool prepared;

  class OutgoingEdges {
  public:
    OutgoingEdges(const Graph* G, int l, int r) : G(G), l(l), r(r) {}

    const edge_type* begin() const {
      if (l == r) { return 0; }
      return &G->csr_edges[l];
    }

    const edge_type* end() const {
      if (l == r) { return 0; }
      return &G->csr_edges[r];
    }

  private:
    const Graph* G;
    int l, r;
  };

  bool is_prepared() { return prepared; }
  constexpr bool is_directed() { return directed; }

  Graph() : N(0), M(0), prepared(0) {}
  Graph(int N) : N(N), M(0), prepared(0) {}

  void build(int n) {
    N = n, M = 0;
    prepared = 0;
    edges.clear();
    indptr.clear();
    csr_edges.clear();
    vc_deg.clear();
    vc_indeg.clear();
    vc_outdeg.clear();
  }

  void add(int frm, int to, T cost = 1, int i = -1) {
    assert(!prepared);
    assert(0 <= frm && 0 <= to && to < N);
    if (i == -1) i = M;
    auto e = edge_type({frm, to, cost, i});
    edges.eb(e);
    ++M;
  }

  // wt, off
  void read_tree(bool wt = false, int off = 1) { read_graph(N - 1, wt, off); }

  void read_graph(int M, bool wt = false, int off = 1) {
    for (int m = 0; m < M; ++m) {
      INT(a, b);
      a -= off, b -= off;
      if (!wt) {
        add(a, b);
      } else {
        T c;
        read(c);
        add(a, b, c);
      }
    }
    build();
  }

  void read_parent(int off = 1) {
    for (int v = 1; v < N; ++v) {
      INT(p);
      p -= off;
      add(p, v);
    }
    build();
  }

  void build() {
    assert(!prepared);
    prepared = true;
    indptr.assign(N + 1, 0);
    for (auto&& e: edges) {
      indptr[e.frm + 1]++;
      if (!directed) indptr[e.to + 1]++;
    }
    for (int v = 0; v < N; ++v) { indptr[v + 1] += indptr[v]; }
    auto counter = indptr;
    csr_edges.resize(indptr.back() + 1);
    for (auto&& e: edges) {
      csr_edges[counter[e.frm]++] = e;
      if (!directed)
        csr_edges[counter[e.to]++] = edge_type({e.to, e.frm, e.cost, e.id});
    }
  }

  OutgoingEdges operator[](int v) const {
    assert(prepared);
    return {this, indptr[v], indptr[v + 1]};
  }

  vc<int> deg_array() {
    if (vc_deg.empty()) calc_deg();
    return vc_deg;
  }

  pair<vc<int>, vc<int>> deg_array_inout() {
    if (vc_indeg.empty()) calc_deg_inout();
    return {vc_indeg, vc_outdeg};
  }

  int deg(int v) {
    if (vc_deg.empty()) calc_deg();
    return vc_deg[v];
  }

  int in_deg(int v) {
    if (vc_indeg.empty()) calc_deg_inout();
    return vc_indeg[v];
  }

  int out_deg(int v) {
    if (vc_outdeg.empty()) calc_deg_inout();
    return vc_outdeg[v];
  }

  void debug() {
    print("Graph");
    if (!prepared) {
      print("frm to cost id");
      for (auto&& e: edges) print(e.frm, e.to, e.cost, e.id);
    } else {
      print("indptr", indptr);
      print("frm to cost id");
      FOR(v, N) for (auto&& e: (*this)[v]) print(e.frm, e.to, e.cost, e.id);
    }
  }

  // G における頂点 V[i] が、新しいグラフで i になるようにする
  Graph<T, directed> rearrange(vc<int> V) {
    int n = len(V);
    map<int, int> MP;
    FOR(i, n) MP[V[i]] = i;
    Graph<T, directed> G(n);
    for (auto&& e: edges) {
      if (MP.count(e.frm) && MP.count(e.to)) {
        G.add(MP[e.frm], MP[e.to], e.cost);
      }
    }
    G.build();
    return G;
  }

private:
  void calc_deg() {
    assert(vc_deg.empty());
    vc_deg.resize(N);
    for (auto&& e: edges) vc_deg[e.frm]++, vc_deg[e.to]++;
  }

  void calc_deg_inout() {
    assert(vc_indeg.empty());
    vc_indeg.resize(N);
    vc_outdeg.resize(N);
    for (auto&& e: edges) { vc_indeg[e.to]++, vc_outdeg[e.frm]++; }
  }
};
#line 2 "library/graph/maximum_matching_of_line_graph.hpp"

// 同じ頂点に接続する 2 辺をマッチできる
template <typename GT>
vc<pair<int, int>> maximum_matching_of_line_graph(GT& G) {
  assert(!G.is_directed());
  assert(G.is_prepared());
  const int N = G.N, M = G.M;
  vc<pair<int, int>> ANS;
  vc<int> V;
  vc<int> par(N, -1); // eid
  {
    vc<int> done(N);
    FOR(v, N) {
      if (done[v]) continue;
      int cnt = 0;
      auto dfs = [&](auto& dfs, int v, int p) -> void {
        V.eb(v);
        par[v] = p;
        done[v] = 1;
        for (auto&& e: G[v]) {
          ++cnt;
          if (done[e.to]) continue;
          dfs(dfs, e.to, v);
        }
      };
      dfs(dfs, v, -1);
    }
  }
  vc<int> ord(N);
  FOR(i, N) ord[V[i]] = i;
  vc<int> done(M);
  FOR_R(i, N) {
    int v = V[i];
    vc<int> down;
    int up = -1;
    for (auto&& e: G[v]) {
      if (done[e.id]) continue;
      if (up == -1 && e.to == par[v]) up = e.id;
      if (ord[e.to] > ord[v]) down.eb(e.id);
    }
    while (len(down) >= 2) {
      auto i = POP(down);
      auto j = POP(down);
      ANS.eb(i, j);
      done[i] = done[j] = 1;
    }
    if (len(down) == 0) continue;
    if (up != -1) {
      int x = up;
      int y = down[0];
      done[x] = done[y] = 1;
      ANS.eb(x, y);
    }
  }
  return ANS;
}
#line 5 "main.cpp"

void solve() {
  LL(N);
  VEC(pi, XY, N + N);
  vi X, Y;
  FOR(i, N + N) X.eb(XY[i].fi);
  FOR(i, N + N) Y.eb(XY[i].se);
  UNIQUE(X);
  UNIQUE(Y);
  FOR(i, N + N) XY[i].fi = LB(X, XY[i].fi);
  FOR(i, N + N) XY[i].se = LB(Y, XY[i].se);

  int NX = len(X), NY = len(Y);
  Graph<bool, 0> G(NX + NY);
  for (auto&& [a, b]: XY) G.add(a, NX + b);
  G.build();
  auto match = maximum_matching_of_line_graph<decltype(G)>(G);
  vc<bool> used(N + N);
  for (auto&& [a, b]: match) used[a] = used[b] = 1;
  vc<int> rest;
  FOR(i, N + N) if (!used[i]) rest.eb(i);

  ll ans = len(match);

  while (len(rest) >= 2) { match.eb(POP(rest), POP(rest)); }
  print(ans);
  for (auto&& [a, b]: match) print(1 + a, 1 + b);
}

signed main() {
  INT(T);
  FOR(T) solve();
  return 0;
}

詳細信息

Test #1:

score: 100
Accepted
time: 2ms
memory: 3472kb

input:

3
2
0 0
0 1
1 0
1 1
2
0 0
0 1
0 2
0 3
2
0 0
1 1
2 2
3 3

output:

2
3 4
2 1
2
4 3
2 1
0
3 4
1 2

result:

ok ok (3 test cases)

Test #2:

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

input:

10000
2
-107276936 -310501829
419434212 585811870
-65754386 -491212232
381152038 897148193
3
-474045168 493506332
299114415 540203303
165808153 983551
-506936261 -694189769
766718170 -725540031
975267148 -593051087
1
-818952276 -762387923
584023914 -612401389
6
-77701228 -266484128
659434465 6322062...

output:

0
3 4
1 2
0
5 6
3 4
1 2
0
1 2
0
11 12
9 10
7 8
5 6
3 4
1 2
0
13 14
11 12
9 10
7 8
5 6
3 4
1 2
0
1 2
0
65 66
63 64
61 62
59 60
57 58
55 56
53 54
51 52
49 50
47 48
45 46
43 44
41 42
39 40
37 38
35 36
33 34
31 32
29 30
27 28
25 26
23 24
21 22
19 20
17 18
15 16
13 14
11 12
9 10
7 8
5 6
3 4
1 2
0
5 6
3 4...

result:

ok ok (10000 test cases)

Test #3:

score: 0
Accepted
time: 54ms
memory: 3696kb

input:

10000
1
999855386 999580905
999342928 999615227
21
999601032 999015398
999155628 999176944
999309856 999524434
999121011 999509537
999323572 999685730
999272272 999769606
999450559 999390758
999632027 999178534
999024993 999463838
999784856 999374197
999980525 999366771
999241260 999516879
999599548...

output:

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

result:

ok ok (10000 test cases)

Test #4:

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

input:

10000
5
999984799 999981445
999958394 999984217
999994978 999981258
999955539 999938710
999936554 999963561
999907222 999907508
999938166 999941959
999910567 999986887
999901446 999961092
999994730 999963038
5
999916115 999962400
999948250 999940355
999954204 999920844
999928148 999990369
999978118 ...

output:

0
9 10
7 8
5 6
3 4
1 2
0
9 10
7 8
5 6
3 4
1 2
0
21 22
19 20
17 18
15 16
13 14
11 12
9 10
7 8
5 6
3 4
1 2
0
7 8
5 6
3 4
1 2
0
31 32
29 30
27 28
25 26
23 24
21 22
19 20
17 18
15 16
13 14
11 12
9 10
7 8
5 6
3 4
1 2
0
9 10
7 8
5 6
3 4
1 2
0
15 16
13 14
11 12
9 10
7 8
5 6
3 4
1 2
0
67 68
65 66
63 64
61 6...

result:

ok ok (10000 test cases)

Test #5:

score: 0
Accepted
time: 58ms
memory: 3612kb

input:

10000
1
999990146 999993828
999995909 999996353
56
999999851 999991179
999997250 999997987
999990590 999997316
999997350 999996856
999997034 999996236
999999396 999996897
999991180 999993309
999991265 999995185
999993952 999994054
999990210 999994471
999993201 999995893
999997170 999998971
999998201...

output:

0
1 2
1
111 76
110 112
108 109
106 107
104 105
102 103
100 101
98 99
96 97
94 95
92 93
90 91
88 89
86 87
84 85
82 83
80 81
78 79
75 77
73 74
71 72
69 70
67 68
65 66
63 64
61 62
59 60
57 58
55 56
53 54
51 52
49 50
47 48
45 46
43 44
41 42
39 40
37 38
35 36
33 34
31 32
29 30
27 28
25 26
23 24
21 22
19 ...

result:

ok ok (10000 test cases)

Test #6:

score: 0
Accepted
time: 58ms
memory: 3680kb

input:

10000
5
999999432 999999813
999999271 999999233
999999043 999999606
999999523 999999406
999999564 999999274
999999641 999999102
999999903 999999858
999999058 999999098
999999974 999999119
999999643 999999620
5
999999370 999999738
999999181 999999907
999999163 999999783
999999393 999999086
999999661 ...

output:

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

result:

ok ok (10000 test cases)

Test #7:

score: 0
Accepted
time: 55ms
memory: 3536kb

input:

10000
14
-369804569 -904204119
526374829 -824374353
-127549933 -904204119
-68608787 929413707
-68608787 -363454459
526374829 929413707
693313139 -824374353
-127549933 -726843762
526374829 -904204119
526374829 -363454459
526374829 -409731440
693313139 -726843762
693313139 929413707
-68608787 -8243743...

output:

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

result:

ok ok (10000 test cases)

Test #8:

score: 0
Accepted
time: 56ms
memory: 3560kb

input:

10000
5
-536123007 813600068
870612905 -192916365
-891077277 -192916365
-169354047 -86845158
-204880568 -86845158
-909192812 -613162163
-536123007 -613162163
602684169 -613162163
-909192812 813600068
602684169 -86845158
3
-296375355 579758813
-296375355 253508589
-296375355 -927878827
267975935 -927...

output:

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

result:

ok ok (10000 test cases)

Test #9:

score: 0
Accepted
time: 45ms
memory: 3680kb

input:

10000
13
38708650 -400244265
805800882 -207412170
-922757982 569623504
330308285 -400244265
-922757982 193222226
330308285 -701148819
-28889088 854967427
284328781 704931219
-397379302 854967427
284328781 252366771
-699696493 -701148819
953729077 -601089169
-858131099 -701148819
-397379302 193222226...

output:

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

result:

ok ok (10000 test cases)

Test #10:

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

input:

10000
2
-254673318 743896676
326182652 743896676
115024593 743896676
989112001 743896676
1
453875458 284043499
869627863 284043499
8
-68955663 625858753
-621253434 625858753
-315653340 625858753
-85160525 625858753
-592616333 625858753
114285020 625858753
618762545 625858753
524402507 625858753
1512...

output:

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

result:

ok ok (10000 test cases)

Test #11:

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

input:

10000
10
-302093372 -991014187
542702243 714369751
-370626462 -991014187
-700169063 714369751
-982732066 -991014187
-763837020 -991014187
320477527 -991014187
290144737 -991014187
18975042 -991014187
-339021181 -991014187
-525462052 -991014187
290144737 714369751
-538375359 714369751
15943074 -99101...

output:

10
20 19
15 13
12 4
16 2
18 17
14 11
10 9
8 7
6 3
5 1
10
20 19
17 15
8 7
6 3
9 1
16 14
13 12
11 10
5 4
18 2
18
35 33
32 31
28 26
25 22
21 15
11 10
7 6
14 3
34 30
29 27
24 23
20 19
18 17
16 12
9 8
5 4
2 1
36 13
35
70 68
66 65
63 61
57 52
51 48
42 41
39 38
35 32
31 30
27 26
24 23
20 17
16 14
13 12
6 5...

result:

ok ok (10000 test cases)

Test #12:

score: 0
Accepted
time: 54ms
memory: 3544kb

input:

10000
5
192354975 -209258445
955055576 -209258445
286707627 -209258445
-574795734 -209258445
-305243931 -209258445
-629755833 -209258445
-337515030 -209258445
980285884 -209258445
501317910 -209258445
312382135 -209258445
24
272466007 467288536
-963587196 -778274012
240097765 -778274012
-926564605 4...

output:

5
10 9
8 7
5 4
3 2
6 1
24
47 44
43 41
39 36
35 32
31 25
23 21
20 18
17 13
10 8
4 1
3 9
48 46
45 42
40 38
37 34
33 30
29 28
27 26
24 22
19 16
15 14
12 11
7 6
2 5
30
60 59
58 55
54 53
49 46
45 44
43 39
33 32
31 30
29 28
24 23
21 18
14 11
7 6
5 1
2 41
57 56
52 51
50 48
47 42
40 38
37 36
35 34
27 26
25 ...

result:

ok ok (10000 test cases)

Test #13:

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

input:

10000
11
135813326 608040171
135813326 -96255413
135813326 -31734533
135813326 -423296887
135813326 999444876
135813326 946760362
135813326 -599331154
135813326 -441599790
135813326 233339336
135813326 -759375115
135813326 163868817
135813326 321091518
135813326 -402236877
135813326 625124369
135813...

output:

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

result:

ok ok (10000 test cases)

Test #14:

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

input:

10000
19
321791336 -226466052
321791336 138757626
321791336 -613429828
944682716 -446131303
321791336 -927463006
944682716 280242351
944682716 229347131
944682716 155568891
321791336 389911916
944682716 72836839
944682716 -613429828
321791336 229347131
944682716 -927463006
944682716 138757626
321791...

output:

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

result:

ok ok (10000 test cases)

Test #15:

score: 0
Accepted
time: 49ms
memory: 3600kb

input:

10000
2
414226098 -53411011
414226098 -515361565
-572270323 -515361565
-572270323 -53411011
36
660074753 623771687
-917096747 533975361
660074753 337851674
-917096747 -902052044
-917096747 846238046
660074753 197157825
660074753 533975361
660074753 626049519
-917096747 -108293477
-917096747 64055247...

output:

2
2 1
4 3
36
72 70
67 66
65 64
61 60
59 57
56 55
54 53
50 49
47 45
44 41
39 37
34 29
28 27
26 24
21 17
15 12
11 8
6 3
7 1
71 69
68 63
62 58
52 51
48 46
43 42
40 38
36 35
33 32
31 30
25 23
22 20
19 18
16 14
13 10
9 5
4 2
1
2 1
27
52 51
49 47
46 44
42 40
39 38
35 33
32 31
25 23
22 20
19 18
17 16
15 14...

result:

ok ok (10000 test cases)

Test #16:

score: 0
Accepted
time: 57ms
memory: 3504kb

input:

10000
6
475408912 -758469962
-99052258 -758469962
-716758863 872897211
-66386054 -170278720
388817201 174925294
-776227900 -285032873
475408912 872897211
-997698204 -236300379
-716758863 -85108619
-776227900 -85108619
-716758863 -236300379
-66386054 -85108619
26
879874105 877328664
-286895493 621573...

output:

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

result:

ok ok (10000 test cases)

Test #17:

score: 0
Accepted
time: 62ms
memory: 3548kb

input:

10000
9
-980409638 -116749812
830791554 -690170434
984923479 323045898
984923479 -116749812
-197520273 323045898
-858897130 -43820432
258471629 -979749918
258471629 -690170434
-858897130 323045898
105960247 -690170434
-197520273 -841854666
-234415044 -116749812
105960247 323045898
-358435325 -202957...

output:

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

result:

ok ok (10000 test cases)

Test #18:

score: 0
Accepted
time: 59ms
memory: 3824kb

input:

1000
45
840710004 395646135
-851514725 100215150
-423513540 -649756636
464326407 -482837664
-179781718 755995077
492651722 -268519233
367302062 -111998374
494634876 842096727
973319201 399526783
-703731734 -989899930
758934136 -959677785
-682507454 58961947
394206800 272218663
752299573 489795348
89...

output:

0
89 90
87 88
85 86
83 84
81 82
79 80
77 78
75 76
73 74
71 72
69 70
67 68
65 66
63 64
61 62
59 60
57 58
55 56
53 54
51 52
49 50
47 48
45 46
43 44
41 42
39 40
37 38
35 36
33 34
31 32
29 30
27 28
25 26
23 24
21 22
19 20
17 18
15 16
13 14
11 12
9 10
7 8
5 6
3 4
1 2
0
265 266
263 264
261 262
259 260
257...

result:

ok ok (1000 test cases)

Test #19:

score: 0
Accepted
time: 62ms
memory: 3840kb

input:

1000
113
999827252 999728856
999923862 999631025
999319008 999580013
999333375 999174260
999509073 999545469
999194399 999278837
999715162 999728030
999881205 999764413
999917667 999953211
999651496 999869003
999693536 999169883
999545275 999786246
999969774 999735073
999892216 999697498
999954099 9...

output:

0
225 226
223 224
221 222
219 220
217 218
215 216
213 214
211 212
209 210
207 208
205 206
203 204
201 202
199 200
197 198
195 196
193 194
191 192
189 190
187 188
185 186
183 184
181 182
179 180
177 178
175 176
173 174
171 172
169 170
167 168
165 166
163 164
161 162
159 160
157 158
155 156
153 154
15...

result:

ok ok (1000 test cases)

Test #20:

score: 0
Accepted
time: 65ms
memory: 3876kb

input:

1000
16
999918424 999907758
999901558 999910407
999969229 999929343
999986216 999968746
999977167 999921267
999967186 999932634
999999615 999951539
999964903 999931387
999942189 999989158
999990624 999917294
999964661 999935732
999971224 999975496
999972707 999972034
999935060 999934824
999992448 99...

output:

0
31 32
29 30
27 28
25 26
23 24
21 22
19 20
17 18
15 16
13 14
11 12
9 10
7 8
5 6
3 4
1 2
0
23 24
21 22
19 20
17 18
15 16
13 14
11 12
9 10
7 8
5 6
3 4
1 2
0
55 56
53 54
51 52
49 50
47 48
45 46
43 44
41 42
39 40
37 38
35 36
33 34
31 32
29 30
27 28
25 26
23 24
21 22
19 20
17 18
15 16
13 14
11 12
9 10
7...

result:

ok ok (1000 test cases)

Test #21:

score: 0
Accepted
time: 63ms
memory: 3812kb

input:

1000
227
999994296 999999816
999998835 999994618
999998487 999991646
999995178 999996563
999996865 999996231
999990660 999996917
999995746 999998295
999993178 999995596
999994361 999991179
999990519 999991221
999996210 999992041
999991924 999992546
999991346 999991081
999998929 999995904
999992182 9...

output:

21
378 315
247 90
448 142
405 297
253 3
368 124
109 278
300 263
231 112
351 43
367 172
436 128
49 22
235 322
176 100
203 180
135 145
163 10
363 9
442 340
177 148
453 454
451 452
449 450
446 447
444 445
441 443
439 440
437 438
434 435
432 433
430 431
428 429
426 427
424 425
422 423
420 421
418 419
41...

result:

ok ok (1000 test cases)

Test #22:

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

input:

1000
87
999999138 999999640
999999785 999999342
999999914 999999854
999999771 999999416
999999011 999999479
999999217 999999865
999999423 999999937
999999684 999999301
999999323 999999399
999999071 999999949
999999226 999999154
999999770 999999090
999999778 999999735
999999034 999999517
999999803 99...

output:

23
56 121
164 159
168 158
161 143
98 12
115 65
112 72
162 16
27 83
149 131
124 51
23 15
155 142
111 166
120 86
6 70
71 110
26 104
132 92
75 10
139 135
165 47
54 80
173 174
171 172
169 170
163 167
157 160
154 156
152 153
150 151
147 148
145 146
141 144
138 140
136 137
133 134
129 130
127 128
125 126
...

result:

ok ok (1000 test cases)

Test #23:

score: 0
Accepted
time: 42ms
memory: 3692kb

input:

1000
154
825004796 802565417
-88001579 364640592
778546546 -57508543
283686672 -57508543
473326798 -826011553
152069566 -577222261
528378065 -577222261
-56296909 -700802856
-711386984 953035370
-711386984 -577222261
895677144 -359290436
840183000 364640592
528378065 -752921798
895677144 -577222261
8...

output:

154
158 86
216 104
272 111
92 60
260 129
13 29
277 102
47 70
292 239
165 207
232 211
198 180
299 231
217 147
22 18
307 301
290 236
196 38
278 234
144 215
266 251
250 192
298 289
170 28
17 9
275 221
121 114
77 73
74 41
308 210
188 176
174 127
15 80
304 285
264 252
248 224
82 50
254 193
164 160
157 15...

result:

ok ok (1000 test cases)

Test #24:

score: 0
Accepted
time: 48ms
memory: 3792kb

input:

1000
63
859289659 -203061342
831821977 -778714404
640602188 478366497
205686723 -232506600
831821977 -498015901
-494818974 35295117
612307834 -234198721
612307834 -495294231
-898414633 476295237
995217164 -232506600
831821977 934046031
-441937174 432603845
995217164 938111737
874550198 -309423823
87...

output:

63
124 110
104 15
116 14
86 71
52 39
120 30
126 121
113 83
51 32
9 19
100 50
40 47
111 88
80 69
37 11
5 2
35 87
93 57
70 115
109 106
46 79
77 64
66 20
105 17
53 55
108 67
61 44
43 33
82 59
28 27
25 16
34 21
101 91
89 84
73 58
8 7
76 48
125 3
114 112
85 29
26 23
122 75
95 68
60 45
24 18
65 1
96 102
3...

result:

ok ok (1000 test cases)

Test #25:

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

input:

1000
83
-242219535 -952757420
753940135 -13368420
-180286961 -530756654
586180284 -625675517
-437809383 472014390
-242857851 -924097244
-382920283 -625675517
-630990620 -349004314
-242219535 122507147
208821889 -495849186
-736086757 -489441806
-996984615 -974276781
-275306966 -25109596
967186464 -65...

output:

83
84 26
139 154
125 114
17 158
146 6
164 155
157 70
97 141
106 145
93 8
119 59
160 134
105 87
110 67
21 138
62 38
65 16
123 57
129 76
88 90
54 149
3 77
80 41
132 127
99 35
33 18
46 36
24 39
135 120
31 32
156 126
152 19
147 98
83 5
162 140
23 161
153 136
122 109
73 50
166 107
49 75
20 64
142 92
11 6...

result:

ok ok (1000 test cases)

Test #26:

score: 0
Accepted
time: 35ms
memory: 3800kb

input:

1000
142
-28949259 975363136
-628367037 975363136
786525293 975363136
-8339801 975363136
868048337 975363136
208733157 975363136
-724415150 975363136
213367214 975363136
-686387505 975363136
-970451747 975363136
761135553 975363136
-551594491 975363136
-925080593 975363136
-243465321 975363136
-6722...

output:

142
284 283
282 281
280 279
278 277
276 275
274 273
272 271
270 269
268 267
266 265
264 263
262 261
260 259
258 257
256 255
254 253
252 251
250 249
248 247
246 245
244 243
242 241
240 239
238 237
236 235
234 233
232 231
230 229
228 227
226 225
224 223
222 221
220 219
218 217
216 215
214 213
212 211
...

result:

ok ok (1000 test cases)

Test #27:

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

input:

1000
458
102600109 754726017
-66999931 951825513
-767202008 951825513
-845069119 754726017
-448344214 754726017
174342794 754726017
176530329 754726017
553731053 754726017
-69189351 754726017
-455330522 951825513
-261324017 754726017
809818684 951825513
745593756 951825513
-130095774 754726017
-2737...

output:

458
913 911
908 906
905 903
901 900
899 896
893 892
891 884
882 881
879 878
876 875
873 870
869 868
866 862
861 860
858 857
856 855
853 852
851 846
845 842
841 838
836 835
831 830
829 827
822 820
819 818
816 814
813 812
811 808
806 804
799 797
795 793
792 791
786 785
784 782
779 776
775 774
773 772
...

result:

ok ok (1000 test cases)

Test #28:

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

input:

1000
273
638010636 -796267612
299279783 -796267612
321987052 -571635029
-388046291 -571635029
-491314021 -796267612
130988206 -571635029
32427063 -571635029
51875304 -571635029
-508530089 -796267612
269379692 -571635029
214241513 -796267612
720122947 -796267612
-678543365 -796267612
158504867 -79626...

output:

273
539 537
536 535
531 529
527 525
524 523
522 521
520 517
514 512
511 509
507 504
501 497
496 495
494 493
492 491
490 489
486 483
482 481
480 478
477 475
473 472
471 469
467 466
463 461
460 459
458 455
452 449
448 447
445 444
443 442
440 438
434 433
432 431
430 427
426 425
419 418
417 416
413 411
...

result:

ok ok (1000 test cases)

Test #29:

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

input:

1000
75
429681826 802800421
429681826 -608943566
429681826 -787858696
429681826 507047252
429681826 485971873
429681826 -346306621
429681826 -612405192
429681826 -13671560
429681826 -816374335
429681826 513226316
429681826 892335083
429681826 -352600432
429681826 -556540475
429681826 -504699273
4296...

output:

75
150 149
148 147
146 145
144 143
142 141
140 139
138 137
136 135
134 133
132 131
130 129
128 127
126 125
124 123
122 121
120 119
118 117
116 115
114 113
112 111
110 109
108 107
106 105
104 103
102 101
100 99
98 97
96 95
94 93
92 91
90 89
88 87
86 85
84 83
82 81
80 79
78 77
76 75
74 73
72 71
70 69
...

result:

ok ok (1000 test cases)

Test #30:

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

input:

1000
81
403001151 -229966312
-27290952 -941247950
-27290952 -872808715
403001151 -81762908
403001151 825473197
403001151 730971412
403001151 -886560490
-27290952 394200417
-27290952 808677817
-27290952 -961778274
-27290952 -245434545
403001151 318019109
-27290952 792029613
403001151 390473732
-27290...

output:

81
162 161
159 158
149 148
147 145
144 142
141 137
134 129
125 124
121 120
119 118
117 113
105 104
103 98
96 95
93 92
90 89
88 87
86 85
80 79
75 74
73 70
69 68
67 66
65 62
61 60
58 57
55 54
53 52
51 49
48 43
42 41
37 36
34 31
29 28
22 20
18 16
14 12
7 6
5 4
56 1
160 157
156 155
154 153
152 151
150 1...

result:

ok ok (1000 test cases)

Test #31:

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

input:

1000
257
-24981531 -524783010
-24981531 376842743
132542945 905111237
-24981531 -663183576
132542945 238995240
-24981531 -904084630
132542945 330336577
-24981531 -424310756
132542945 26224857
-24981531 573604180
132542945 -531956470
132542945 583434945
132542945 620552707
-24981531 -351085713
132542...

output:

257
514 512
511 510
509 507
504 503
501 500
497 496
495 494
493 492
489 484
483 482
480 472
469 467
465 464
462 460
459 457
456 451
448 447
445 443
441 440
439 437
435 434
429 427
426 422
419 418
417 414
412 411
410 409
408 403
401 400
396 395
394 391
389 388
387 384
382 380
379 377
376 375
374 369
...

result:

ok ok (1000 test cases)

Test #32:

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

input:

1000
21
541263298 571344162
-338833794 258719906
814556806 571344162
749911951 -730958945
-737751671 400747496
880311857 -204125795
-555645311 -832036787
-338833794 -832036787
582588235 -915718735
-124654808 394321598
-202932677 571344162
541263298 -975674793
880311857 -730958945
-126659351 25871990...

output:

21
13 4
24 19
42 10
32 28
8 7
31 14
23 2
38 34
22 5
9 33
30 21
37 35
27 6
15 41
20 16
12 39
1 29
40 36
26 25
18 11
17 3
37
74 54
28 38
59 48
39 34
5 19
17 7
70 67
64 56
53 43
13 9
29 6
2 51
49 32
18 3
25 47
71 69
62 57
37 24
61 35
23 30
63 45
68 42
27 8
50 40
26 14
11 1
60 36
4 15
72 55
52 44
16 10
...

result:

ok ok (1000 test cases)

Test #33:

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

input:

1000
82
620344713 761205214
564192450 -149133296
855072748 -725730286
-369866361 761205214
-126903403 123500699
521658307 -238068427
564192450 -575382074
424528213 639391487
160949070 -238068427
490683515 736060786
-861287945 -430077137
92203881 -414548921
-228263452 -161807552
-739623881 619906932
...

output:

79
60 43
82 95
4 1
48 108
145 67
132 53
54 146
100 113
52 30
140 64
141 59
133 87
58 77
65 11
83 104
94 85
128 89
73 37
159 120
112 98
2 7
118 22
99 28
144 139
63 9
97 6
117 32
10 46
158 71
23 17
91 55
51 13
44 127
122 121
40 68
49 129
50 15
161 148
90 12
160 33
25 34
78 27
124 3
101 93
96 41
136 10...

result:

ok ok (1000 test cases)

Test #34:

score: 0
Accepted
time: 66ms
memory: 4728kb

input:

100
715
-716037174 449787280
-179603495 267807227
-85847745 -339745287
531498593 906672966
-65182647 -249655497
196101865 -917254384
569704541 175181937
408949063 -60772621
-471098833 -180592225
452882519 -173474204
518554869 504642822
-610596606 -43048739
-173418328 49620755
-490214353 129314297
-8...

output:

0
1429 1430
1427 1428
1425 1426
1423 1424
1421 1422
1419 1420
1417 1418
1415 1416
1413 1414
1411 1412
1409 1410
1407 1408
1405 1406
1403 1404
1401 1402
1399 1400
1397 1398
1395 1396
1393 1394
1391 1392
1389 1390
1387 1388
1385 1386
1383 1384
1381 1382
1379 1380
1377 1378
1375 1376
1373 1374
1371 137...

result:

ok ok (100 test cases)

Test #35:

score: 0
Accepted
time: 63ms
memory: 4216kb

input:

100
1180
999939181 999607824
999877463 999501538
999725395 999197028
999578614 999669422
999691207 999388141
999798382 999350154
999515140 999686861
999804739 999722876
999059909 999779016
999988075 999795096
999394228 999790648
999357316 999130743
999834412 999146926
999533794 999419507
999164265 9...

output:

2
2069 485
1956 294
2359 2360
2357 2358
2355 2356
2353 2354
2351 2352
2349 2350
2347 2348
2345 2346
2343 2344
2341 2342
2339 2340
2337 2338
2335 2336
2333 2334
2331 2332
2329 2330
2327 2328
2325 2326
2323 2324
2321 2322
2319 2320
2317 2318
2315 2316
2313 2314
2311 2312
2309 2310
2307 2308
2305 2306
...

result:

ok ok (100 test cases)

Test #36:

score: 0
Accepted
time: 59ms
memory: 4052kb

input:

100
10
999949463 999921247
999942779 999933524
999900374 999919960
999913527 999977190
999963539 999919222
999986393 999982382
999960627 999912715
999955900 999934316
999962876 999904282
999944172 999923360
999974177 999993968
999960412 999941887
999902083 999920318
999906832 999942948
999934454 999...

output:

0
19 20
17 18
15 16
13 14
11 12
9 10
7 8
5 6
3 4
1 2
0
249 250
247 248
245 246
243 244
241 242
239 240
237 238
235 236
233 234
231 232
229 230
227 228
225 226
223 224
221 222
219 220
217 218
215 216
213 214
211 212
209 210
207 208
205 206
203 204
201 202
199 200
197 198
195 196
193 194
191 192
189 1...

result:

ok ok (100 test cases)

Test #37:

score: 0
Accepted
time: 69ms
memory: 4448kb

input:

100
2795
999995625 999994422
999997406 999998890
999996073 999998910
999996365 999992345
999992211 999999534
999990826 999998894
999990827 999999648
999991569 999997094
999997323 999994792
999990812 999994722
999994392 999998879
999994441 999990381
999992051 999993298
999997822 999994423
999998285 9...

output:

1710
1169 756
3957 1154
5339 440
3848 2998
3994 2445
4383 1538
1191 4246
2164 949
4976 2848
4459 3168
2331 992
2811 596
4827 1980
3345 115
4835 4145
3820 2393
4598 454
4913 699
1713 335
2497 2479
2937 1420
4348 242
4584 3898
4764 1300
2416 252
4912 1887
5340 195
4864 2142
1710 1492
5541 4801
442 183...

result:

ok ok (100 test cases)

Test #38:

score: 0
Accepted
time: 70ms
memory: 4196kb

input:

100
1005
999999258 999999564
999999716 999999506
999999057 999999959
999999274 999999385
999999562 999999714
999999749 999999926
999999159 999999330
999999060 999999408
999999218 999999582
999999097 999999761
999999853 999999231
999999424 999999841
999999744 999999186
999999400 999999073
999999445 9...

output:

985
1502 666
1833 822
622 1647
1678 1655
1986 362
760 565
1553 995
1374 662
1693 1769
1238 1175
1648 1164
648 1917
221 851
1732 653
1691 722
946 195
1463 667
1983 821
1473 874
898 1946
274 108
1008 1211
1704 1332
1022 970
928 1323
1476 783
1626 948
475 1184
677 245
684 1381
1382 1260
1350 744
1839 5...

result:

ok ok (100 test cases)

Test #39:

score: 0
Accepted
time: 42ms
memory: 4164kb

input:

100
174
-958876330 -846470800
-796741809 -131152725
574295122 764287642
-958876330 -825762193
185468313 -971066749
-287559769 764287642
-904746093 -825762193
-438778854 -825762193
5267152 609322023
185468313 77515090
185468313 -131152725
-287559769 247199580
-491475497 260165013
719679418 -179087066...

output:

174
221 158
54 40
278 97
184 143
266 64
8 7
250 87
79 21
346 309
85 130
280 224
169 113
322 306
230 167
14 117
315 272
164 162
15 17
312 284
141 78
82 49
338 220
205 199
150 96
291 248
246 241
155 45
44 9
339 253
200 195
181 153
342 316
298 274
59 51
41 35
335 333
303 299
296 275
238 222
36 217
300 ...

result:

ok ok (100 test cases)

Test #40:

score: 0
Accepted
time: 55ms
memory: 4268kb

input:

100
454
292487349 -708917766
-446575764 -920302303
373857024 -525302786
236159958 -877034512
240035307 -28559828
-156425976 29793081
-683968223 -28559828
658545653 -892201965
-485118423 -349005511
-677465608 102959577
-241309351 -615266668
-857580103 -877034512
590882873 69859569
-961101806 -2385646...

output:

454
905 875
767 755
745 738
731 662
579 565
504 494
450 437
352 344
228 65
56 38
411 883
881 879
795 714
535 410
406 401
391 335
300 69
12 4
538 369
895 814
813 622
589 480
467 343
286 246
154 150
113 112
435 674
907 904
834 800
768 687
664 624
617 615
611 582
497 492
461 389
362 351
282 151
80 43
8...

result:

ok ok (100 test cases)

Test #41:

score: 0
Accepted
time: 53ms
memory: 4100kb

input:

100
140
229220674 878836488
-506767178 293730975
960642833 878836488
485659386 878836488
-225376185 16183205
-322465048 -460955536
-635701181 878836488
-578723152 374559636
956924322 878836488
-666563369 -550449367
-240963901 374559636
9519098 374559636
404598294 16183205
-188062738 467646265
937074...

output:

140
277 264
256 252
225 212
180 177
176 167
159 152
148 139
134 112
111 91
84 47
44 21
25 16
271 266
255 253
246 233
214 178
174 163
155 153
137 101
93 92
89 87
86 81
67 33
26 13
238 5
267 261
259 240
231 228
224 222
219 215
206 197
190 168
158 146
143 138
130 116
113 109
97 77
72 65
64 59
46 43
37 ...

result:

ok ok (100 test cases)

Test #42:

score: 0
Accepted
time: 47ms
memory: 4140kb

input:

100
453
-9728842 -879506383
723264369 -879506383
-617602947 -879506383
-883543546 -879506383
-365459776 -879506383
259863014 -879506383
-229024413 -879506383
-357634378 -879506383
45613473 -879506383
897413515 -879506383
142722904 -879506383
308356916 -879506383
-528467703 -879506383
45803942 -87950...

output:

453
906 905
904 903
902 901
900 899
898 897
896 895
894 893
892 891
890 889
888 887
886 885
884 883
882 881
880 879
878 877
876 875
874 873
872 871
870 869
868 867
866 865
864 863
862 861
860 859
858 857
856 855
854 853
852 851
850 849
848 847
846 845
844 843
842 841
840 839
838 837
836 835
834 833
...

result:

ok ok (100 test cases)

Test #43:

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

input:

100
1681
-648014211 -216027092
-372352298 95789050
-678908480 95789050
-382412165 95789050
214922606 95789050
45021991 95789050
131451784 95789050
926607022 -216027092
-500711391 95789050
527775426 -216027092
860331657 95789050
-255764825 95789050
314154093 -216027092
-631103238 95789050
292792358 9...

output:

1681
3361 3360
3359 3355
3352 3351
3350 3349
3347 3342
3341 3339
3336 3332
3331 3330
3327 3326
3325 3324
3322 3321
3318 3317
3314 3313
3312 3311
3310 3307
3305 3304
3303 3300
3298 3295
3291 3290
3288 3287
3285 3282
3281 3278
3275 3274
3273 3272
3270 3269
3268 3267
3264 3263
3261 3259
3257 3255
3254 ...

result:

ok ok (100 test cases)

Test #44:

score: 0
Accepted
time: 47ms
memory: 4004kb

input:

100
476
218894313 -685169320
967098661 -16626457
-797375436 -16626457
955557493 -16626457
54133572 -16626457
-722192690 -16626457
791557373 -16626457
-208166285 -685169320
185917393 -16626457
-338707386 -16626457
49911294 -16626457
-359502368 -685169320
-359176146 -685169320
430103061 -16626457
-744...

output:

476
952 950
949 943
942 940
939 938
936 935
932 931
930 929
926 923
921 920
919 917
916 915
914 912
910 909
908 905
904 903
901 900
899 895
893 883
882 877
876 875
874 872
871 870
869 867
866 865
864 863
862 858
857 856
855 854
853 849
847 844
843 841
836 833
831 829
828 825
823 821
820 818
817 816
...

result:

ok ok (100 test cases)

Test #45:

score: 0
Accepted
time: 44ms
memory: 4020kb

input:

100
1281
-7127937 -551225280
-7127937 -63829747
-7127937 50255920
-7127937 685959203
-7127937 -474730627
-7127937 205475943
-7127937 894868084
-7127937 -262984557
-7127937 858324856
-7127937 257534742
-7127937 -640954010
-7127937 -111367493
-7127937 892100661
-7127937 696606550
-7127937 136498536
-7...

output:

1281
2562 2561
2560 2559
2558 2557
2556 2555
2554 2553
2552 2551
2550 2549
2548 2547
2546 2545
2544 2543
2542 2541
2540 2539
2538 2537
2536 2535
2534 2533
2532 2531
2530 2529
2528 2527
2526 2525
2524 2523
2522 2521
2520 2519
2518 2517
2516 2515
2514 2513
2512 2511
2510 2509
2508 2507
2506 2505
2504 ...

result:

ok ok (100 test cases)

Test #46:

score: 0
Accepted
time: 50ms
memory: 3936kb

input:

100
2300
930979038 -865442548
56354538 569246647
930979038 209346563
930979038 -402151796
56354538 9788037
930979038 349210639
930979038 113353815
56354538 -508882748
56354538 -390359400
930979038 881411592
56354538 328521324
56354538 569030395
56354538 749112678
930979038 -492654973
930979038 -5806...

output:

2300
4596 4594
4593 4590
4588 4587
4584 4583
4581 4578
4577 4576
4575 4574
4573 4571
4568 4566
4560 4558
4557 4555
4553 4551
4550 4549
4548 4547
4546 4544
4543 4541
4538 4537
4533 4532
4531 4530
4529 4528
4527 4522
4521 4519
4517 4516
4513 4510
4509 4508
4507 4505
4503 4500
4499 4496
4495 4494
4493 ...

result:

ok ok (100 test cases)

Test #47:

score: 0
Accepted
time: 47ms
memory: 4024kb

input:

100
393
484804995 -671233294
484804995 45381500
-343734967 483744892
-343734967 -678278044
-343734967 430018594
484804995 -536133521
-343734967 972761171
-343734967 188883545
484804995 291634094
484804995 161326893
484804995 43447237
-343734967 81642646
-343734967 905579532
484804995 -838456546
4848...

output:

393
784 783
779 778
776 775
771 767
763 762
760 758
755 754
752 750
744 743
742 741
739 738
737 736
734 731
728 727
726 724
721 720
717 716
715 713
709 708
707 706
705 704
703 699
698 696
695 694
693 692
687 686
682 681
678 677
675 673
671 670
669 663
662 661
659 658
651 650
649 648
646 645
637 635
...

result:

ok ok (100 test cases)

Test #48:

score: 0
Accepted
time: 50ms
memory: 4496kb

input:

100
2245
257511569 -570888823
-409065975 834451934
972932318 -206332685
-220073979 -895107571
819486773 -206332685
819823298 -570888823
116295608 282026121
589205449 -895107571
-54658019 -895107571
987042524 -206332685
-196884689 282026121
-940822451 993058719
402874649 -895107571
633334868 99305871...

output:

2245
4487 4476
4474 4465
4464 4458
4456 4454
4447 4441
4440 4435
4431 4429
4428 4426
4424 4419
4418 4399
4394 4390
4380 4373
4352 4344
4336 4312
4299 4267
4261 4256
4252 4249
4235 4230
4227 4216
4215 4206
4204 4199
4189 4186
4184 4173
4160 4159
4153 4148
4144 4129
4127 4116
4099 4095
4093 4091
4083 ...

result:

ok ok (100 test cases)

Test #49:

score: 0
Accepted
time: 58ms
memory: 4128kb

input:

100
116
-28349829 -267772969
-181233169 605639981
-221792554 885875755
-8847461 376377302
-527881168 376377302
-794286947 885875755
-442516480 365428090
60367949 59687335
844852200 -267772969
70152464 -267772969
-326579976 59687335
-382146420 885875755
-305012413 376377302
-255659827 495623398
84485...

output:

116
230 221
208 207
193 177
174 173
169 161
157 144
139 134
110 80
77 66
64 39
7 130
215 213
210 186
165 135
131 109
86 78
61 46
170 24
31 205
228 227
211 198
197 181
179 176
168 127
113 92
90 83
82 67
65 50
42 37
84 43
229 223
219 191
184 182
164 159
143 141
140 129
126 123
115 107
103 102
98 91
75...

result:

ok ok (100 test cases)

Test #50:

score: 0
Accepted
time: 69ms
memory: 8896kb

input:

10
10568
266619539 928993099
644537002 -163339024
-965315605 131093436
-873401839 -319727236
-682029920 -699502948
-857838819 -528950378
126750467 -72275669
623580094 410832833
287731394 -865265684
-71034303 515678565
-897514612 929674238
-794392375 895647772
811715826 600060479
640892543 -557248887...

output:

0
21135 21136
21133 21134
21131 21132
21129 21130
21127 21128
21125 21126
21123 21124
21121 21122
21119 21120
21117 21118
21115 21116
21113 21114
21111 21112
21109 21110
21107 21108
21105 21106
21103 21104
21101 21102
21099 21100
21097 21098
21095 21096
21093 21094
21091 21092
21089 21090
21087 2108...

result:

ok ok (10 test cases)

Test #51:

score: 0
Accepted
time: 92ms
memory: 9636kb

input:

10
983
999595593 999481588
999941833 999204986
999676040 999115470
999653065 999524261
999950018 999574889
999911879 999942071
999134864 999155033
999133604 999956453
999424191 999531479
999169859 999553795
999163364 999608732
999486991 999180185
999600255 999690901
999278724 999959357
999886640 999...

output:

2
1034 997
1118 931
1965 1966
1963 1964
1961 1962
1959 1960
1957 1958
1955 1956
1953 1954
1951 1952
1949 1950
1947 1948
1945 1946
1943 1944
1941 1942
1939 1940
1937 1938
1935 1936
1933 1934
1931 1932
1929 1930
1927 1928
1925 1926
1923 1924
1921 1922
1919 1920
1917 1918
1915 1916
1913 1914
1911 1912
...

result:

ok ok (10 test cases)

Test #52:

score: 0
Accepted
time: 86ms
memory: 7284kb

input:

10
15236
999975325 999978324
999983228 999957461
999965056 999943264
999953829 999920806
999913911 999975263
999949326 999952997
999948654 999968342
999957007 999987426
999900723 999909965
999944389 999907733
999911075 999973513
999997298 999931066
999983079 999918568
999946266 999969557
999900152 9...

output:

6279
25694 24633
22699 10189
21171 6750
21858 10704
29875 3785
24028 13033
14651 934
11577 1097
21456 10995
29870 21804
11921 1753
22205 14241
14567 625
17807 3528
23525 21832
21067 13105
15878 13142
23898 11634
18345 2967
9592 9101
29705 14368
18655 18337
16116 8598
28528 14720
29401 15045
26637 43...

result:

ok ok (10 test cases)

Test #53:

score: 0
Accepted
time: 79ms
memory: 8440kb

input:

10
6642
999992808 999996636
999995238 999998603
999990460 999998357
999992495 999998027
999994992 999993315
999990663 999999307
999994510 999991024
999994319 999993024
999996312 999990447
999990590 999994561
999997748 999994786
999990918 999993436
999994457 999993851
999994234 999991647
999996595 99...

output:

6031
12455 10625
13036 3357
8247 9193
11238 7560
3120 2870
8221 7992
10501 8010
10925 4827
6527 2202
11852 6297
10830 9043
1048 6085
11520 2510
6901 2104
3206 2287
11288 8917
7487 4554
8149 948
7043 153
4622 4558
5309 823
11122 5304
10767 2875
10702 7166
8537 71
922 9422
10166 9527
13256 10321
10176...

result:

ok ok (10 test cases)

Test #54:

score: 0
Accepted
time: 56ms
memory: 7024kb

input:

10
19516
999999707 999999837
999999488 999999818
999999509 999999591
999999991 999999026
999999356 999999726
999999489 999999193
999999038 999999298
999999881 999999157
999999344 999999162
999999160 999999113
999999139 999999582
999999470 999999327
999999742 999999921
999999255 999999737
999999216 9...

output:

19516
12872 24553
22709 13428
17867 439
35927 28928
18963 12699
17064 13797
38297 3876
3197 17837
36916 27812
29832 34038
9554 2414
18404 8168
33763 28032
37336 22313
18828 3897
27774 22677
34122 28140
7447 17103
19970 36312
13364 14936
6666 6098
37897 227
996 8992
27038 24213
2603 29292
38738 30391...

result:

ok ok (10 test cases)

Test #55:

score: 0
Accepted
time: 58ms
memory: 6960kb

input:

10
14948
-170688734 833794743
949001579 224632065
-887648481 346146784
994218765 -808897932
948269970 764123696
24957273 562441566
-170688734 843621240
959643634 -354951661
631351081 -86364881
-9691567 824383620
-935916525 352437858
381851425 387057559
-6239193 951794229
450798340 -742525732
-394344...

output:

14948
13271 8720
25155 21769
19779 18672
29716 21240
19318 3817
25037 24187
29088 28664
27254 12725
13777 13679
10747 9791
27300 17028
13237 10343
4249 10265
19840 16174
15494 13591
26296 25183
16669 11873
1363 1004
25715 13940
8154 4329
4034 2980
25768 18548
14880 12110
10764 6227
1261 2539
26175 1...

result:

ok ok (10 test cases)

Test #56:

score: 0
Accepted
time: 62ms
memory: 6564kb

input:

10
18275
46937162 -785699925
-512599977 -861792903
-732947245 771605479
-317815822 369273432
-478775873 211331712
-678678382 -401598442
-366699505 752973691
776710779 -7216385
-88306688 -190102574
328516250 -317225669
522217639 215990988
523904534 -256490677
540608168 493241721
620782210 -185524925
...

output:

18275
35477 34717
34642 34087
33892 32151
31772 29597
29446 29381
28746 28361
28025 26146
25959 25331
23540 22174
20484 17208
17197 17134
16627 15655
15490 12631
11792 11369
11088 10821
8655 7896
7413 7285
6322 5017
4733 4605
4457 707
393 16574
35788 34249
34165 31629
31628 31288
29928 29536
28533 2...

result:

ok ok (10 test cases)

Test #57:

score: 0
Accepted
time: 75ms
memory: 7672kb

input:

10
390
-347835130 869197644
963535733 392603688
671237510 92351133
671237510 -703861232
671237510 423461538
671237510 369343656
671237510 980877320
-347835130 456099182
671237510 -311676199
-347835130 -886266831
-347835130 -257100015
-347835130 -637839633
963535733 -16989823
963535733 -821875052
963...

output:

390
775 773
771 769
767 765
759 753
751 749
739 737
729 727
726 725
723 721
707 706
696 689
687 686
679 676
674 671
665 661
659 658
656 651
644 642
633 630
624 623
622 618
616 613
612 610
606 605
604 601
591 590
588 586
585 583
578 576
571 568
564 563
555 554
553 552
544 543
537 533
532 530
528 527
...

result:

ok ok (10 test cases)

Test #58:

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

input:

10
1285
637213737 -900998147
-356659628 -900998147
950244610 -900998147
-182671545 -900998147
-708950884 -900998147
-973866581 -900998147
-190878205 -900998147
135731649 -900998147
-125331609 -900998147
521939981 -900998147
976257311 -900998147
818237327 -900998147
705563706 -900998147
58565785 -900...

output:

1285
2570 2569
2568 2567
2566 2565
2564 2563
2562 2561
2560 2559
2558 2557
2556 2555
2554 2553
2552 2551
2550 2549
2548 2547
2546 2545
2544 2543
2542 2541
2540 2539
2538 2537
2536 2535
2534 2533
2532 2531
2530 2529
2528 2527
2526 2525
2524 2523
2522 2521
2520 2519
2518 2517
2516 2515
2514 2513
2512 ...

result:

ok ok (10 test cases)

Test #59:

score: 0
Accepted
time: 57ms
memory: 9684kb

input:

10
5000
-188767223 -315528788
-987365245 -315528788
-106387689 135511984
127392808 -315528788
800721151 -315528788
146952905 -315528788
-323702728 135511984
411611172 135511984
872064533 -315528788
-40050336 135511984
119702024 135511984
-208480603 -315528788
679048782 -315528788
402900711 -31552878...

output:

5000
10000 9997
9996 9991
9987 9986
9982 9981
9980 9979
9978 9975
9972 9970
9969 9967
9964 9962
9960 9959
9956 9954
9953 9952
9951 9950
9947 9945
9944 9943
9939 9936
9933 9932
9930 9928
9924 9922
9921 9920
9919 9918
9917 9916
9914 9913
9909 9908
9907 9905
9904 9901
9899 9897
9895 9889
9886 9883
9878...

result:

ok ok (10 test cases)

Test #60:

score: 0
Accepted
time: 56ms
memory: 7072kb

input:

10
5892
25327490 -567979409
-735380777 -567979409
362509197 -518667355
380762791 -518667355
-325207607 -518667355
541910006 -518667355
36310841 -567979409
-726943590 -518667355
513235902 -518667355
289283655 -518667355
290421813 -567979409
892523351 -567979409
-894087744 -567979409
621832318 -567979...

output:

5892
11783 11782
11779 11777
11776 11773
11772 11771
11767 11766
11764 11761
11759 11758
11755 11752
11751 11749
11747 11745
11743 11735
11733 11732
11730 11728
11726 11725
11722 11719
11712 11710
11705 11704
11703 11701
11700 11698
11695 11694
11691 11689
11688 11687
11683 11682
11680 11679
11677 1...

result:

ok ok (10 test cases)

Test #61:

score: 0
Accepted
time: 47ms
memory: 9320kb

input:

10
7074
241731848 530211859
241731848 -112101076
241731848 -387299272
241731848 840407166
241731848 -519364921
241731848 -927667636
241731848 -12750799
241731848 446782229
241731848 -605995785
241731848 -360804301
241731848 -706630766
241731848 95158934
241731848 -937680624
241731848 162324777
24173...

output:

7074
14148 14147
14146 14145
14144 14143
14142 14141
14140 14139
14138 14137
14136 14135
14134 14133
14132 14131
14130 14129
14128 14127
14126 14125
14124 14123
14122 14121
14120 14119
14118 14117
14116 14115
14114 14113
14112 14111
14110 14109
14108 14107
14106 14105
14104 14103
14102 14101
14100 1...

result:

ok ok (10 test cases)

Test #62:

score: 0
Accepted
time: 57ms
memory: 9872kb

input:

10
729
867500722 -983664796
867500722 -428285695
-323742684 -171458916
-323742684 440597108
867500722 878319625
867500722 225023835
-323742684 -291982426
-323742684 568294497
867500722 327920686
867500722 -477580489
-323742684 310693081
-323742684 775098797
867500722 -334572408
-323742684 181766129
...

output:

729
1458 1455
1454 1452
1450 1448
1445 1444
1443 1442
1440 1439
1437 1436
1434 1433
1432 1431
1428 1427
1423 1420
1418 1417
1414 1412
1410 1406
1405 1404
1400 1399
1398 1395
1392 1391
1389 1388
1387 1385
1383 1381
1379 1378
1373 1367
1366 1365
1363 1362
1360 1356
1355 1354
1353 1351
1350 1348
1347 1...

result:

ok ok (10 test cases)

Test #63:

score: 0
Accepted
time: 57ms
memory: 7452kb

input:

10
23890
-966926807 -783294985
-966926807 -231086723
-966926807 -827425532
-966926807 951590873
-966926807 -847083727
-322954521 -903547355
-966926807 395823002
-322954521 113620163
-966926807 442076584
-322954521 -358356830
-966926807 -416611206
-966926807 308206261
-322954521 -548371038
-966926807...

output:

23890
47779 47778
47776 47773
47772 47771
47769 47768
47764 47761
47760 47758
47757 47754
47753 47751
47748 47745
47743 47740
47731 47728
47727 47726
47723 47722
47720 47719
47716 47715
47714 47711
47709 47706
47704 47703
47702 47701
47700 47696
47693 47692
47689 47687
47686 47684
47680 47678
47674 ...

result:

ok ok (10 test cases)

Test #64:

score: 0
Accepted
time: 59ms
memory: 8212kb

input:

10
6461
164403694 719871079
-178686855 -505252945
820168812 419207217
-229478200 77799158
677361796 77799158
575661006 419207217
-697613489 -329650846
-362539459 -563403377
727778010 -563403377
-111787135 419207217
892586613 -329650846
664142990 435882783
-746057528 435882783
-484808272 -329650846
-...

output:

6461
12915 12912
12891 12884
12861 12843
12827 12804
12801 12789
12781 12773
12772 12767
12744 12727
12725 12706
12704 12694
12693 12682
12673 12668
12666 12653
12651 12611
12592 12590
12578 12568
12560 12557
12553 12545
12529 12528
12515 12478
12464 12460
12453 12441
12420 12410
12403 12398
12395 1...

result:

ok ok (10 test cases)

Test #65:

score: 0
Accepted
time: 59ms
memory: 6872kb

input:

10
14956
895706895 998300226
820538240 306140296
-445632195 597312604
-409959410 597312604
755346555 251251450
259123019 -176732314
701825202 -694016428
520061157 306140296
626248236 -236060915
321824154 -762678310
714689875 444441588
-774797456 597312604
4205823 306140296
104689711 -236060915
-9484...

output:

14956
29911 29888
29879 29853
29838 29828
29785 29771
29719 29709
29679 29678
29672 29659
29642 29636
29612 29593
29592 29591
29579 29547
29531 29521
29511 29494
29484 29481
29464 29439
29438 29436
29429 29417
29413 29406
29397 29382
29380 29362
29350 29331
29330 29326
29298 29288
29287 29256
29255 ...

result:

ok ok (10 test cases)

Test #66:

score: 0
Accepted
time: 104ms
memory: 26980kb

input:

1
100000
70720045 -382955525
180416482 414551370
-321808609 -148240525
-959621209 239890090
279590168 239445206
-672414454 -968764851
978907902 855176899
-927586531 -493246847
-87140549 -239161862
394302217 -390243883
747094712 472952985
437187652 834551586
-394349288 431373156
954522299 545636033
-...

output:

23
144486 2141
37584 9286
192121 39525
29718 28428
134034 146324
64369 142744
171747 126162
83895 83326
49195 166828
117559 170770
72594 62290
198477 79976
187330 71595
154893 109193
29229 14288
180810 63240
45492 101362
149697 49949
182115 41051
67341 166114
149552 66171
178409 10401
143875 22866
1...

result:

ok ok (1 test case)

Test #67:

score: 0
Accepted
time: 121ms
memory: 26212kb

input:

1
100000
999264440 999048423
999943779 999924927
999580357 999266886
999189670 999239640
999169156 999823062
999940080 999293014
999369020 999661305
999189323 999146694
999183801 999589407
999918625 999551090
999402308 999679213
999139826 999423045
999933104 999726376
999862333 999034393
999325582 9...

output:

30281
196782 66998
159166 6705
130343 129219
187991 90535
171346 138932
101632 78292
143247 6108
61119 40134
111363 77952
128150 31604
175373 95498
186925 119620
198403 188127
184813 111901
149510 131391
108421 68227
167799 138693
117096 19480
134862 126811
161210 2295
105382 32811
192902 158700
172...

result:

ok ok (1 test case)

Test #68:

score: 0
Accepted
time: 117ms
memory: 25464kb

input:

1
100000
999975273 999973662
999943883 999925191
999951597 999989446
999981472 999903478
999927188 999993354
999922765 999970341
999935838 999925520
999910876 999943291
999965140 999987674
999960397 999922095
999924484 999966851
999904125 999916521
999937262 999938937
999920433 999985453
999952260 9...

output:

97922
192564 130177
125578 48589
54542 53845
196673 59878
188914 123054
120385 15441
137145 185310
164881 75932
59639 41291
114320 46722
40549 16587
190293 80109
178146 135074
198712 121109
182244 180367
27079 59819
100261 86848
184010 65811
199567 145316
181242 121797
100878 81121
150170 95833
4023...

result:

ok ok (1 test case)

Test #69:

score: 0
Accepted
time: 74ms
memory: 19792kb

input:

1
100000
999995621 999999670
999999969 999993086
999991515 999996627
999998034 999997733
999990010 999990951
999994345 999999518
999995768 999995576
999990755 999995308
999994356 999993294
999999258 999992963
999991118 999997972
999996805 999995493
999996557 999999418
999998617 999990595
999992992 9...

output:

100000
118761 149478
165990 127864
90728 166209
107234 91909
48332 166033
134744 48862
71561 54798
64129 89311
47760 56943
56028 84012
171082 114028
96600 90475
191974 30668
91190 56196
196119 64925
131284 23221
50767 39556
157691 41573
163682 17280
8864 108281
130821 163387
195661 32539
178677 1343...

result:

ok ok (1 test case)

Test #70:

score: 0
Accepted
time: 58ms
memory: 18276kb

input:

1
100000
999999356 999999100
999999557 999999477
999999247 999999556
999999478 999999687
999999801 999999758
999999391 999999967
999999895 999999528
999999030 999999011
999999914 999999760
999999637 999999704
999999672 999999060
999999035 999999996
999999846 999999054
999999166 999999583
999999765 9...

output:

100000
74347 72516
141990 167248
191411 4268
106085 51315
128975 177888
106222 105385
126434 13033
46983 194025
97396 51703
186919 114144
189642 161397
131214 96027
120590 188062
152233 86472
47658 9543
178341 1960
191263 168327
165934 163974
16729 53202
109332 99468
79233 18051
173269 170626
113904...

result:

ok ok (1 test case)

Test #71:

score: 0
Accepted
time: 54ms
memory: 18328kb

input:

1
100000
-547614182 905649186
-730348421 219289192
-138779779 -601726529
637290947 785577159
582877718 711339300
-747547194 -798832505
156167189 928036875
718258793 236208965
357417172 -293383985
383912089 713166152
233364698 -834647510
33321838 -637401353
-524918636 -271511728
-93689863 14541656
65...

output:

100000
3711 140091
107536 694
161058 94940
186169 110482
16018 59541
181906 108602
155010 126791
96435 64027
193302 148567
134607 72971
188593 186953
114240 90298
36143 17008
154231 145045
107446 105533
160193 102970
29447 17130
13825 792
189347 100160
71360 58549
50504 11594
180722 109749
71948 694...

result:

ok ok (1 test case)

Test #72:

score: 0
Accepted
time: 44ms
memory: 18328kb

input:

1
100000
-894716977 -12445007
-635179783 -174303206
-468545915 -376509646
7552798 863131659
-452959582 -848004313
240678088 -531526042
-479003636 561079229
-136051729 -523206668
-54957196 -969050964
202486976 -149599358
511163288 -909769354
-642881606 611633044
470598875 411065934
-70167418 -8251878...

output:

100000
199755 199079
198999 198557
198264 196279
195942 195599
195401 194588
194014 193622
192759 191961
190907 189276
188822 187213
187156 184141
183529 183434
182860 182015
181975 180874
179772 177786
177053 176252
176224 176026
175335 174855
174552 174147
173571 172787
172768 171774
171706 170884...

result:

ok ok (1 test case)

Test #73:

score: 0
Accepted
time: 109ms
memory: 24172kb

input:

1
100000
798544191 -742903658
-344389104 -188662067
-571373110 161581382
-60448446 -916202148
-35781172 434088687
-786229077 240454644
-926134390 -986182581
17116411 -71954950
995069384 559207186
-65532930 -598813224
138636725 -620533705
781019115 572534456
-972340297 -182563578
-649565762 -18399977...

output:

99971
179568 124453
94099 91327
112027 8267
111972 45461
158551 64885
165907 145902
184779 63787
135651 31906
141875 109278
114778 107061
159666 129750
84247 20859
129568 4574
120537 29514
197591 52686
181753 167285
194014 182999
131281 90132
118810 115534
99383 40809
197127 95522
109847 69526
19700...

result:

ok ok (1 test case)

Test #74:

score: 0
Accepted
time: 79ms
memory: 23804kb

input:

1
100000
339988059 -602619276
-336733168 -602619276
-3170495 -602619276
608750101 -602619276
125004008 -602619276
877505856 -602619276
-736053016 -602619276
80826707 -602619276
612582932 -602619276
-901063623 -602619276
-24681200 -602619276
-338686211 -602619276
786194401 -602619276
-639927824 -6026...

output:

100000
200000 199999
199998 199997
199996 199995
199994 199993
199992 199991
199990 199989
199988 199987
199986 199985
199984 199983
199982 199981
199980 199979
199978 199977
199976 199975
199974 199973
199972 199971
199970 199969
199968 199967
199966 199965
199964 199963
199962 199961
199960 199959...

result:

ok ok (1 test case)

Test #75:

score: 0
Accepted
time: 87ms
memory: 20892kb

input:

1
100000
-152505637 741483922
608264196 -922967866
-978496364 741483922
517162535 741483922
-622471931 -922967866
-321900491 -922967866
69265759 -922967866
-580002960 -922967866
653169748 741483922
-40672330 -922967866
486195777 -922967866
301503518 -922967866
481889997 741483922
-351983361 74148392...

output:

100000
200000 199998
199996 199995
199994 199990
199988 199987
199986 199985
199983 199982
199981 199979
199977 199976
199975 199974
199973 199971
199969 199967
199966 199965
199959 199958
199956 199955
199951 199950
199949 199947
199946 199945
199944 199943
199941 199940
199939 199937
199936 199935...

result:

ok ok (1 test case)

Test #76:

score: 0
Accepted
time: 74ms
memory: 21960kb

input:

1
100000
756868275 -358967603
-497301030 -358967603
649448245 -358967603
-887427985 -535956822
878399175 -535956822
108874606 -358967603
-489595415 -358967603
325972197 -358967603
498592984 -535956822
333245905 -358967603
-950621798 -535956822
-609666390 -535956822
-740046219 -358967603
-720433327 -...

output:

100000
200000 199996
199995 199993
199988 199986
199985 199984
199983 199981
199980 199978
199977 199975
199973 199972
199971 199968
199967 199966
199962 199960
199958 199956
199951 199949
199946 199944
199939 199937
199936 199935
199933 199932
199931 199930
199925 199922
199921 199920
199918 199916...

result:

ok ok (1 test case)

Test #77:

score: 0
Accepted
time: 73ms
memory: 23836kb

input:

1
100000
264643553 -937908082
264643553 361997414
264643553 -23850010
264643553 753755453
264643553 362490250
264643553 239156434
264643553 -577712364
264643553 -392015932
264643553 -411918647
264643553 -915806614
264643553 231314817
264643553 -909126325
264643553 -20860430
264643553 647884648
26464...

output:

100000
200000 199999
199998 199997
199996 199995
199994 199993
199992 199991
199990 199989
199988 199987
199986 199985
199984 199983
199982 199981
199980 199979
199978 199977
199976 199975
199974 199973
199972 199971
199970 199969
199968 199967
199966 199965
199964 199963
199962 199961
199960 199959...

result:

ok ok (1 test case)

Test #78:

score: 0
Accepted
time: 66ms
memory: 20892kb

input:

1
100000
13210362 155232928
689159667 -465052240
13210362 21054014
689159667 867788821
689159667 -625434390
13210362 364078249
13210362 -911970949
13210362 937669731
689159667 -904647545
13210362 953420119
689159667 349328690
13210362 772099718
689159667 -718290541
13210362 -863735041
689159667 -306...

output:

100000
200000 199997
199996 199992
199991 199990
199989 199988
199985 199983
199982 199981
199980 199978
199976 199973
199969 199968
199966 199964
199963 199961
199959 199958
199953 199951
199950 199948
199946 199945
199944 199943
199941 199938
199937 199934
199932 199931
199930 199925
199922 199921...

result:

ok ok (1 test case)

Test #79:

score: 0
Accepted
time: 73ms
memory: 21620kb

input:

1
100000
-530472390 452797636
12273745 -840226242
12273745 138841937
-530472390 397016016
-530472390 309315299
12273745 979552760
-530472390 286391147
12273745 -839888853
-530472390 468449806
12273745 27131915
12273745 144818527
-530472390 -97939838
-530472390 -221056215
-530472390 -238960974
-53047...

output:

100000
200000 199999
199996 199995
199993 199989
199987 199985
199981 199980
199978 199977
199975 199974
199973 199972
199970 199969
199966 199965
199963 199962
199960 199958
199956 199954
199953 199952
199951 199946
199944 199941
199940 199938
199933 199927
199925 199923
199922 199921
199920 199916...

result:

ok ok (1 test case)

Test #80:

score: 0
Accepted
time: 70ms
memory: 20604kb

input:

1
100000
-132158759 -454759942
-893626513 149724597
-756161772 -22802718
579977604 -454759942
430467545 149724597
363069127 -454759942
-355589432 -488155881
348983244 149724597
253076693 -258440137
391935158 862260872
211993426 -258440137
928069632 862260872
403296863 -22802718
-302606363 -258440137...

output:

100000
199998 199986
199966 199952
199948 199947
199945 199918
199906 199897
199892 199884
199874 199871
199870 199823
199818 199814
199805 199802
199792 199790
199774 199768
199766 199764
199755 199752
199740 199735
199726 199724
199704 199691
199677 199672
199658 199657
199650 199648
199561 199559...

result:

ok ok (1 test case)

Test #81:

score: 0
Accepted
time: 60ms
memory: 18712kb

input:

1
100000
3959073 -767392567
109384252 941067269
-878847334 -620223817
607693789 483382967
998749160 43543215
259351742 -658880496
817766616 491476307
265921619 920072631
-95644194 43543215
-145143632 -356499617
-708593795 -254752752
292642145 865122144
-525142707 -376455870
653151805 -418942337
1803...

output:

100000
199889 199855
199654 199596
199336 199315
199173 199123
198908 198871
198788 198728
198643 198633
198513 198373
198235 198232
198089 198016
197991 197965
197949 197851
197831 197745
197683 197591
197532 197510
197192 197167
197141 196908
196887 196866
196749 196733
196717 196696
196523 196281...

result:

ok ok (1 test case)

Test #82:

score: 0
Accepted
time: 120ms
memory: 26936kb

input:

1
100000
-574560244 663989471
147836313 776509735
-654179276 -456564123
-688242213 850544277
-769192009 -999278429
47264577 -474897694
661553314 -35586919
31425538 950985408
119252682 -364980087
-482879014 -842019980
562833870 -434563528
-602373511 -586582786
-597688232 794041526
-796369392 -9877200...

output:

0
199999 200000
199997 199998
199995 199996
199993 199994
199991 199992
199989 199990
199987 199988
199985 199986
199983 199984
199981 199982
199979 199980
199977 199978
199975 199976
199973 199974
199971 199972
199969 199970
199967 199968
199965 199966
199963 199964
199961 199962
199959 199960
1999...

result:

ok ok (1 test case)

Test #83:

score: 0
Accepted
time: 115ms
memory: 26904kb

input:

1
100000
563809006 598960902
129945828 823924799
-921279427 -278305161
932151061 -615426941
253018906 394552155
-685768166 660779890
443266995 -129270185
314826112 -262631640
503785849 280786037
964401164 -60690178
-543715115 692212503
570497299 -501483747
-280889633 566370668
238345598 -30723398
40...

output:

10
176400 175690
139377 77458
75494 42034
36282 27877
19963 9293
178064 171004
170163 111455
80047 75329
38276 22217
9022 4978
199999 200000
199997 199998
199995 199996
199993 199994
199991 199992
199989 199990
199987 199988
199985 199986
199983 199984
199981 199982
199979 199980
199977 199978
19997...

result:

ok ok (1 test case)

Test #84:

score: 0
Accepted
time: 119ms
memory: 26972kb

input:

1
100000
-250360297 -826731365
-132998833 434577984
-271597239 443621731
-568418163 -685113319
-351376307 -75720590
361691254 909826155
-611075026 748106801
-796334684 588036703
-192353104 -22634313
219167808 -130214795
153254126 -663910409
-706144293 -503074450
641195348 -471304455
952972496 722756...

output:

100
195158 193351
192776 191183
188634 185978
185746 184454
181517 180670
179383 173767
167736 167693
163981 154705
154285 154054
151065 147925
147602 147539
145451 142604
142199 142135
140493 138036
133207 128076
119054 112003
110254 109947
109683 108848
108041 107521
106371 104053
100357 100079
98...

result:

ok ok (1 test case)

Test #85:

score: 0
Accepted
time: 115ms
memory: 26932kb

input:

1
100000
847984927 -235516053
-225657532 174062262
-864702235 849255554
-294101500 -395862766
308093550 262724017
-821802819 777396740
-166183219 -205295668
-925592163 -890396698
629939776 554098977
-597066517 -627025783
-488670566 -192742453
321766317 357807409
-56687363 -479719304
-346692362 43123...

output:

1000
199884 199839
199773 199615
199435 199222
198897 198861
198833 198639
198555 198456
198305 197420
197349 197286
197266 197127
197064 197049
197012 196990
196802 196209
196112 196033
195946 195904
195480 195464
195338 195206
194976 194965
194954 194761
194696 194147
194123 194018
193820 193633
1...

result:

ok ok (1 test case)

Test #86:

score: 0
Accepted
time: 124ms
memory: 26516kb

input:

1
100000
326229520 805825077
371787034 -612906440
-488264751 -793472428
184436425 366708550
-501110960 713157720
810357640 -567097567
-906732603 439225325
-340392868 -70415813
-189664219 -713969208
381067874 -619756834
674460096 668727994
618268128 -733873663
-622488527 -374494000
-696690105 -871302...

output:

10000
199967 199958
199929 199921
199885 199870
199849 199833
199821 199818
199816 199805
199802 199801
199739 199717
199700 199693
199677 199669
199624 199623
199610 199599
199596 199566
199553 199532
199490 199478
199476 199465
199443 199436
199433 199423
199392 199376
199367 199354
199339 199335
...

result:

ok ok (1 test case)

Test #87:

score: 0
Accepted
time: 87ms
memory: 23276kb

input:

1
100000
107663449 169602795
-293408075 136298377
107663449 677735329
107663449 -133164493
107663449 -405477830
-973012232 136298377
40661124 136298377
107663449 -772028365
314648168 136298377
-951394425 136298377
107663449 252358019
107663449 84643404
107663449 661318647
-458027461 136298377
107663...

output:

99999
199999 199998
199997 199995
199994 199991
199988 199985
199984 199982
199981 199980
199979 199977
199976 199975
199974 199973
199972 199971
199970 199967
199964 199963
199962 199961
199959 199957
199956 199954
199949 199948
199946 199942
199939 199937
199936 199934
199933 199928
199927 199926
...

result:

ok ok (1 test case)

Test #88:

score: 0
Accepted
time: 70ms
memory: 23848kb

input:

1
100000
621676756 -105718828
907764147 -105718828
-558728021 -105718828
-945909098 -105718828
-602870402 -105718828
104020243 -105718828
-283225325 -105718828
-188159226 -105718828
-15757119 -105718828
12299950 -105718828
382647230 -105718828
961198249 -105718828
142879463 -105718828
677630999 -105...

output:

100000
199990 199979
199955 199947
199944 199911
199907 199903
199891 199880
199872 199788
199740 199727
199685 199681
199668 199659
199641 199626
199589 199588
199533 199485
199470 199466
199433 199418
199414 199386
199367 199336
199298 199276
199251 199240
199219 199203
199180 199165
199163 199043...

result:

ok ok (1 test case)

Test #89:

score: 0
Accepted
time: 53ms
memory: 23828kb

input:

1
100000
791929316 -452812205
-414545951 -452812205
-492402719 -452812205
-350798285 -452812205
308143137 -452812205
-270019539 -452812205
-837044713 -452812205
-855873836 -452812205
299134701 -452812205
-928378050 -452812205
949766412 -452812205
983552624 -452812205
-302417116 -452812205
-575137906...

output:

100000
200000 199999
199998 199997
199996 199995
199994 199993
199992 199991
199990 199989
199988 199987
199986 199985
199984 199983
199982 199981
199980 199979
199978 199977
199976 199975
199974 199973
199972 199971
199970 199969
199968 199967
199966 199965
199964 199963
199962 199961
199960 199959...

result:

ok ok (1 test case)

Test #90:

score: 0
Accepted
time: 62ms
memory: 23836kb

input:

1
100000
-389700968 -854866948
157177186 -854866948
389548526 -854866948
359801591 -854866948
-404781586 -854866948
-756263865 -854866948
-874320830 -854866948
-860738544 -854866948
-494835614 -854866948
135417793 -854866948
878395153 -854866948
416627219 -854866948
50576116 -854866948
-877491066 -8...

output:

99999
200000 199999
199998 199997
199996 199995
199994 199993
199992 199991
199990 199989
199988 199987
199986 199985
199984 199983
199982 199981
199980 199979
199978 199977
199976 199975
199974 199973
199972 199971
199970 199969
199968 199967
199966 199965
199964 199963
199962 199961
199960 199959
...

result:

ok ok (1 test case)

Test #91:

score: 0
Accepted
time: 67ms
memory: 23744kb

input:

1
100000
-863878388 -228877853
556347609 -228877853
715519933 -228877853
-685414679 -228877853
121136094 -228877853
835184421 -228877853
2884225 -228877853
-632661834 -228877853
-376071163 -228877853
561924123 -228877853
104284355 -228877853
-832791265 -228877853
219285074 -228877853
-532813184 -228...

output:

100000
112661 177731
200000 199999
199998 199997
199996 199995
199994 199993
199992 199991
199990 199989
199988 199987
199986 199985
199984 199983
199982 199981
199980 199979
199978 199977
199976 199975
199974 199973
199972 199971
199970 199969
199968 199967
199966 199965
199964 199963
199962 199961...

result:

ok ok (1 test case)

Test #92:

score: 0
Accepted
time: 74ms
memory: 23840kb

input:

1
100000
59979025 770483795
-687037673 770483795
-606503145 770483795
74265013 770483795
535504783 770483795
-353324202 770483795
-742185632 770483795
-880778420 770483795
445635005 770483795
-637158728 770483795
-798486264 770483795
-969460603 770483795
-183267551 770483795
219412933 770483795
4516...

output:

99999
200000 199999
199998 199997
199996 199995
199994 199993
199992 199991
199990 199989
199988 199987
199986 199985
199984 199983
199982 199981
199980 199979
199978 199977
199976 199975
199974 199973
199972 199971
199970 199969
199968 199967
199966 199965
199964 199963
199962 199961
199960 199959
...

result:

ok ok (1 test case)

Test #93:

score: 0
Accepted
time: 67ms
memory: 23832kb

input:

1
100000
-238717794 -675789740
892502036 -675789740
927735589 -675789740
265425600 -675789740
713089930 -675789740
975285688 -675789740
994425171 -675789740
377011822 -675789740
-469725428 -675789740
240456322 -675789740
-696780335 -675789740
13943625 -675789740
-105628955 -675789740
500932288 -6757...

output:

99999
31762 29815
200000 199999
199998 199997
199996 199995
199994 199993
199992 199991
199990 199989
199988 199987
199986 199985
199984 199983
199982 199981
199980 199979
199978 199977
199976 199975
199974 199973
199972 199971
199970 199969
199968 199967
199966 199965
199964 199963
199962 199961
19...

result:

ok ok (1 test case)

Test #94:

score: 0
Accepted
time: 69ms
memory: 23816kb

input:

1
100000
-721839075 207317220
198969479 207317220
721075181 207317220
816055383 207317220
129129955 207317220
578715168 207317220
938570372 207317220
-111023272 207317220
704310574 207317220
-29012555 207317220
-1124535 207317220
565642912 207317220
-164326927 207317220
269985061 207317220
-85992111...

output:

100000
187608 54726
200000 199999
199998 199997
199996 199995
199994 199993
199992 199991
199990 199989
199988 199987
199986 199985
199984 199983
199982 199981
199980 199979
199978 199977
199976 199975
199974 199973
199972 199971
199970 199969
199968 199967
199966 199965
199964 199963
199962 199961
...

result:

ok ok (1 test case)

Test #95:

score: 0
Accepted
time: 72ms
memory: 23872kb

input:

1
100000
-394106502 -349602555
-214790523 -349602555
-773354523 -349602555
282532628 -349602555
908276613 -349602555
90866698 -349602555
547592286 -349602555
-771664838 -349602555
-459895994 -349602555
545210801 -349602555
348330065 -349602555
69245707 -349602555
-70850421 -349602555
-570400234 -349...

output:

96000
162911 90137
200000 199999
199997 199996
199995 199994
199993 199992
199990 199989
199988 199987
199986 199985
199984 199983
199982 199981
199980 199979
199978 199977
199976 199975
199974 199973
199972 199971
199970 199969
199968 199967
199966 199965
199964 199963
199962 199961
199960 199958
1...

result:

ok ok (1 test case)

Test #96:

score: 0
Accepted
time: 76ms
memory: 23832kb

input:

1
100000
-212599148 -631411742
-212599148 -756608454
-212599148 -380727055
-212599148 -483620464
-212599148 -806607419
-212599148 464110295
-212599148 100221705
-212599148 426302083
-212599148 -770781036
-212599148 238123749
-212599148 652260340
-212599148 7400105
-212599148 -114015691
-212599148 26...

output:

100000
200000 199999
199998 199997
199996 199995
199994 199993
199992 199991
199990 199989
199988 199987
199986 199985
199984 199983
199982 199981
199980 199979
199978 199977
199976 199975
199974 199973
199972 199971
199970 199969
199968 199967
199966 199965
199964 199963
199962 199961
199960 199959...

result:

ok ok (1 test case)

Test #97:

score: 0
Accepted
time: 77ms
memory: 23844kb

input:

1
100000
861172394 -290759846
861172394 752238765
861172394 -567950860
861172394 998044325
861172394 315984459
861172394 -627793707
861172394 -220676787
861172394 -268949003
861172394 -808244877
861172394 203040434
861172394 221600196
861172394 -142395895
861172394 723984474
861172394 25261585
86117...

output:

100000
200000 199999
199998 199997
199996 199995
199994 199993
199992 199991
199990 199989
199988 199987
199986 199985
199984 199983
199982 199981
199980 199979
199978 199977
199976 199975
199974 199973
199972 199971
199970 199969
199968 199967
199966 199965
199964 199963
199962 199961
199960 199959...

result:

ok ok (1 test case)

Test #98:

score: 0
Accepted
time: 89ms
memory: 23684kb

input:

1
100000
499304870 -456067706
499304870 -526478356
499304870 -698177941
962157497 -209895866
499304870 603709976
194809397 -209895866
499304870 -622241129
295675965 -209895866
798750809 -209895866
499304870 -379083513
499304870 -835042147
499304870 -239680418
69233437 -209895866
-139695003 -20989586...

output:

92291
200000 199997
199996 199989
199986 199985
199980 199978
199976 199972
199965 199961
199958 199956
199955 199946
199943 199941
199940 199939
199938 199937
199935 199933
199928 199925
199924 199918
199917 199916
199909 199908
199906 199904
199903 199901
199899 199898
199896 199893
199888 199883
...

result:

ok ok (1 test case)

Test #99:

score: 0
Accepted
time: 77ms
memory: 24660kb

input:

1
100000
-858246250 615044192
-266041885 988276483
482718956 -318377373
-764628559 -906181651
-858246250 -473264095
142558228 706800755
-788262537 988276483
22746060 640859154
-990386331 988276483
-69851564 988276483
-858246250 85218196
218467508 988276483
-858246250 859181857
687573233 988276483
-4...

output:

67291
199994 199991
199987 199979
199977 199976
199973 199970
199969 199967
199966 199965
199964 199963
199955 199954
199953 199952
199951 199946
199944 199943
199940 199939
199930 199926
199925 199921
199910 199900
199899 199896
199889 199888
199879 199878
199874 199871
199869 199868
199863 199862
...

result:

ok ok (1 test case)

Test #100:

score: 0
Accepted
time: 91ms
memory: 25436kb

input:

1
100000
-150551753 452254502
-589126107 -154864988
-774655110 -258862906
419458744 436149924
832748324 626049996
-150551753 -842016341
50222854 48805382
-533365798 510362787
417401571 -205386056
567574644 -154864988
-813149443 794441936
-299793018 -154864988
770796798 807259574
-150551753 345399056...

output:

32291
199992 199982
199977 199973
199972 199968
199967 199964
199962 199956
199953 199945
199935 199932
199925 199922
199914 199907
199906 199905
199901 199897
199896 199893
199891 199890
199881 199880
199878 199877
199871 199870
199868 199862
199861 199859
199850 199849
199848 199845
199839 199838
...

result:

ok ok (1 test case)

Test #101:

score: 0
Accepted
time: 114ms
memory: 26952kb

input:

1
100000
285908168 272049532
-886964145 -569780386
510905036 729082089
-980711479 -610409392
-374956972 -629812402
247564824 -494813970
-424829969 808435687
-596358126 293552786
-231573518 593358144
-206584506 -197027197
788863793 -320825254
-80636341 343699149
865833827 -126707889
-264031756 -99178...

output:

5111
199749 199671
199660 199232
199169 199002
198810 198744
198169 198061
197990 197939
197926 197821
197691 197562
197561 196799
196710 196566
196455 196173
195577 195215
194947 194784
194670 194014
193997 193620
193542 193442
192462 192381
191956 191727
191682 191659
191425 191409
191299 190722
1...

result:

ok ok (1 test case)

Test #102:

score: 0
Accepted
time: 133ms
memory: 26904kb

input:

1
100000
565553778 -960078095
363313784 637330036
813479302 196734774
-774652802 -191779344
-980564833 -172476596
97721308 -222616457
-585108481 -816071325
384348686 -771714186
399507870 923194801
775022324 -521366927
112774804 -456550819
596715515 -351906433
-733278086 945383835
-295767823 82342179...

output:

20
180069 18839
117515 4722
17587 62896
185310 12330
7087 151683
185622 129239
154987 85752
28427 19683
77333 75404
121584 105384
149668 28985
159601 145455
174549 129376
183908 56684
174877 123206
172056 18784
38908 47471
163883 177089
121095 97944
49656 37956
199999 200000
199997 199998
199995 199...

result:

ok ok (1 test case)

Test #103:

score: 0
Accepted
time: 131ms
memory: 26980kb

input:

1
100000
832414397 -191973279
799697814 453822080
472902980 355661811
773889737 -237095042
139066161 -168030962
-200818308 -659210292
591819947 -690219588
-894723232 -724129935
309100621 -442280293
601783531 -629714403
-518284237 -502069854
-324318938 -999351826
-445350259 -776355044
579496048 -3535...

output:

200
138127 129348
174109 122472
45060 35861
97641 58837
125371 96507
146789 61860
57420 9876
114168 59831
178157 28064
28941 79295
181053 96219
62538 118858
148959 45718
76564 125594
142794 60934
46574 5280
84424 61550
193291 1839
33061 22691
72270 40472
69247 99015
119055 23884
175409 66323
66101 1...

result:

ok ok (1 test case)

Test #104:

score: 0
Accepted
time: 130ms
memory: 27024kb

input:

1
100000
316081038 264919400
418308983 754756042
-672507100 -504831259
347176006 -475455422
-464074155 250593938
-689733050 -558992193
165084421 594791692
756992395 93538486
601928596 425487522
-948968175 -775787311
642279460 -97489081
949706854 134386823
-573515957 -691035427
686110259 935429550
-3...

output:

1984
139010 65224
75290 51507
159492 9369
125722 49920
171379 167064
170898 41883
131113 39391
140330 90667
130124 98877
99723 45084
82319 80938
198039 168240
52382 31259
117650 107897
43177 39072
118781 60629
136403 95548
180746 107163
160443 117844
145630 54818
79167 69363
187054 78160
161925 1431...

result:

ok ok (1 test case)

Test #105:

score: 0
Accepted
time: 121ms
memory: 26564kb

input:

1
100000
889766050 -900215668
-785435069 932780511
-593598392 -319579936
-819907899 -897600509
-163102947 369765636
-287328155 456835725
-903811491 57154208
-354611840 883364613
475188396 746218920
-813614969 540734211
824473110 591677255
-509397296 458247192
468251135 -745120799
508553265 422069900...

output:

18252
92690 39521
162169 36250
54841 26527
160867 66189
85764 18179
101108 22646
104674 11090
124434 59318
73897 21079
129562 75655
189274 174273
156854 57871
171968 123472
165204 148290
132762 27094
188393 171683
126890 85074
191946 139126
135526 33412
85140 12868
97297 59993
73898 70461
33321 2272...

result:

ok ok (1 test case)

Test #106:

score: 0
Accepted
time: 111ms
memory: 25740kb

input:

1
100000
569138929 623081181
595176935 -231729559
-353366942 -403863070
910926966 869119211
394470687 778639413
603585935 114468456
-834453070 52891615
988978359 457907555
-126372552 606236966
-965264313 -667974370
933978631 902269405
-462709387 -210009622
715607853 -386237572
-671683002 152885468
4...

output:

99999
164955 116167
128168 9509
84954 40450
169422 163574
141205 44104
72761 8854
169445 81539
97127 28174
305 16039
129610 158872
186824 104695
40737 12110
194965 158452
133423 74107
169481 46427
152174 18874
104787 92007
9351 8863
15539 167212
16530 163904
134417 92225
185993 142659
175583 590
198...

result:

ok ok (1 test case)

Test #107:

score: 0
Accepted
time: 99ms
memory: 23480kb

input:

1
100000
-545580238 206875231
-334278490 284778314
-577688466 532471873
-696161358 -260770669
-543552171 609399466
-248845812 281374889
604662925 947696452
815211151 -792551232
-726993196 -873648831
-806959352 -523234454
451106708 -525149528
196005170 210990094
7637155 927805109
-471891793 91423437
...

output:

100000
169608 124391
113141 23564
189551 17159
128937 66970
113589 15824
195806 192317
188245 178922
178019 168312
166553 165758
159348 158208
155859 151012
145420 144174
143492 140562
132990 132622
125544 117436
115196 114650
113963 113069
111264 105515
96208 93313
87830 83410
82433 79861
78329 660...

result:

ok ok (1 test case)

Test #108:

score: 0
Accepted
time: 76ms
memory: 23892kb

input:

1
100000
289524496 -156648931
477259193 -156648931
-940874730 -156648931
-678074509 -156648931
430778344 -156648931
314792323 -156648931
590595199 -156648931
336769789 -156648931
-952491382 -156648931
569800304 -156648931
-334619798 -156648931
745977166 -156648931
-939318247 -156648931
313727017 -15...

output:

100000
200000 199999
199998 199997
199996 199995
199994 199993
199992 199991
199990 199989
199988 199987
199986 199985
199984 199983
199982 199981
199980 199979
199978 199977
199976 199975
199974 199973
199972 199971
199970 199969
199968 199967
199966 199965
199964 199963
199962 199961
199960 199959...

result:

ok ok (1 test case)

Test #109:

score: 0
Accepted
time: 87ms
memory: 23748kb

input:

1
100000
551608067 365421420
-487728687 365421420
143644232 365421420
-351527721 365421420
-871435010 958574747
437117589 365421420
79082823 365421420
-932527349 365421420
-51983999 365421420
-981644356 365421420
27516634 365421420
122232864 365421420
-586305842 958574747
-186314882 365421420
-77505...

output:

100000
200000 199999
199998 199997
199996 199995
199993 199992
199991 199990
199989 199988
199987 199986
199985 199984
199983 199982
199981 199980
199979 199978
199977 199975
199974 199973
199972 199971
199970 199969
199968 199967
199966 199965
199964 199963
199962 199961
199960 199959
199958 199957...

result:

ok ok (1 test case)

Test #110:

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

input:

1
100000
973177252 740095208
603591199 740095208
912041445 740095208
-879893070 740095208
513021608 740095208
-296817755 397134181
-920132372 740095208
874286779 740095208
-697477339 740095208
675338682 740095208
-688816419 397134181
274927171 397134181
-966544303 740095208
-168526049 740095208
7376...

output:

100000
199997 199996
199995 199991
199990 199989
199988 199987
199986 199985
199984 199983
199982 199981
199980 199979
199978 199977
199976 199975
199974 199973
199972 199970
199969 199967
199966 199964
199963 199961
199960 199959
199958 199957
199956 199954
199951 199949
199947 199946
199945 199944...

result:

ok ok (1 test case)

Test #111:

score: 0
Accepted
time: 69ms
memory: 23572kb

input:

1
100000
801543585 -255560886
-749926618 -255560886
-127843709 -255560886
845588435 -737531782
988339842 -737531782
-626861162 -255560886
918453589 -255560886
749726781 -737531782
-581771893 -386009779
590486060 -386009779
734676998 -737531782
153171830 -737531782
845030651 -737531782
-915274358 -25...

output:

99999
199999 199997
199986 199985
199982 199972
199967 199955
199954 199937
199935 199934
199932 199926
199923 199921
199919 199916
199914 199911
199910 199906
199905 199903
199901 199900
199894 199891
199881 199877
199876 199870
199863 199860
199858 199857
199856 199843
199842 199841
199838 199837
...

result:

ok ok (1 test case)

Test #112:

score: 0
Accepted
time: 68ms
memory: 24072kb

input:

1
100000
946325199 -654997315
-893568018 -134419061
729992347 -654997315
759203364 -134419061
931585734 -654997315
813067224 -654997315
-219515258 -654997315
942523112 -654997315
93044508 -654997315
112202638 -654997315
887362429 -654997315
-895695158 -654997315
122895052 -334072657
-236406425 -3340...

output:

99999
200000 199998
199996 199976
199973 199965
199954 199951
199944 199936
199935 199933
199925 199918
199906 199904
199902 199901
199881 199877
199874 199871
199869 199867
199865 199864
199841 199840
199839 199835
199825 199821
199819 199815
199794 199778
199777 199774
199763 199762
199761 199757
...

result:

ok ok (1 test case)

Test #113:

score: 0
Accepted
time: 70ms
memory: 23576kb

input:

1
100000
-286313978 229324447
783769798 -259261199
203372724 229324447
903846546 -259261199
-62506027 229324447
-878593732 -259261199
-24614745 229324447
-681646734 -259261199
30846373 229324447
516134098 -259261199
383203441 229324447
-416474256 -259261199
-293604347 -259261199
-122611506 -25926119...

output:

100000
199878 199875
199633 199602
199501 199494
199440 199355
198927 198857
198691 198497
198324 198052
197825 197824
197739 197541
197470 197217
196987 196906
196846 196703
196676 196501
196408 196106
195875 195570
195447 195224
194845 194836
194633 194628
194582 194174
194117 194099
193955 193866...

result:

ok ok (1 test case)

Test #114:

score: 0
Accepted
time: 99ms
memory: 23108kb

input:

1
100000
-683388360 919019809
-859428325 -677839811
998213859 512472227
893351203 -331849691
-812365568 378975580
-361448436 -768680818
-498101610 -891785673
-48853924 827302039
-977322158 911487244
630622919 -47675260
464560219 -996571204
781514945 47367981
-641893570 460320130
-716591231 -24159771...

output:

97961
49045 46653
99142 152491
106468 71018
62147 9450
139869 111499
60605 17123
146860 73959
180188 15533
46569 107178
166742 198550
175912 44452
191056 97005
40345 16944
137406 80460
68278 37688
138662 115790
145651 33472
43497 123114
114063 101985
90300 13082
56501 12054
53866 19975
151590 94310
...

result:

ok ok (1 test case)

Test #115:

score: 0
Accepted
time: 61ms
memory: 23744kb

input:

1
100000
965071155 961909473
965071155 116193246
965071155 -398741995
965071155 -46836400
965071155 107811853
965071155 472916725
965071155 -801103891
965071155 -429946712
965071155 779079739
965071155 -339584185
965071155 -117199737
965071155 -34574080
965071155 940172004
965071155 859809257
965071...

output:

100000
200000 199999
199998 199997
199996 199995
199994 199993
199992 199991
199990 199989
199988 199987
199986 199985
199984 199983
199982 199981
199980 199979
199978 199977
199976 199975
199974 199973
199972 199971
199970 199969
199968 199967
199966 199965
199964 199963
199962 199961
199960 199959...

result:

ok ok (1 test case)

Test #116:

score: 0
Accepted
time: 71ms
memory: 23316kb

input:

1
100000
-108646393 572873810
760590825 -20548996
-817355882 -691664274
-652085034 966416413
760590825 -791160497
-684709037 441553262
691698692 281355233
-899208930 128349406
-344513662 428545673
-108646393 7920617
760590825 -153682268
760590825 -5134307
-899208930 891399973
975722593 224997612
760...

output:

100000
199818 199379
197619 197476
197344 195465
195418 194750
194597 194152
193957 193421
192894 192647
192590 192564
192276 192112
192055 191285
190941 190286
190139 190127
189620 189590
189533 189290
188804 187952
187932 187799
187370 187144
187048 186834
186789 186570
186211 186014
185578 185361...

result:

ok ok (1 test case)

Test #117:

score: 0
Accepted
time: 126ms
memory: 23352kb

input:

1
100000
657771764 499917223
340860304 -894365154
-166481907 95140359
263475661 -453431393
-421208726 -214095000
880473397 -932916417
-75750425 259300793
-605153080 -141604420
562225805 7170053
-611074444 -745330023
834249871 -314820890
608021155 -709004755
-214410370 -48571110
643218522 497384980
3...

output:

96041
172417 100888
126095 55556
23561 23261
98256 12863
142053 89995
29393 20757
114993 107582
37543 13225
140169 69988
160497 120682
62395 35052
109298 82808
197908 68714
37120 9099
113500 21726
40089 15149
178788 58614
123780 89514
27469 8069
81923 10433
198318 33278
177998 44625
77978 22084
1165...

result:

ok ok (1 test case)

Test #118:

score: 0
Accepted
time: 129ms
memory: 24664kb

input:

1
100000
-367654468 -952563688
285936870 592116431
-274071733 455847465
-171624585 354239799
349408391 -485168327
767563471 234441392
-528077539 -342651670
502696003 -903892090
-229679854 -452018526
-553390072 218410940
632717195 56077406
588095737 -173132122
-618084086 465397930
931640280 533044102...

output:

80396
62841 32000
131272 77801
91943 87729
163018 134784
140415 51952
103355 64750
95531 35328
117843 100760
21950 21009
99433 65391
32939 24184
92433 48241
136215 105025
55753 33513
122740 104344
188897 180624
195221 90827
115698 58811
174971 109067
101443 54288
31379 21135
107238 99557
156351 7312...

result:

ok ok (1 test case)

Test #119:

score: 0
Accepted
time: 107ms
memory: 25424kb

input:

1
100000
-906200254 -265351581
-61657317 -473114865
952191838 -484210630
-968862768 -688100917
-946086398 207717766
96200317 881558228
645408728 -29904463
-65219541 512094883
-105610142 -944887267
232013995 -248237040
571558060 -90454204
-56844375 -803257756
703491466 211175053
910638201 896424741
-...

output:

48783
192067 126290
109255 32276
182169 86715
44426 43708
181323 161573
134952 12731
175299 119484
191634 61121
126644 86917
121932 75704
144107 135760
185766 126234
191476 40328
148050 119091
199765 148288
97594 65351
91031 52851
184648 157125
198865 49491
172547 150777
180528 55827
67696 35384
121...

result:

ok ok (1 test case)

Test #120:

score: 0
Accepted
time: 108ms
memory: 26856kb

input:

1
100000
766382075 -21012642
-128826313 -161927840
507846892 -465151202
-122637205 252503287
673961711 322092096
472140704 525292475
-591417285 438455480
-659982761 -855470959
781169250 -760438229
-230659843 -352619932
64397555 -344061705
249444096 -515285207
-966136666 474387926
836585434 673332290...

output:

9778
171636 64702
194699 75099
156380 97140
121780 94923
166065 60282
130578 58819
99088 52959
169180 87570
56714 25086
101652 1896
64520 142788
47398 35670
129057 126046
95605 2861
141926 93280
44176 18109
191192 98293
169436 2730
140632 58991
122555 2884
82991 179672
78208 66254
192590 42518
12832...

result:

ok ok (1 test case)

Test #121:

score: 0
Accepted
time: 114ms
memory: 26912kb

input:

1
100000
-391309465 574501656
-601163643 398769165
437998755 -432176181
-504670744 400573721
363523163 -727677520
-810716783 387537161
-171290820 222526143
-710458455 -569456596
-546226838 -832409181
531132193 824799149
-523158870 -960204834
907379792 -31354498
-659185380 651124824
-917386965 958360...

output:

100000
195790 183892
63878 27082
146815 116271
107188 107048
169593 189824
165792 9829
157033 5732
66468 147920
50712 167050
110782 27685
155023 140458
193740 127122
54147 150497
152641 40161
23861 119955
195116 178487
108885 93786
52179 14591
198156 1565
132842 144301
177067 164692
121058 105469
85...

result:

ok ok (1 test case)

Test #122:

score: 0
Accepted
time: 108ms
memory: 26332kb

input:

1
100000
-570308074 564028419
41974764 951482748
-458707143 821043169
792070901 519849419
-897928950 732129807
-377209691 238697917
846996677 789967440
92894202 -75895048
674835179 -287863905
818656679 -759156926
-929937983 329230903
52584650 -174966413
-245982588 55776587
619716488 -142539574
-3331...

output:

100000
16275 2177
150542 136435
132379 122096
68107 2980
61391 31066
192557 175947
166076 114168
107293 38918
21829 2628
149815 27493
184140 48762
180999 174989
168306 154214
110306 91714
88178 37693
132212 75021
171520 17692
187073 199183
188006 179631
117394 81683
133877 78733
61841 61453
28220 17...

result:

ok ok (1 test case)

Test #123:

score: 0
Accepted
time: 130ms
memory: 25952kb

input:

1
100000
-870867990 -427477336
377455239 817489100
878782331 -17678742
638141193 -507332664
760969286 -686215018
680187812 -958635909
650765571 -244064336
-162743943 -197718056
-803668177 -612150607
245627960 16037985
-301270470 -415814129
-725795982 901008722
-795739083 25301151
-690989959 99318401...

output:

100000
178613 12536
180527 66792
36640 38753
136297 94382
72582 45727
172175 139069
124113 94202
165832 25986
199577 161171
143 86143
138147 105607
32306 93525
37454 56317
194100 51803
157161 125070
113198 59641
45968 6705
111327 129869
147271 69085
128543 145990
146913 45212
44820 116560
90536 4295...

result:

ok ok (1 test case)

Test #124:

score: 0
Accepted
time: 115ms
memory: 26748kb

input:

1
100000
-539465148 -845708233
41183593 -459286909
-334098911 241729240
-391831038 -16693053
973020777 536265241
556557281 -789431898
52149811 -685715732
-792343215 686258394
464507471 -40092028
-870155969 590469644
465578389 -589697394
-161523675 -991602821
855948608 265525154
-839351205 -62602192
...

output:

100000
178595 106896
136465 87245
67178 50233
199764 89924
1973 65414
120534 100790
81476 89980
70410 1210
163819 164912
97222 66675
36425 14027
27147 50430
32116 79822
167392 173758
56271 40056
94439 39968
89620 40196
193020 68229
180923 114504
186921 53264
171986 119668
92480 47789
22718 86835
477...

result:

ok ok (1 test case)

Test #125:

score: 0
Accepted
time: 123ms
memory: 25940kb

input:

1
100000
-301707541 -107785349
651696377 527237688
-311820441 -207092527
-214569234 -975358436
701909387 -785968490
-711653988 396775134
320035803 -913625682
593258459 -175337068
238164130 72714700
-539135317 -424645474
-205072058 507538329
-942822743 848584924
20017998 840987059
-272745279 -7423224...

output:

100000
157566 155748
21817 108963
137786 92570
63712 28019
60746 44963
147831 62903
138750 121303
65642 3487
8893 2935
196238 24395
93375 1421
142753 48221
125423 47034
165420 45234
187639 182994
173897 66770
65001 59348
157041 174465
187326 76893
72520 52817
31048 12529
188068 77522
59728 35680
192...

result:

ok ok (1 test case)

Test #126:

score: 0
Accepted
time: 107ms
memory: 25732kb

input:

1
100000
372101953 621089677
-107763756 -662571441
-63243920 659729647
441606222 -20964438
-861658828 -775998558
970349344 -718761240
-11091310 -651405801
723558495 57067049
-334677637 723258287
833883610 54943079
734085988 -274788427
668836759 -415187691
-227285405 23994731
212507360 -328156423
940...

output:

100000
10758 38194
10115 166108
52098 104637
162815 14298
173280 118827
140726 111693
58915 55543
176019 115347
181353 191251
83370 169110
129841 99758
196750 27916
41723 192315
14893 103085
197487 92563
194102 171944
145221 85610
12589 10567
118072 9236
153116 118418
69577 23814
110432 60334
71574 ...

result:

ok ok (1 test case)

Test #127:

score: 0
Accepted
time: 130ms
memory: 24620kb

input:

1
100000
-915867003 -471353976
-388104681 -614331870
712512068 -176609228
-249834836 -559087269
653127892 -445584953
754204027 962058868
-859865327 -430551978
-748113746 22447905
-53970847 230698214
488889725 -10963115
856013500 103474622
-985497526 -436330311
596095986 -945139677
35717532 -85633518...

output:

99946
140653 66983
190785 73371
16140 176558
21526 63948
25316 192826
127351 88714
49084 6918
68508 29516
22839 56409
163481 30576
150996 38056
197192 44487
191823 167130
130787 65225
175578 165969
171288 11283
192508 172915
71203 47101
194661 136769
175297 68979
12970 129440
167264 102763
85764 163...

result:

ok ok (1 test case)

Test #128:

score: 0
Accepted
time: 148ms
memory: 25988kb

input:

1
100000
-462294685 526220805
-608793181 78935812
-652123710 -88897518
-549445127 -950121976
404063639 -731462283
873109908 911227253
280108661 -384023678
-224512922 -527391217
-606653749 460705189
-795453552 954412985
557042734 419950356
71945893 766707128
975265143 857240778
678089771 850488211
86...

output:

100000
10356 152708
34590 172921
170422 160045
90408 91330
144408 100737
83894 19110
78785 22670
9258 28872
191966 61520
189362 160156
145598 78988
151192 68791
97502 35318
163110 105965
42690 27682
166076 194516
145950 113848
129912 105264
57569 36331
143194 53108
163578 76642
199236 172222
68537 5...

result:

ok ok (1 test case)

Test #129:

score: 0
Accepted
time: 127ms
memory: 25796kb

input:

1
100000
-217244737 -919036017
839515854 811349301
-529200839 -607492236
206068906 -756100661
-93942296 718088556
164065404 687609627
-335010106 575687136
-753768524 797665484
528969092 -675985219
-833864420 -976856005
-254998531 102163056
193138802 -109129538
-963610238 68206037
-505611099 66224247...

output:

100000
92102 100325
149422 104739
81031 11283
178258 146207
120144 198182
193532 44391
160853 191612
112800 52809
94539 28036
80480 167040
159360 44049
28095 81093
163982 17384
80943 185170
179086 192350
151235 131575
125256 168343
94232 7330
12793 9589
65308 100227
127299 57726
159091 31296
101013 ...

result:

ok ok (1 test case)

Test #130:

score: 0
Accepted
time: 109ms
memory: 23436kb

input:

1
100000
546952831 -551916540
-222366580 -190550190
690748205 621971537
-304787213 -426869636
430677306 737609007
-552529934 -587069496
534035388 -224937134
817092293 51151294
-603326277 963652497
675552100 -708035960
570918080 -54876116
-969756137 789057618
412261743 152512971
404319641 37207120
-1...

output:

95853
176262 161862
198332 114278
35395 1056
190223 185842
91958 86184
81487 66817
64053 47416
27220 23154
82183 62673
177794 135603
132116 35644
151955 126829
128757 67257
183312 52339
182831 88426
51490 45104
171533 71766
76029 30199
196462 101024
150685 71826
192081 108003
22250 19644
170912 1094...

result:

ok ok (1 test case)

Test #131:

score: 0
Accepted
time: 77ms
memory: 19788kb

input:

1
100000
-718650142 -337515990
219225987 -796448041
945735467 769273424
-265106195 -836296134
286397419 -465897164
-217444051 -861702365
-142203839 354946276
962047833 625331802
-436237082 697041665
-210015414 251812388
-580562900 -862577184
468877853 314574614
-848683471 -115639376
358203437 674429...

output:

100000
95611 114400
77361 100280
91917 182114
19333 67292
147381 197956
192756 13112
78970 77020
86276 130313
190928 183494
146131 136668
63908 9977
57234 90330
182708 79701
112753 64896
195607 152072
147268 41652
115029 180888
60548 96232
70020 183656
186373 150016
21163 44231
41789 25728
66090 169...

result:

ok ok (1 test case)

Test #132:

score: 0
Accepted
time: 137ms
memory: 25760kb

input:

1
100000
514065105 703173790
-898391374 199118883
-736313276 118966780
722733109 744001421
495427092 -308368925
-315318854 128815246
269153707 551867497
-795428350 -627563242
-221111684 -748945403
149671640 991495820
-169151249 -133790110
-552570804 601719573
-805801829 -857404452
-491986921 9945430...

output:

35570
52381 18731
119192 19688
159757 80013
156462 13837
83429 67830
122061 101490
198280 53459
117281 33054
124864 85483
61110 2724
112636 96182
168324 148455
85083 79026
14607 8819
63145 15618
7658 1680
131390 67254
138696 106256
178697 27173
166642 16728
46476 37658
155968 75890
172202 48911
8659...

result:

ok ok (1 test case)

Test #133:

score: 0
Accepted
time: 64ms
memory: 23536kb

input:

1
100000
-352442278 -740018096
-88202974 -740018096
-738618658 -144110914
-738618658 -604922659
-738618658 -932820553
356311978 -740018096
578254098 -740018096
-738618658 -853474506
366314668 -740018096
-738618658 -328885215
-738618658 804967834
-738618658 -326990482
-675958519 -740018096
-943725244...

output:

100000
199997 199992
199991 199990
199985 199984
199983 199982
199981 199979
199977 199976
199975 199974
199973 199972
199971 199967
199965 199964
199963 199962
199959 199958
199957 199955
199952 199950
199948 199946
199945 199944
199941 199939
199938 199935
199934 199932
199931 199930
199929 199928...

result:

ok ok (1 test case)

Test #134:

score: 0
Accepted
time: 67ms
memory: 23480kb

input:

1
100000
325122130 172466804
325122130 812054805
325122130 982296227
325122130 -588934091
325122130 -19140359
325122130 547947686
325122130 -958881583
325122130 -115703499
399672789 821857835
-751884489 821857835
-407471339 821857835
-440355675 821857835
-930981956 821857835
325122130 411759969
9942...

output:

100000
200000 199997
199996 199995
199994 199993
199992 199991
199990 199986
199985 199984
199983 199982
199981 199980
199978 199977
199976 199975
199974 199973
199972 199968
199967 199966
199964 199963
199962 199961
199960 199959
199956 199954
199953 199952
199950 199949
199947 199946
199944 199943...

result:

ok ok (1 test case)

Test #135:

score: 0
Accepted
time: 72ms
memory: 23824kb

input:

1
100000
-226465324 -765160112
-804076207 -66372335
-996256652 -66372335
-232309074 -66372335
433736878 -66372335
-226465324 884802247
241435841 -66372335
-216832241 -66372335
311207842 -66372335
-226465324 -209742435
368069229 -66372335
-605974269 -66372335
-846600651 -66372335
781736433 -66372335
...

output:

100000
199998 199996
199994 199991
199983 199977
199975 199972
199969 199966
199965 199964
199963 199962
199961 199954
199953 199952
199942 199934
199933 199932
199911 199910
199903 199900
199899 199898
199882 199880
199879 199870
199866 199863
199862 199860
199851 199847
199840 199839
199838 199836...

result:

ok ok (1 test case)

Test #136:

score: 0
Accepted
time: 78ms
memory: 23800kb

input:

1
100000
-938307807 -589622988
-781309279 862497436
-938307807 -280855161
-938307807 821787178
-938307807 -143785330
-342339007 862497436
-159228282 862497436
480181280 862497436
-725384126 862497436
-780856436 862497436
-915347010 862497436
-292109291 862497436
-183345034 862497436
158697996 862497...

output:

100000
199991 199983
199978 199967
199965 199963
199956 199955
199942 199928
199904 199900
199886 199878
199868 199851
199845 199840
199832 199822
199819 199814
199807 199782
199777 199775
199762 199761
199760 199757
199754 199753
199749 199741
199730 199714
199709 199706
199689 199673
199671 199664...

result:

ok ok (1 test case)

Test #137:

score: 0
Accepted
time: 9ms
memory: 3524kb

input:

10000
1
1 1
1 0
1
1 0
1 1
1
1 1
0 1
1
0 0
1 0
1
1 0
0 0
1
1 1
0 1
1
1 1
0 1
1
1 0
0 1
1
1 1
0 0
1
0 1
0 0
1
0 0
0 1
1
0 1
1 1
1
0 0
1 0
1
1 0
0 1
1
1 0
0 1
1
1 1
0 1
1
0 0
1 1
1
1 1
0 0
1
1 0
1 1
1
1 1
0 0
1
1 1
1 0
1
0 0
1 0
1
1 0
0 0
1
1 1
0 0
1
0 1
1 1
1
1 0
0 1
1
1 0
0 1
1
1 1
0 0
1
0 1
0 0
1
1 ...

output:

1
2 1
1
2 1
1
2 1
1
1 2
1
2 1
1
2 1
1
2 1
0
1 2
0
1 2
1
2 1
1
2 1
1
1 2
1
1 2
0
1 2
0
1 2
1
2 1
0
1 2
0
1 2
1
2 1
0
1 2
1
2 1
1
1 2
1
2 1
0
1 2
1
1 2
0
1 2
0
1 2
0
1 2
1
2 1
0
1 2
1
2 1
0
1 2
0
1 2
0
1 2
1
2 1
1
1 2
0
1 2
0
1 2
1
1 2
1
2 1
1
2 1
1
2 1
0
1 2
1
2 1
1
2 1
0
1 2
1
2 1
1
2 1
1
2 1
0
1 2
...

result:

ok ok (10000 test cases)

Test #138:

score: 0
Accepted
time: 17ms
memory: 3548kb

input:

10000
1
0 0
1 0
4
1 0
0 2
2 1
1 3
2 0
2 2
0 3
1 2
1
1 0
1 1
2
1 2
3 3
3 1
2 3
2
1 2
2 1
0 2
0 1
2
0 0
1 1
1 0
0 1
5
2 0
2 3
3 0
3 2
0 3
0 0
1 1
3 3
1 0
0 2
1
0 1
1 1
1
0 0
0 1
4
5 2
0 4
1 4
0 0
5 3
4 3
0 3
0 5
3
1 4
4 3
1 2
4 0
1 0
0 4
1
1 0
0 1
1
1 0
0 0
3
3 2
0 1
1 0
3 3
2 2
2 3
2
1 1
0 2
0 0
0 1
...

output:

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

result:

ok ok (10000 test cases)

Test #139:

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

input:

10000
1
0 1
1 0
4
3 0
2 1
3 1
2 4
4 0
1 3
1 2
4 4
1
0 0
0 1
1
0 1
1 0
3
3 5
2 5
5 3
4 2
0 4
5 5
2
1 2
2 1
1 1
2 2
1
1 1
0 1
2
1 0
1 2
2 0
2 2
1
0 1
0 0
3
1 1
0 1
2 2
2 0
0 0
2 1
1
1 0
0 0
2
0 1
2 0
2 1
0 2
4
3 3
6 4
4 3
7 1
2 4
5 1
6 7
6 5
1
1 0
0 1
2
1 3
3 2
0 1
2 3
3
3 2
1 2
2 2
0 0
2 3
3 0
1
0 0
...

output:

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

result:

ok ok (10000 test cases)

Test #140:

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

input:

10000
1
1 1
0 1
4
0 1
1 1
2 1
0 2
2 0
0 0
1 2
2 2
4
3 2
1 0
1 3
0 3
2 3
2 2
2 0
3 3
5
6 4
2 0
2 7
1 7
0 9
7 2
1 9
8 4
9 8
0 6
6
3 3
0 3
0 4
1 1
4 0
2 2
5 4
1 3
4 3
4 2
3 0
2 4
2
0 1
1 1
0 0
1 0
1
0 1
0 0
5
3 4
4 1
0 7
0 2
1 4
2 7
2 6
4 3
6 5
6 2
10
5 3
6 4
0 2
8 7
4 4
3 3
7 0
7 5
4 5
7 3
5 0
6 0
0 1...

output:

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

result:

ok ok (10000 test cases)

Test #141:

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

input:

10000
2
2 3
2 2
3 1
0 3
5
1 5
5 5
1 2
4 4
5 3
6 1
2 2
0 6
3 0
3 6
3
0 1
0 2
1 0
0 0
2 0
2 2
1
1 1
0 0
4
1 2
2 4
2 0
3 4
4 2
0 1
0 2
0 4
5
1 3
0 1
3 2
2 0
0 2
1 0
0 3
0 0
3 3
1 1
6
2 4
5 5
2 3
0 4
6 0
2 1
2 2
0 0
5 1
6 2
5 4
6 4
4
2 2
0 1
2 0
1 2
0 0
1 1
2 1
1 0
4
4 3
6 2
6 0
7 4
1 0
2 5
5 1
6 7
12
1...

output:

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

result:

ok ok (10000 test cases)

Test #142:

score: 0
Accepted
time: 38ms
memory: 3500kb

input:

10000
10
1 0
0 1
1 4
1 2
2 1
0 4
0 3
4 4
1 3
3 0
4 3
3 3
2 0
0 2
3 1
4 1
0 0
4 2
2 4
1 1
7
1 3
5 6
4 0
5 3
1 5
6 3
0 2
1 1
2 1
6 4
3 1
3 6
3 3
4 2
12
5 0
1 5
9 5
3 8
9 2
4 7
1 1
0 6
8 6
9 3
7 5
7 9
4 3
2 8
7 6
6 9
1 8
4 8
9 0
7 8
5 4
2 6
5 3
6 3
8
7 5
2 7
1 6
6 6
2 4
0 7
3 2
2 0
1 2
7 7
2 6
0 6
5 4
...

output:

10
11 12
8 18
9 4
1 3
13 10
5 19
20 16
2 15
17 14
7 6
6
6 10
11 9
2 12
13 4
8 5
14 3
1 7
12
24 16
1 21
19 5
23 10
13 6
18 14
17 4
2 7
11 3
20 12
22 15
8 9
8
10 1
9 7
3 4
16 14
15 13
11 8
2 5
12 6
2
6 5
3 2
1 4
2
4 2
3 1
2
4 2
3 1
16
33 32
10 3
12 2
34 14
6 22
13 17
36 26
16 21
24 20
4 11
9 35
1 27
7...

result:

ok ok (10000 test cases)

Test #143:

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

input:

10000
1
0 1
1 1
3
1 2
2 2
0 2
0 0
1 1
0 1
2
1 0
0 0
0 1
1 1
6
3 2
3 0
1 3
2 0
4 3
3 1
0 4
0 1
3 3
3 4
4 1
4 4
5
2 3
6 6
6 4
4 0
6 3
7 3
1 3
3 4
4 5
6 7
3
1 1
2 3
1 3
0 0
2 1
0 3
6
5 2
2 5
4 7
1 5
5 3
2 4
4 0
6 5
6 4
8 5
1 4
6 0
1
1 0
1 1
6
4 11
3 7
9 10
0 5
1 10
4 4
7 8
8 2
4 0
7 0
1 3
4 2
4
0 6
6 2...

output:

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

result:

ok ok (10000 test cases)

Test #144:

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

input:

10000
12
13 12
11 3
11 1
7 0
9 8
11 6
2 17
1 9
8 11
17 0
11 11
6 17
15 11
9 5
13 2
0 3
5 3
12 9
5 6
0 16
3 8
17 11
17 6
7 6
7
7 7
2 5
10 4
7 4
2 7
1 1
7 1
8 3
2 2
6 8
4 6
6 2
8 10
10 9
9
9 1
10 11
10 8
7 1
0 3
0 8
6 1
12 3
2 7
3 2
8 6
8 3
3 0
3 3
5 5
10 0
0 7
6 6
3
2 1
3 3
4 0
2 0
2 2
1 1
1
0 0
1 1
...

output:

11
15 1
5 14
7 12
8 18
13 9
10 4
23 22
24 19
11 6
2 3
16 17
20 21
6
13 8
3 14
12 10
9 2
1 5
7 4
6 11
8
17 9
3 2
13 16
14 10
4 1
18 7
12 11
5 8
6 15
2
4 3
1 5
2 6
0
1 2
1
2 1
3
6 4
2 1
5 3
2
2 4
3 1
1
2 1
7
5 13
12 2
11 7
9 10
8 6
14 1
3 4
15 16
19
36 16
7 37
30 12
14 8
1 38
25 21
32 3
15 2
29 39
17 ...

result:

ok ok (10000 test cases)

Test #145:

score: 0
Accepted
time: 54ms
memory: 3548kb

input:

10000
2
0 0
1 1
0 1
1 0
12
1 1
3 3
6 1
4 3
0 2
5 0
0 5
5 4
2 6
2 3
2 1
0 3
2 2
0 6
1 2
5 5
3 0
4 0
5 1
2 0
4 1
1 3
5 2
1 5
16
5 2
3 2
7 5
7 10
1 2
9 6
5 1
10 5
6 7
5 5
8 3
6 2
6 4
2 0
8 7
3 10
9 1
5 7
3 8
3 6
8 9
0 3
4 3
1 10
7 8
8 0
3 1
7 6
10 8
3 3
0 10
1 5
15
5 5
2 1
2 3
6 3
2 5
6 6
0 6
5 1
6 1
5...

output:

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

result:

ok ok (10000 test cases)

Test #146:

score: 0
Accepted
time: 60ms
memory: 3520kb

input:

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

output:

7
8 2
15 7
11 16
6 1
4 12
13 9
3 14
5 10
6
12 2
7 3
1 11
4 10
8 6
9 5
56
108 96
67 84
61 12
34 26
72 59
39 36
100 4
9 74
97 18
48 21
11 15
14 99
2 106
111 109
64 58
19 105
101 80
20 98
95 29
3 22
56 43
35 30
24 8
47 5
65 62
89 88
66 42
91 50
76 23
25 16
104 87
83 63
82 79
77 37
28 6
90 69
60 45
13 1...

result:

ok ok (10000 test cases)

Test #147:

score: 0
Accepted
time: 52ms
memory: 3820kb

input:

1000
116
40 14
11 4
18 3
11 36
20 21
11 5
10 21
8 37
8 38
11 22
40 33
4 4
2 36
31 21
0 0
37 16
21 39
16 42
41 9
13 25
6 41
33 2
38 30
30 38
9 33
19 24
0 20
7 38
27 21
22 39
1 41
42 18
3 1
5 40
38 18
38 32
4 29
1 19
0 27
16 36
22 31
11 29
30 41
42 31
34 8
16 19
1 24
27 9
13 19
1 9
8 18
34 24
9 4
22 3...

output:

116
107 104
91 3
164 147
168 110
87 140
63 119
19 83
198 150
197 33
76 18
13 102
109 40
225 209
142 97
61 74
191 189
192 56
221 190
23 165
196 36
85 35
185 67
58 32
94 44
178 148
54 41
231 169
145 125
215 186
195 131
127 90
211 172
51 8
28 24
72 9
16 134
55 66
216 203
25 106
155 62
226 193
115 59
22...

result:

ok ok (1000 test cases)

Test #148:

score: 0
Accepted
time: 61ms
memory: 4192kb

input:

100
1751
676 962
2080 1171
2449 361
678 1915
276 2074
1308 739
1328 739
442 105
1452 14
962 26
614 2079
1882 1674
1619 868
1354 435
2075 2473
514 1497
2365 2044
601 734
2227 1499
218 519
1848 600
219 1462
207 450
1644 1089
2157 2364
1890 1306
697 1851
1293 1484
1068 1656
2405 2194
625 727
2460 375
2...

output:

1627
1167 32
3240 1383
3171 1949
1041 1775
2746 507
3281 305
1214 567
2670 421
2359 2313
3419 2660
2023 530
1756 2198
1479 1998
2640 1337
2106 1852
1032 3132
3469 353
434 2110
367 2950
3357 829
3000 2214
3048 2407
3058 450
1685 2751
3366 109
3243 2168
381 835
2786 1292
2723 1750
2174 791
2132 1521
2...

result:

ok ok (100 test cases)

Test #149:

score: 0
Accepted
time: 84ms
memory: 7840kb

input:

10
5923
990 3340
465 3601
4722 4502
1946 1225
2051 4441
3447 2001
1373 1646
4604 1645
2067 2525
2984 486
1779 2132
281 2392
3682 3334
2807 2874
1709 1458
3249 1263
3358 1826
1067 3769
1473 3101
144 1498
2492 553
341 1852
397 4263
4683 3010
4547 4068
2198 689
2087 4032
182 545
3578 3282
3051 2356
258...

output:

5878
4361 2478
10549 9309
6133 4539
10522 9910
7983 2689
5039 4129
11627 10630
11161 9453
3845 8952
5436 6405
9016 2652
11008 6107
1383 9018
10537 9116
9871 7038
6601 8110
7132 10589
5200 3486
7133 6279
7487 7050
9517 11180
9709 2435
9345 5171
4622 10502
8612 5334
5068 3100
7717 4349
11322 6562
8125...

result:

ok ok (10 test cases)

Test #150:

score: 0
Accepted
time: 114ms
memory: 24444kb

input:

1
100000
167013 125784
135343 32228
31636 139579
125392 28117
109132 130552
18863 126456
70093 140399
65187 131293
60990 127651
2030 57656
111845 109917
114136 18890
12132 33233
93847 20459
44854 159309
21435 47947
118357 48471
33129 78641
154624 169493
106664 83316
164632 49121
5045 149642
161002 1...

output:

86849
199916 80763
165633 80719
96232 72587
170660 54312
198486 22991
194986 36327
64167 27494
140224 24024
186469 130505
82468 9007
163722 138956
157475 9657
197292 188255
181876 125175
79167 23987
191675 9455
199632 184919
139971 94846
115705 97166
189917 118513
58361 20456
195723 9568
176678 1114...

result:

ok ok (1 test case)

Test #151:

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

input:

10000
8
2 1
0 1
2 3
3 3
2 0
1 0
1 3
3 1
1 2
0 2
2 2
0 3
1 1
3 2
0 0
3 0
6
2 3
3 0
0 1
2 1
0 3
3 3
2 2
1 1
0 0
1 0
0 2
1 2
56
2 4
5 2
6 6
4 9
5 1
8 5
10 7
8 3
2 0
8 6
6 1
0 4
9 8
10 10
2 2
3 10
6 3
0 9
8 4
2 5
4 5
10 2
1 8
8 8
10 3
2 6
6 10
1 0
2 3
6 0
2 10
8 2
9 9
6 7
6 4
3 9
6 9
9 3
5 10
5 0
10 6
9...

output:

8
9 6
16 14
7 4
11 5
1 3
13 8
15 12
10 2
6
10 12
6 2
7 1
8 4
11 9
5 3
56
63 16
39 5
108 2
83 49
101 92
62 22
14 7
106 89
74 41
61 34
27 11
17 3
112 88
84 25
78 45
32 10
6 8
81 80
69 57
93 77
70 56
52 44
4 21
102 91
87 37
33 36
107 96
85 82
55 42
13 38
111 109
105 100
99 86
23 24
104 103
95 66
65 50
...

result:

ok ok (10000 test cases)

Test #152:

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

input:

1000
116
8 8
4 15
0 7
0 0
9 4
14 3
12 9
8 9
9 2
3 13
7 6
7 8
7 5
14 10
6 14
3 12
15 14
6 11
14 2
4 5
3 10
5 14
0 10
13 8
14 1
3 1
14 5
0 13
1 7
2 12
12 7
15 1
13 14
4 13
2 15
4 10
9 9
3 0
14 12
10 12
12 12
10 13
11 3
10 11
11 9
2 11
13 7
12 6
5 12
1 9
7 15
11 8
0 14
4 0
13 6
14 9
2 6
1 13
7 12
12 10...

output:

116
84 87
112 9
69 5
95 63
183 141
13 116
224 207
11 171
198 98
170 55
223 208
201 184
146 118
62 61
192 158
157 108
1 103
150 105
24 12
221 219
200 168
138 136
43 52
217 199
94 71
176 175
173 147
27 19
14 6
226 195
185 163
154 144
65 25
230 212
182 180
145 130
77 74
17 32
229 220
148 113
85 73
33 2...

result:

ok ok (1000 test cases)

Test #153:

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

input:

100
1751
43 55
50 32
40 59
17 23
14 41
50 44
52 57
26 29
6 21
2 50
46 36
34 9
44 12
55 22
20 5
23 45
50 43
53 6
41 58
19 27
22 53
16 32
11 56
7 36
20 39
23 48
46 48
9 51
15 4
40 38
51 36
21 45
52 7
49 37
10 24
16 56
33 50
48 56
51 34
11 33
43 18
20 59
4 9
41 44
52 23
26 26
20 51
40 36
37 59
40 56
37...

output:

1751
65 1982
1113 1469
271 2073
2525 1323
3376 2198
1433 1237
2986 2820
622 2492
1686 1161
355 754
2467 2291
1091 823
3305 2546
2419 877
547 79
3440 3239
2836 936
318 873
2685 2128
1099 937
120 672
3236 1552
1037 965
703 536
2579 1860
1655 1643
1495 1247
130 309
2721 2064
702 572
523 299
188 260
281...

result:

ok ok (100 test cases)

Test #154:

score: 0
Accepted
time: 54ms
memory: 6336kb

input:

10
5923
53 27
26 66
1 35
65 99
6 99
28 12
61 5
106 43
37 67
106 91
84 102
76 52
10 52
20 74
11 12
29 4
42 71
86 53
42 37
89 37
70 36
12 19
78 53
8 15
106 11
28 97
10 11
100 89
55 2
46 94
82 43
57 84
62 101
65 58
16 16
82 59
91 76
7 30
50 65
107 9
46 12
105 55
11 10
97 23
83 82
6 50
52 57
69 53
77 83...

output:

5923
11743 4853
7662 6388
11301 644
6948 1354
640 728
8266 1063
10195 10116
3169 40
8818 7488
5238 4008
10217 9316
7022 2234
113 1310
10825 10127
9489 9111
10934 7706
7075 7074
1090 973
9509 8799
4554 2909
1649 1487
10606 9876
9605 9462
6337 5070
87 4620
8084 5138
5046 3095
2868 1535
11597 9894
8710...

result:

ok ok (10 test cases)

Test #155:

score: 0
Accepted
time: 52ms
memory: 18324kb

input:

1
100000
436 393
386 68
30 357
47 276
18 61
414 156
347 273
304 106
72 167
114 83
260 443
192 432
324 196
388 313
153 350
284 316
165 408
26 313
298 348
293 221
318 119
380 345
27 325
91 223
403 186
374 185
416 143
418 325
217 7
147 209
385 220
128 207
58 331
35 309
151 313
284 372
335 384
181 274
3...

output:

100000
67816 14009
172548 132669
46902 31742
133541 39998
9838 21699
188848 156726
176343 172912
116460 410
134814 123473
113267 60657
197664 89408
74354 72133
15463 13387
177236 62620
59813 39451
186626 105746
76179 74732
72088 46607
187091 163657
144760 138391
120379 112982
179889 174294
154692 12...

result:

ok ok (1 test case)