QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#666409#9176. Non-Interactive NimmaspyAC ✓16ms4236kbC++2313.7kb2024-10-22 18:18:212024-10-22 18:18:23

Judging History

This is the latest submission verdict.

  • [2024-10-22 18:18:23]
  • Judged
  • Verdict: AC
  • Time: 16ms
  • Memory: 4236kb
  • [2024-10-22 18:18:21]
  • Submitted

answer

#line 1 "/home/maspy/compro/library/my_template.hpp"
#if defined(LOCAL)
#include <my_template_compiled.hpp>
#else

// https://codeforces.com/blog/entry/96344
#pragma GCC optimize("Ofast,unroll-loops")
// いまの CF だとこれ入れると動かない?
// #pragma GCC target("avx2,popcnt")

#include <bits/stdc++.h>

using namespace std;

using ll = long long;
using u8 = uint8_t;
using u16 = uint16_t;
using u32 = uint32_t;
using u64 = uint64_t;
using i128 = __int128;
using u128 = unsigned __int128;
using f128 = __float128;

template <class T>
constexpr T infty = 0;
template <>
constexpr int infty<int> = 1'010'000'000;
template <>
constexpr ll infty<ll> = 2'020'000'000'000'000'000;
template <>
constexpr u32 infty<u32> = infty<int>;
template <>
constexpr u64 infty<u64> = infty<ll>;
template <>
constexpr i128 infty<i128> = i128(infty<ll>) * 2'000'000'000'000'000'000;
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); }
int popcnt_mod_2(int x) { return __builtin_parity(x); }
int popcnt_mod_2(u32 x) { return __builtin_parity(x); }
int popcnt_mod_2(ll x) { return __builtin_parityll(x); }
int popcnt_mod_2(u64 x) { return __builtin_parityll(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>
T floor(T a, T b) {
  return a / b - (a % b && (a ^ b) < 0);
}
template <typename T>
T ceil(T x, T y) {
  return floor(x + y - 1, y);
}
template <typename T>
T bmod(T x, T y) {
  return x - y * floor(x, y);
}
template <typename T>
pair<T, T> divmod(T x, T y) {
  T q = floor(x, y);
  return {q, x - q * y};
}

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

#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) {
  T a = que.top();
  que.pop();
  return a;
}
template <typename T>
T POP(vc<T> &que) {
  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;
    (check(x) ? ok : ng) = 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;
    (check(x) ? ok : ng) = 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;
}

template <typename T, typename... Vectors>
void concat(vc<T> &first, const Vectors &... others) {
  vc<T> &res = first;
  (res.insert(res.end(), others.begin(), others.end()), ...);
}
#endif
#line 1 "/home/maspy/compro/library/other/io.hpp"
#define FASTIO
#include <unistd.h>

// https://judge.yosupo.jp/submission/21623
namespace fastio {
static constexpr uint32_t SZ = 1 << 17;
char ibuf[SZ];
char obuf[SZ];
char out[100];
// pointer of ibuf, obuf
uint32_t pil = 0, pir = 0, por = 0;

struct Pre {
  char num[10000][4];
  constexpr Pre() : num() {
    for (int i = 0; i < 10000; i++) {
      int n = i;
      for (int j = 3; j >= 0; j--) {
        num[i][j] = n % 10 | '0';
        n /= 10;
      }
    }
  }
} constexpr pre;

inline void load() {
  memcpy(ibuf, ibuf + pil, pir - pil);
  pir = pir - pil + fread(ibuf + pir - pil, 1, SZ - pir + pil, stdin);
  pil = 0;
  if (pir < SZ) ibuf[pir++] = '\n';
}

inline void flush() {
  fwrite(obuf, 1, por, stdout);
  por = 0;
}

void rd(char &c) {
  do {
    if (pil + 1 > pir) load();
    c = ibuf[pil++];
  } while (isspace(c));
}

void rd(string &x) {
  x.clear();
  char c;
  do {
    if (pil + 1 > pir) load();
    c = ibuf[pil++];
  } while (isspace(c));
  do {
    x += c;
    if (pil == pir) load();
    c = ibuf[pil++];
  } while (!isspace(c));
}

template <typename T>
void rd_real(T &x) {
  string s;
  rd(s);
  x = stod(s);
}

template <typename T>
void rd_integer(T &x) {
  if (pil + 100 > pir) load();
  char c;
  do
    c = ibuf[pil++];
  while (c < '-');
  bool minus = 0;
  if constexpr (is_signed<T>::value || is_same_v<T, i128>) {
    if (c == '-') { minus = 1, c = ibuf[pil++]; }
  }
  x = 0;
  while ('0' <= c) { x = x * 10 + (c & 15), c = ibuf[pil++]; }
  if constexpr (is_signed<T>::value || is_same_v<T, i128>) {
    if (minus) x = -x;
  }
}

void rd(int &x) { rd_integer(x); }
void rd(ll &x) { rd_integer(x); }
void rd(i128 &x) { rd_integer(x); }
void rd(u32 &x) { rd_integer(x); }
void rd(u64 &x) { rd_integer(x); }
void rd(u128 &x) { rd_integer(x); }
void rd(double &x) { rd_real(x); }
void rd(long double &x) { rd_real(x); }
void rd(f128 &x) { rd_real(x); }

template <class T, class U>
void rd(pair<T, U> &p) {
  return rd(p.first), rd(p.second);
}
template <size_t N = 0, typename T>
void rd_tuple(T &t) {
  if constexpr (N < std::tuple_size<T>::value) {
    auto &x = std::get<N>(t);
    rd(x);
    rd_tuple<N + 1>(t);
  }
}
template <class... T>
void rd(tuple<T...> &tpl) {
  rd_tuple(tpl);
}

template <size_t N = 0, typename T>
void rd(array<T, N> &x) {
  for (auto &d: x) rd(d);
}
template <class T>
void rd(vc<T> &x) {
  for (auto &d: x) rd(d);
}

void read() {}
template <class H, class... T>
void read(H &h, T &... t) {
  rd(h), read(t...);
}

void wt(const char c) {
  if (por == SZ) flush();
  obuf[por++] = c;
}
void wt(const string s) {
  for (char c: s) wt(c);
}
void wt(const char *s) {
  size_t len = strlen(s);
  for (size_t i = 0; i < len; i++) wt(s[i]);
}

template <typename T>
void wt_integer(T x) {
  if (por > SZ - 100) flush();
  if (x < 0) { obuf[por++] = '-', x = -x; }
  int outi;
  for (outi = 96; x >= 10000; outi -= 4) {
    memcpy(out + outi, pre.num[x % 10000], 4);
    x /= 10000;
  }
  if (x >= 1000) {
    memcpy(obuf + por, pre.num[x], 4);
    por += 4;
  } else if (x >= 100) {
    memcpy(obuf + por, pre.num[x] + 1, 3);
    por += 3;
  } else if (x >= 10) {
    int q = (x * 103) >> 10;
    obuf[por] = q | '0';
    obuf[por + 1] = (x - q * 10) | '0';
    por += 2;
  } else
    obuf[por++] = x | '0';
  memcpy(obuf + por, out + outi + 4, 96 - outi);
  por += 96 - outi;
}

template <typename T>
void wt_real(T x) {
  ostringstream oss;
  oss << fixed << setprecision(15) << double(x);
  string s = oss.str();
  wt(s);
}

void wt(int x) { wt_integer(x); }
void wt(ll x) { wt_integer(x); }
void wt(i128 x) { wt_integer(x); }
void wt(u32 x) { wt_integer(x); }
void wt(u64 x) { wt_integer(x); }
void wt(u128 x) { wt_integer(x); }
void wt(double x) { wt_real(x); }
void wt(long double x) { wt_real(x); }
void wt(f128 x) { wt_real(x); }

template <class T, class U>
void wt(const pair<T, U> val) {
  wt(val.first);
  wt(' ');
  wt(val.second);
}
template <size_t N = 0, typename T>
void wt_tuple(const T t) {
  if constexpr (N < std::tuple_size<T>::value) {
    if constexpr (N > 0) { wt(' '); }
    const auto x = std::get<N>(t);
    wt(x);
    wt_tuple<N + 1>(t);
  }
}
template <class... T>
void wt(tuple<T...> tpl) {
  wt_tuple(tpl);
}
template <class T, size_t S>
void wt(const array<T, S> val) {
  auto n = val.size();
  for (size_t i = 0; i < n; i++) {
    if (i) wt(' ');
    wt(val[i]);
  }
}
template <class T>
void wt(const vector<T> val) {
  auto n = val.size();
  for (size_t i = 0; i < n; i++) {
    if (i) wt(' ');
    wt(val[i]);
  }
}

void print() { wt('\n'); }
template <class Head, class... Tail>
void print(Head &&head, Tail &&... tail) {
  wt(head);
  if (sizeof...(Tail)) wt(' ');
  print(forward<Tail>(tail)...);
}

// gcc expansion. called automaticall after main.
void __attribute__((destructor)) _d() { flush(); }
} // namespace fastio
using fastio::read;
using fastio::print;
using fastio::flush;

#if defined(LOCAL)
#define SHOW(...) SHOW_IMPL(__VA_ARGS__, SHOW6, SHOW5, SHOW4, SHOW3, SHOW2, SHOW1)(__VA_ARGS__)
#define SHOW_IMPL(_1, _2, _3, _4, _5, _6, NAME, ...) NAME
#define SHOW1(x) print(#x, "=", (x)), flush()
#define SHOW2(x, y) print(#x, "=", (x), #y, "=", (y)), flush()
#define SHOW3(x, y, z) print(#x, "=", (x), #y, "=", (y), #z, "=", (z)), flush()
#define SHOW4(x, y, z, w) print(#x, "=", (x), #y, "=", (y), #z, "=", (z), #w, "=", (w)), flush()
#define SHOW5(x, y, z, w, v) print(#x, "=", (x), #y, "=", (y), #z, "=", (z), #w, "=", (w), #v, "=", (v)), flush()
#define SHOW6(x, y, z, w, v, u) print(#x, "=", (x), #y, "=", (y), #z, "=", (z), #w, "=", (w), #v, "=", (v), #u, "=", (u)), flush()
#else
#define SHOW(...)
#endif

#define INT(...)   \
  int __VA_ARGS__; \
  read(__VA_ARGS__)
#define LL(...)   \
  ll __VA_ARGS__; \
  read(__VA_ARGS__)
#define U32(...)   \
  u32 __VA_ARGS__; \
  read(__VA_ARGS__)
#define U64(...)   \
  u64 __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 3 "main.cpp"

void solve() {
  LL(N);
  VEC(ll, A, N);
  if (N >= 200) { return print(-1); }
  vc<pi> out;
  FOR_R(k, 60) {
    vc<int> I;
    FOR(i, N) {
      if (A[i] >> k & 1) I.eb(i);
    }
    if (len(I) >= 3) return print(-1);
    if (I.empty()) continue;
    int i = I[0], j = I[1];
    out.eb(1 + i, A[i]);
    A[j] ^= A[i];
    A[i] = 0;
  }
  print(len(out));
  for (auto& [a, b]: out) print(a, b);
}

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

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

Details

Tip: Click on the bar to expand more detailed information

Test #1:

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

input:

2
4
4 2 7 1
4
1 1 1 1

output:

3
1 4
2 2
3 1
-1

result:

ok OK 1 yes 1 no (2 test cases)

Test #2:

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

input:

50000
2
3 3
2
2 2
2
3 3
2
2 2
2
3 3
2
3 3
2
1 1
2
1 1
2
1 1
2
2 2
2
2 2
2
3 3
2
2 2
2
1 1
2
3 3
2
1 1
2
1 1
2
1 1
2
3 3
2
1 1
2
1 1
2
3 3
2
2 2
2
3 3
2
3 3
2
2 2
2
1 1
2
3 3
2
2 2
2
2 2
2
3 3
2
3 3
2
1 1
2
1 1
2
1 1
2
3 3
2
3 3
2
1 1
2
1 1
2
3 3
2
2 2
2
2 2
2
2 2
2
1 1
2
1 1
2
2 2
2
2 2
2
1 1
2
3 3
...

output:

1
1 3
1
1 2
1
1 3
1
1 2
1
1 3
1
1 3
1
1 1
1
1 1
1
1 1
1
1 2
1
1 2
1
1 3
1
1 2
1
1 1
1
1 3
1
1 1
1
1 1
1
1 1
1
1 3
1
1 1
1
1 1
1
1 3
1
1 2
1
1 3
1
1 3
1
1 2
1
1 1
1
1 3
1
1 2
1
1 2
1
1 3
1
1 3
1
1 1
1
1 1
1
1 1
1
1 3
1
1 3
1
1 1
1
1 1
1
1 3
1
1 2
1
1 2
1
1 2
1
1 1
1
1 1
1
1 2
1
1 2
1
1 1
1
1 3
1
1 3
...

result:

ok OK 50000 yes 0 no (50000 test cases)

Test #3:

score: 0
Accepted
time: 16ms
memory: 4032kb

input:

50000
2
89846347117873058 89846347117873058
2
416235892302498917 416235892302498917
2
332154513003612985 332154513003612985
2
43960216631774959 43960216631774959
2
353215896487285554 353215896487285554
2
38296945667390613 38296945667390613
2
209150071115726640 209150071115726640
2
48610805835417777 ...

output:

1
1 89846347117873058
1
1 416235892302498917
1
1 332154513003612985
1
1 43960216631774959
1
1 353215896487285554
1
1 38296945667390613
1
1 209150071115726640
1
1 48610805835417777
1
1 211544111448330513
1
1 25910837432700249
1
1 332285940128117259
1
1 350363936612994860
1
1 243778347549648401
1
1 21...

result:

ok OK 50000 yes 0 no (50000 test cases)

Test #4:

score: 0
Accepted
time: 7ms
memory: 3772kb

input:

33333
3
1 3 2
3
2 3 1
2
1 1
3
1 2 3
3
3 2 1
3
1 2 3
2
1 1
2
3 3
2
3 3
3
1 2 3
3
1 3 2
3
3 2 1
2
2 2
3
3 2 1
2
3 3
3
3 1 2
2
1 1
3
1 2 3
3
1 3 2
3
2 3 1
3
1 3 2
3
1 2 3
3
1 2 3
3
3 1 2
3
2 3 1
3
1 3 2
3
1 3 2
2
1 1
2
3 3
3
3 2 1
2
3 3
3
1 3 2
3
2 3 1
3
2 3 1
3
1 3 2
3
2 3 1
3
2 3 1
3
3 2 1
2
1 1
3
2 ...

output:

2
2 3
1 1
2
1 2
2 1
1
1 1
2
2 2
1 1
2
1 3
2 1
2
2 2
1 1
1
1 1
1
1 3
1
1 3
2
2 2
1 1
2
2 3
1 1
2
1 3
2 1
1
1 2
2
1 3
2 1
1
1 3
2
1 3
2 1
1
1 1
2
2 2
1 1
2
2 3
1 1
2
1 2
2 1
2
2 3
1 1
2
2 2
1 1
2
2 2
1 1
2
1 3
2 1
2
1 2
2 1
2
2 3
1 1
2
2 3
1 1
1
1 1
1
1 3
2
1 3
2 1
1
1 3
2
2 3
1 1
2
1 2
2 1
2
1 2
2 1
...

result:

ok OK 33333 yes 0 no (33333 test cases)

Test #5:

score: 0
Accepted
time: 12ms
memory: 3896kb

input:

33333
3
1 7 6
3
5 1 4
3
7 3 4
3
6 4 2
3
5 3 6
3
5 3 6
3
7 4 3
3
1 2 3
3
4 3 7
3
2 4 6
3
1 6 7
3
4 5 1
3
1 5 4
2
4 4
2
6 6
3
4 7 3
3
4 2 6
3
1 3 2
3
3 4 7
2
2 2
3
7 3 4
3
2 7 5
3
7 6 1
3
7 3 4
3
4 3 7
3
2 4 6
3
7 1 6
3
3 1 2
3
5 3 6
3
2 6 4
3
6 1 7
3
1 2 3
3
2 1 3
3
5 2 7
3
2 4 6
3
6 3 5
3
5 7 2
2
5 ...

output:

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

result:

ok OK 33333 yes 0 no (33333 test cases)

Test #6:

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

input:

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

output:

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

result:

ok OK 33333 yes 0 no (33333 test cases)

Test #7:

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

input:

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

output:

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

result:

ok OK 33333 yes 0 no (33333 test cases)

Test #8:

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

input:

33333
3
75939333264163319 70286858371473560 140878147161481583
3
279663769504813403 468263081333160675 404772552081894328
3
89355125865512126 7804515715434520 82980318957417638
3
295120670202585395 334743633442856703 53274775335976908
3
166213426772161350 398865696845176129 560570643782577671
3
9560...

output:

2
1 75939333264163319
2 70286858371473560
2
2 468263081333160675
1 279663769504813403
2
1 89355125865512126
2 7804515715434520
2
1 295120670202585395
2 53274775335976908
2
2 398865696845176129
1 166213426772161350
2
2 209231436614970907
1 95605788062019993
2
2 100618185085847630
1 68154332108467375
...

result:

ok OK 33333 yes 0 no (33333 test cases)

Test #9:

score: 0
Accepted
time: 6ms
memory: 3992kb

input:

25000
4
1 1 3 3
4
2 2 1 1
4
3 2 2 3
4
1 3 1 3
3
2 1 3
3
3 2 1
4
3 2 2 3
4
2 3 2 3
3
3 2 1
4
3 3 1 1
3
2 1 3
3
3 1 2
4
3 2 3 2
4
2 2 1 1
4
1 3 1 3
4
2 1 1 2
4
1 3 1 3
3
2 3 1
4
3 3 1 1
4
2 3 2 3
3
3 2 1
4
3 3 1 1
3
2 3 1
3
1 2 3
3
1 2 3
3
3 1 2
4
1 3 1 3
4
3 1 1 3
4
2 2 3 3
3
3 2 1
4
2 2 2 2
3
1 3 2
...

output:

2
3 3
1 1
2
1 2
3 1
-1
2
2 3
1 1
2
1 2
2 1
2
1 3
2 1
-1
-1
2
1 3
2 1
2
1 3
3 1
2
1 2
2 1
2
1 3
2 1
-1
2
1 2
3 1
2
2 3
1 1
2
1 2
2 1
2
2 3
1 1
2
1 2
2 1
2
1 3
3 1
-1
2
1 3
2 1
2
1 3
3 1
2
1 2
2 1
2
2 2
1 1
2
2 2
1 1
2
1 3
2 1
2
2 3
1 1
2
1 3
2 1
-1
2
1 3
2 1
-1
2
2 3
1 1
2
2 3
1 1
-1
2
2 3
1 1
2
2 2
...

result:

ok OK 16671 yes 8329 no (25000 test cases)

Test #10:

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

input:

25000
4
7 3 6 2
4
4 4 6 6
4
7 6 5 4
4
2 5 5 2
4
2 5 4 3
4
4 4 4 4
4
3 1 5 7
4
2 7 4 1
4
3 7 3 7
3
3 5 6
4
3 1 1 3
4
5 7 4 6
4
3 2 5 4
4
6 6 4 4
4
2 1 6 5
4
5 4 6 7
4
2 3 3 2
4
4 3 4 3
4
4 1 7 2
4
2 7 2 7
4
1 7 7 1
4
3 6 3 6
4
6 2 3 7
4
7 4 2 1
4
7 7 4 4
3
6 5 3
4
3 6 3 6
4
7 3 7 3
4
2 6 5 1
4
2 6 7 ...

output:

3
1 7
2 3
3 1
-1
-1
2
2 5
1 2
3
2 5
1 2
3 1
-1
3
3 5
1 3
2 1
3
2 7
1 2
3 1
2
2 7
1 3
2
2 5
1 3
2
1 3
2 1
-1
3
3 5
1 3
2 1
-1
3
3 6
1 2
2 1
-1
-1
2
1 4
2 3
3
1 4
3 3
2 1
2
2 7
1 2
2
2 7
1 1
2
2 6
1 3
3
1 6
2 2
3 1
3
1 7
2 3
3 1
-1
2
1 6
2 3
2
2 6
1 3
2
1 7
2 3
3
2 6
1 2
3 1
3
2 6
1 2
3 1
3
1 4
2 3
3 ...

result:

ok OK 19664 yes 5336 no (25000 test cases)

Test #11:

score: 0
Accepted
time: 12ms
memory: 4180kb

input:

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

output:

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

result:

ok OK 20719 yes 4281 no (25000 test cases)

Test #12:

score: 0
Accepted
time: 12ms
memory: 4188kb

input:

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

output:

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

result:

ok OK 21053 yes 3947 no (25000 test cases)

Test #13:

score: 0
Accepted
time: 12ms
memory: 4180kb

input:

25000
4
42 28 60 10
4
24 36 46 18
4
4 3 32 39
4
52 22 19 49
4
21 37 23 39
4
36 42 21 27
4
33 41 46 38
4
29 33 12 48
4
34 23 25 44
4
19 57 53 31
4
45 6 2 41
4
18 25 36 47
4
48 44 59 39
4
42 10 53 21
4
12 43 26 61
4
23 41 30 32
4
35 62 39 58
4
44 17 53 8
4
32 53 1 20
4
10 23 1 28
4
55 61 54 60
4
57 15...

output:

3
1 42
2 28
3 10
3
2 36
1 24
3 10
3
3 32
1 4
2 3
3
1 52
2 22
3 5
3
2 37
1 21
3 2
3
1 36
3 21
2 14
-1
3
2 33
1 29
3 12
3
1 34
2 23
3 14
3
2 57
1 19
3 12
3
1 45
2 6
3 2
3
3 36
1 18
2 11
-1
3
1 42
3 31
2 10
3
2 43
3 26
1 12
3
2 41
1 23
3 9
-1
3
1 44
2 17
3 8
3
1 32
2 21
3 1
3
2 23
1 10
3 1
-1
3
1 57
2 ...

result:

ok OK 21323 yes 3677 no (25000 test cases)

Test #14:

score: 0
Accepted
time: 7ms
memory: 3872kb

input:

16666
5
2 1 2 3 2
6
3 1 2 1 2 3
6
1 3 1 2 3 2
5
2 3 1 2 2
6
3 3 1 1 3 3
5
2 3 3 1 3
6
3 3 3 3 2 2
6
3 2 3 1 2 1
6
3 2 1 3 2 1
5
3 2 3 3 1
5
1 2 3 2 2
6
2 1 1 1 2 1
6
2 1 1 3 3 2
6
3 1 1 2 2 3
6
3 2 1 1 2 3
6
3 1 1 3 2 2
5
3 1 3 3 2
6
2 1 3 3 2 1
6
1 3 1 3 2 2
6
3 2 2 1 3 1
6
2 2 3 1 3 1
6
3 3 1 3 1 ...

output:

-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
...

result:

ok OK 0 yes 16666 no (16666 test cases)

Test #15:

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

input:

16666
6
1 2 2 3 7 5
6
4 7 2 4 1 4
6
5 7 5 5 1 3
6
6 3 2 6 7 6
6
5 4 4 7 3 1
6
6 3 3 2 7 3
6
3 5 3 6 1 2
6
1 1 3 7 6 2
5
6 4 7 1 4
6
7 5 7 7 1 3
6
3 5 2 4 1 1
6
3 4 5 1 7 4
6
6 1 1 6 6 6
5
2 6 6 5 7
6
4 2 5 2 2 3
5
7 1 2 7 3
6
1 1 1 4 6 3
6
7 1 3 2 2 5
6
7 4 4 3 5 1
6
7 7 3 7 3 7
6
4 4 3 1 3 1
6
3 3 ...

output:

-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
3
1 7
3 2
2 1
-1
-1
-1
-1
3
1 4
3 3
4 1
3
3 4
1 3
4 1
3
2 4
4 2
1 1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
3
2 6
1 2
3 1
-1
3
1 4
4 3
3 1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
3
1 5
2 3
3 1
-1
-1
-...

result:

ok OK 1429 yes 15237 no (16666 test cases)

Test #16:

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

input:

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

output:

-1
4
3 9
1 7
4 2
2 1
-1
-1
-1
-1
3
1 12
3 6
2 1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
4
5 8
1 7
2 3
4 1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
4
2 13
1 7
5 3
3 1
-1
-1
-1
-1
-1
4
4 9
1 4
2 2
3 1
-1
-1
-1
-1
-1
-1
-1
4
2 15
4 5
1 2
5 1
-1
-1
3
3 15
1 4
4 1
-1
-1
-1
-1
-1
-1
4
1 10
2 4
4 ...

result:

ok OK 2953 yes 13713 no (16666 test cases)

Test #17:

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

input:

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

output:

4
2 25
1 8
3 5
4 1
-1
-1
-1
-1
-1
5
1 20
3 9
4 6
5 3
2 1
3
1 25
2 11
3 3
-1
4
1 20
4 15
2 6
3 2
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
5
4 25
2 14
1 6
3 2
5 1
5
2 20
1 9
4 6
5 3
3 1
-1
4
1 29
4 14
2 5
3 2
4
2 31
1 9
3 2
4 1
-1
-1
-1
4
1 26
3 12
2 7
4 1
-1
-1
-1
-1
4
1 31
2 11
4 5
3 3
4
1 27
4 12
2 7
3 1
-1
-...

result:

ok OK 3830 yes 12836 no (16666 test cases)

Test #18:

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

input:

16666
6
35 62 40 27 42 4
6
29 48 11 31 55 14
6
24 32 9 29 15 35
6
7 15 2 55 22 43
6
25 19 49 25 40 10
6
37 57 12 55 25 62
6
17 38 61 23 61 32
6
4 56 14 3 1 48
6
15 43 41 11 28 26
6
24 3 13 24 56 54
6
62 38 32 27 50 17
6
24 25 32 19 21 39
6
8 18 37 42 41 60
6
59 46 16 61 1 57
6
8 25 38 18 39 2
6
13 5...

output:

-1
5
2 48
1 29
3 11
5 7
4 2
5
2 32
1 24
3 9
4 5
5 3
5
4 55
5 22
2 15
1 7
3 2
-1
-1
-1
5
2 56
3 14
1 4
4 3
5 1
5
2 43
5 28
1 15
4 4
3 2
4
5 56
1 24
3 13
2 3
-1
-1
-1
-1
5
3 38
2 25
1 8
4 3
5 1
-1
-1
-1
4
1 55
3 26
2 8
4 4
-1
-1
-1
-1
-1
-1
4
2 49
3 31
1 15
5 6
-1
-1
-1
-1
5
1 53
2 24
5 9
4 5
3 3
-1
-...

result:

ok OK 4254 yes 12412 no (16666 test cases)

Test #19:

score: 0
Accepted
time: 3ms
memory: 4048kb

input:

5000
10
2 1 1 2 1 1 1 2 2 1
10
2 1 2 1 3 2 2 1 3 1
9
3 2 2 1 1 2 1 3 3
10
1 3 1 2 3 2 3 2 2 3
10
2 1 2 1 2 2 1 3 3 1
10
1 3 1 1 3 2 2 3 1 3
10
2 2 2 1 3 2 2 1 2 3
10
2 1 2 1 3 2 1 3 1 2
10
3 3 2 2 1 2 3 3 2 1
10
2 3 3 2 1 3 3 3 3 1
10
1 2 3 2 2 2 1 1 3 1
10
1 1 3 3 2 2 2 2 1 1
9
2 1 1 3 1 1 2 1 2
10...

output:

-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
...

result:

ok OK 0 yes 5000 no (5000 test cases)

Test #20:

score: 0
Accepted
time: 3ms
memory: 4016kb

input:

5000
10
4 5 1 7 6 4 6 7 3 7
9
3 5 2 5 3 2 2 4 6
10
7 3 2 1 7 4 7 5 5 3
10
4 5 2 2 6 6 5 2 4 2
10
3 1 6 5 6 1 4 4 1 7
10
6 3 5 1 7 7 3 5 1 6
10
3 3 4 3 2 5 3 5 7 1
10
7 6 3 6 6 1 1 6 7 3
10
7 6 6 6 5 2 7 6 1 6
10
3 4 1 2 6 2 5 2 4 3
10
2 5 4 1 7 4 2 1 6 4
10
7 2 4 7 2 4 3 7 1 5
10
5 6 5 4 7 6 1 7 1 4...

output:

-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
...

result:

ok OK 0 yes 5000 no (5000 test cases)

Test #21:

score: 0
Accepted
time: 3ms
memory: 3780kb

input:

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

output:

-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
...

result:

ok OK 0 yes 5000 no (5000 test cases)

Test #22:

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

input:

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

output:

-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
...

result:

ok OK 0 yes 5000 no (5000 test cases)

Test #23:

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

input:

5000
10
14 48 46 52 6 19 52 54 44 31
10
29 40 35 25 52 33 1 40 34 17
10
56 5 10 62 43 59 20 46 26 57
10
63 3 23 57 57 25 61 12 23 20
10
61 34 1 3 56 48 24 37 12 36
10
15 54 16 12 44 56 25 8 3 35
10
62 41 17 21 37 18 38 54 26 46
10
14 47 24 2 33 15 59 13 1 34
10
45 26 48 23 48 63 62 27 38 28
10
59 29...

output:

-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
6
4 59
1 18
3 12
2 4
7 3
9 1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-...

result:

ok OK 1 yes 4999 no (5000 test cases)

Test #24:

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

input:

10
10000
175704362441567541 454930427373295274 74006143547830702 316571758705018676 18997844453162502 161696565801287944 38879264355062706 403545429623058253 94462665875154932 478451431870559855 160261994490358876 181441471320431173 183996839157390225 6656750474633845 101765460803145297 236718490794...

output:

-1
-1
-1
-1
-1
-1
-1
-1
-1
-1

result:

ok OK 0 yes 10 no (10 test cases)

Test #25:

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

input:

5
20000
444941215023657150 419380657776886841 12701988388329641 250604763193157455 290987073902964532 300242953430372419 82302349883732849 104628969041967335 409976149672530756 398501954237984622 188221172679629455 495511722849522735 90684016601755791 318749132381712297 41385947416020869 27013632536...

output:

-1
-1
-1
-1
-1

result:

ok OK 0 yes 5 no (5 test cases)

Test #26:

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

input:

1
100000
75384313052908081 267090063569927368 116940979404264334 404806454505932492 420120429972815036 461570396420575381 361144580744729657 166347850113930395 441256150902720848 440972929460687352 172493830218713174 235961757900934222 229744463194085167 167582725249017320 325129398471669271 2965716...

output:

-1

result:

ok OK 0 yes 1 no (1 test case)

Test #27:

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

input:

3708
36
262144 33554432 9147936743096576 549755815936 281481419194369 2199291699200 1125899906842884 2 35184372088832 274877906944 18023194602504192 4398113619968 4419789783184 137438955584 67108864 35184380510208 17179869184 70368744177664 140737490518528 2199023255584 9007199254742016 34079232 175...

output:

34
11 18023194602504192
3 9147936743096576
7 1125899906842884
26 562949953425408
5 281481419194369
19 140737490518528
18 70368744177664
9 35184372088832
23 17594333528064
31 8796095119620
12 4398113619968
6 2199291699200
4 549755815936
10 274877906944
14 137438955584
13 21810380944
17 4630511760
33 ...

result:

ok OK 3708 yes 0 no (3708 test cases)

Test #28:

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

input:

3723
15
8200 17179869184 33554432 536870912 16 34359738368 8589934592 8796126584832 72057594037927936 72629342231855104 34359771136 2147483656 536870960 17179901984 562958543355904
37
17179869184 1073741824 18014398509514752 17246978048 9288674768355584 6597069766656 13545983388418048 2113572 175921...

output:

13
9 72057594037927936
10 571748193927168
8 8796126584832
6 34359738368
2 17179869184
7 8589934592
12 2147483656
4 536870912
3 33554432
11 32768
1 8200
13 48
5 16
35
31 288230376153825280
14 144115188629506080
23 36028797018963968
3 18014398509514752
5 9288674768355584
7 4820259647291648
27 11258999...

result:

ok OK 3206 yes 517 no (3723 test cases)

Test #29:

score: 0
Accepted
time: 13ms
memory: 4236kb

input:

3150
16
2252074691594240 18014398511579136 140737488355328 140737488355840 270532608 36028797018964032 72057594037927936 128352589380059136 268435456 35184372088832 9007199254740992 35218731827200 274877906944 2048 34359738432 9007199254741504
51
9024791442882560 35184372088832 17179869184 281584927...

output:

14
7 72057594037927936
6 36028797018964032
2 18014398511579136
11 9007199254740992
1 2252074691594240
3 140737488355328
10 35184372088832
8 274880006208
12 34359738368
5 270532608
9 2097152
13 2112
4 512
14 64
45
8 288230376151713792
11 147492887796383744
24 72057602627862528
13 36028797018963971
5 ...

result:

ok OK 2560 yes 590 no (3150 test cases)

Test #30:

score: 0
Accepted
time: 7ms
memory: 3772kb

input:

2807
28
4096 288511857570877440 2147549184 2147483648 2147487744 16384 70643622154240 142938659094528 288371115787554816 2147485696 2149580800 16384 281545843675136 4294971392 32768 2147618820 262144 275146346496 2147487744 5566277648384 2147487760 70371162193924 2201171001344 6144 4096 110165924659...

output:

-1
17
4 144255925564211200
12 72339069014638592
7 9007199254740992
2 4503599627370560
21 2533291970265088
1 562949953421312
17 281475043819520
9 140737488355344
3 2267742732288
11 17179870208
8 1073741904
19 71303168
10 4194304
13 1024
5 512
18 64
16 16
-1
-1
-1
-1
-1
-1
-1
-1
-1
48
23 2882305135906...

result:

ok OK 482 yes 2325 no (2807 test cases)

Test #31:

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

input:

2520
42
216315718625394688 274877906960 1099511627776 281474976727056 83886080 18691697672192 549755813888 2251799813685248 262144 144115188075857984 8192 288247968337756418 567348134150152 149602300854272 1074790400 4194304 32 134742144 2097156 36028797018964224 19144713642704896 549764202496 28823...

output:

37
12 288247968337756418
1 216315718625394688
10 72200530549540928
20 36028797018964224
21 19144713642704896
33 9007199254773760
27 5629499534213120
8 2251799813685248
30 1139111226245184
13 567348134150152
4 281474976727056
14 149602300854272
6 18691697672192
40 13211394900288
39 4466900205576
3 10...

result:

ok OK 2520 yes 0 no (2520 test cases)

Test #32:

score: 0
Accepted
time: 16ms
memory: 3888kb

input:

7033
15
562949953421312 1099511627808 549755813888 9007199305072640 9007216434610176 1073741824 549755813888 1125900980588576 33570816 633318697598976 70377334112512 25770070016 1125899923636480 262144 1099511627776
21
266304 4503599627370496 2048 9007199288295680 34359738368 35184372088832 34368126...

output:

13
4 9007199305072640
8 1125900980588576
1 562949953421312
10 70368744177664
2 1099511627808
3 549755813888
5 17230200832
11 8589934848
6 1073741824
9 33570816
12 17060096
13 262176
14 32
17
8 288230376151711745
4 9007199288295680
2 4503599627370496
12 2251799814995968
6 35184372088832
9 18141941858...

result:

ok OK 7033 yes 0 no (7033 test cases)

Test #33:

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

input:

1
2
1000000000000000000 1000000000000000000

output:

1
1 1000000000000000000

result:

ok OK 1 yes 0 no (1 test case)

Extra Test:

score: 0
Extra Test Passed