QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#516650#9176. Non-Interactive Nimrogi52AC ✓149ms16020kbC++1711.9kb2024-08-12 20:05:072024-08-12 20:05:08

Judging History

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

  • [2024-08-12 20:05:08]
  • 评测
  • 测评结果:AC
  • 用时:149ms
  • 内存:16020kb
  • [2024-08-12 20:05:07]
  • 提交

answer

#line 2 "cp-library/src/cp-template.hpp"
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
using ld = long double;
using uint = unsigned int;
using ull  = unsigned long long;
using i32 = int;
using u32 = unsigned int;
using i64 = long long;
using u64 = unsigned long long;
using i128 = __int128_t;
template < class T > bool chmin(T& a, T b) { if(a > b) { a = b; return true; } return false; }
template < class T > bool chmax(T& a, T b) { if(a < b) { a = b; return true; } return false; }
template < class T, class U > T ceil (T x, U y) { return (x > 0 ? (x + y - 1) / y :           x / y); }
template < class T, class U > T floor(T x, U y) { return (x > 0 ?           x / y : (x - y + 1) / y); }
int popcnt(i32 x) { return __builtin_popcount(x); }
int popcnt(u32 x) { return __builtin_popcount(x); }
int popcnt(i64 x) { return __builtin_popcountll(x); }
int popcnt(u64 x) { return __builtin_popcountll(x); }

#line 2 "cp-library/src/utility/rep_itr.hpp"
template < class T > struct itr_rep {
    T i, d;
    constexpr itr_rep(const T i) noexcept : i(i), d(1) {}
    constexpr itr_rep(const T i, const T d) noexcept : i(i), d(d) {}
    void operator++() noexcept { i += d; }
    constexpr int operator*() const noexcept { return i; }
    constexpr bool operator!=(const itr_rep x) const noexcept { return d > 0 ? i < x.i : i > x.i; }
};

template < class T > struct rep {
    const itr_rep< T > s, t;
    constexpr rep(const T t) noexcept : s(0), t(t) {}
    constexpr rep(const T s, const T t) noexcept : s(s), t(t) {}
    constexpr rep(const T s, const T t, const T d) noexcept : s(s, d), t(t, d) {}
    constexpr auto begin() const noexcept { return s; }
    constexpr auto end  () const noexcept { return t; }
};

template < class T > struct revrep {
    const itr_rep < T > s, t;
    constexpr revrep(const T t) noexcept : s(t - 1, -1), t(-1, -1) {}
    constexpr revrep(const T s, const T t) noexcept : s(t - 1, -1), t(s - 1, -1) {}
    constexpr revrep(const T s, const T t, const T d) noexcept : s(t - 1, -d), t(s - 1, -d) {}
    constexpr auto begin() const noexcept { return s; }
    constexpr auto end  () const noexcept { return t; }
};
#line 3 "cp-library/src/utility/io.hpp"

/* 128bit integer */
istream& operator>>(istream& is, i128& x) {
    std::string s; is >> s;
    int pm = (s[0] == '-');
    x = 0;
    for(int i : rep(pm, int(s.size()))) x = x * 10 + (s[i] - '0');
    if(pm) x *= -1;
    return is;
}
ostream& operator<<(ostream& os, const i128& x) {
    if(x == 0) return os << '0';
    i128 y = x;
    if(y < 0) { os << '-'; y *= -1; }
    std::vector<int> ny;
    while(y > 0) { ny.push_back(y % 10); y /= 10; }
    for(int i : revrep(ny.size())) os << ny[i];
    return os;
}

template < class S, class T > istream& operator>>(istream& is,       std::pair< S, T >& x) { is >> x.first        >> x.second; return is; }
template < class S, class T > ostream& operator<<(ostream& os, const std::pair< S, T >& x) { os << x.first << " " << x.second; return os; }

namespace scanner {
    struct sca {
        template < class T > operator T() {
            T s; std::cin >> s; return s;
        }
    };
    struct vec {
        int n;
        vec(int n) : n(n) {}
        template < class T > operator std::vector< T >() {
            std::vector< T > v(n);
            for(T& x : v) std::cin >> x;
            return v;
        }
    };
    struct mat {
        int h, w;
        mat(int h, int w) : h(h), w(w) {}
        template < class T > operator std::vector< std::vector< T > >() {
            std::vector m(h, std::vector< T >(w));
            for(std::vector< T >& v : m) for(T& x : v) std::cin >> x;
            return m;
        }
    };
    struct speedup {
        speedup() {
            std::cin.tie(0);
            std::ios::sync_with_stdio(0);
        }
    } speedup_instance;
}
scanner::sca in() { return scanner::sca(); }
scanner::vec in(int n) { return scanner::vec(n); }
scanner::mat in(int h, int w) { return scanner::mat(h, w); }

namespace printer {
    void precision(int d) { std::cout << std::fixed << std::setprecision(d); }
    void flush() { std::cout.flush(); }
}

template < class T >
ostream& operator<<(ostream& os, const std::vector< T > a) {
    int n = a.size();
    for(int i : rep(n)) { os << a[i]; if(i != n - 1) os << ' '; }
    return os;
}

int print() { std::cout << '\n'; return 0; }
template < class head, class... tail > int print(head&& h, tail&&... t) {
    std::cout << h; if(sizeof...(tail)) std::cout << ' ';
    return print(std::forward<tail>(t)...);
}
template < class T > int print_n(const std::vector< T > a) {
    int n = a.size();
    for(int i : rep(n)) std::cout << a[i] << "\n";
    return 0;
}


#line 2 "cp-library/src/utility/key_val.hpp"

template < class K, class V >
struct key_val {
    K key; V val;
    key_val() {}
    key_val(K key, V val) : key(key), val(val) {}
    template < std::size_t Index >
    std::tuple_element_t< Index, key_val >& get() {
        if constexpr (Index == 0) return key;
        if constexpr (Index == 1) return val;
    }
};

namespace std {

template < class K, class V > struct tuple_size < key_val< K, V > > : integral_constant< size_t, 2 > {};
template < class K, class V > struct tuple_element < 0, key_val< K, V > > { using type = K; };
template < class K, class V > struct tuple_element < 1, key_val< K, V > > { using type = V; };

}
#line 2 "cp-library/src/utility/vec_op.hpp"
template < class T > key_val< int, T > max_of(const vector< T >& a) {
    int i = std::max_element(a.begin(), a.end()) - a.begin();
    return {i, a[i]};
}
template < class T > key_val< int, T > min_of(const vector< T >& a) {
    int i = std::min_element(a.begin(), a.end()) - a.begin();
    return {i, a[i]};
}
template < class S, class T > S sum_of(const vector< T >& a) {
    S sum = 0;
    for(const T x : a) sum += x;
    return sum;
}
template < class S, class T > vector< S > freq_of(const vector< T >& a, T L, T R) {
    vector< S > res(R - L, S(0));
    for(const T x : a) res[x - L] += 1;
    return res;
}
template < class S, class T > struct prefix_sum {
    vector< S > s;
    prefix_sum(const vector< T >& a) : s(a) {
        s.insert(s.begin(), S(0));
        for(int i : rep(a.size())) s[i + 1] += s[i];
    }
    // [L, R)
    S sum(int L, int R) { return s[R] - s[L]; }
};
#line 3 "cp-library/src/utility/heap.hpp"

template < class T > using heap_min = std::priority_queue< T, std::vector< T >, std::greater< T > >;
template < class T > using heap_max = std::priority_queue< T, std::vector< T >, std::less< T > >;

#line 27 "cp-library/src/cp-template.hpp"

#line 1 "cp-library/src/algorithm/bin_search.hpp"
template < class T, class F >
T bin_search(T ok, T ng, F f) {
    while(abs(ng - ok) > 1) {
        T mid = (ok + ng) / 2;
        (f(mid) ? ok : ng) = mid;
    }
    return ok;
}

template < class T, class F >
T bin_search_real(T ok, T ng, F f, int step = 80) {
    while(step--) {
        T mid = (ok + ng) / 2;
        (f(mid) ? ok : ng) = mid;
    }
    return ok;
}
#line 2 "cp-library/src/algorithm/argsort.hpp"

template < class T > std::vector< int > argsort(const std::vector< T > &a) {
    std::vector< int > ids((int)a.size());
    std::iota(ids.begin(), ids.end(), 0);
    std::sort(ids.begin(), ids.end(), [&](int i, int j) {
        return a[i] < a[j] || (a[i] == a[j] && i < j);
    });
    return ids;
}
#line 1 "macro.hpp"
namespace macro {

using size_type = int;
template < class container > void  sort(container& a) { std::sort(std:: begin(a), std:: end(a)); }
template < class container > void rsort(container& a) { std::sort(std::rbegin(a), std::rend(a)); }
template < class container > void reverse(container& a) { std::reverse(std::begin(a), std::end(a)); }
template < class container > void unique(container& a) {
    std::sort(std::begin(a), std::end(a));
    a.erase(std::unique(std::begin(a), std::end(a)), std::end(a));
}
template < class container > container  sorted(const container& a) { container b = a;  sort(b); return std::move(b); }
template < class container > container rsorted(const container& a) { container b = a; rsort(b); return std::move(b); }
template < class container, class compare > void sort(container& a, const compare& cmp) { std::sort(std::begin(a), std::end(a), cmp); }
template < class container, class compare > container sorted(const container& a, const compare& cmp) { container b = a; sort(b, cmp); return std::move(b); }
template < class container, class value > size_type lower_bound(const container& a, const value& x) { return std::lower_bound(std::begin(a), std::end(a), x) - std::begin(a); }
template < class container, class value > size_type upper_bound(const container& a, const value& x) { return std::upper_bound(std::begin(a), std::end(a), x) - std::begin(a); }

const std::vector<std::pair<size_type, size_type>> dir4 = { {+1,  0}, {-1,  0}, { 0, +1}, { 0, -1} };
const std::vector<std::pair<size_type, size_type>> dir8 = { {-1, -1}, {-1,  0}, {-1, +1}, { 0, -1}, { 0, +1}, {+1, -1}, {+1,  0}, {+1, +1} };

#ifdef _DEBUG
#define debug(x) std::cout << "[" << __LINE__ << "] " << #x << ": " << x << std::endl
#else
#define debug(x)
#endif

template < class container > void concat(container& a, const container& b) {
    a.insert(std::end(a), std::begin(b), std::end(b));
}
std::vector<size_type> iota(const size_type n) {
    std::vector<size_type> I(n);
    std::iota(std::begin(I), std::end(I), 0);
    return I;
}
template < class container > std::vector<size_type> sort_idx(const container& a) {
    const size_type n = a.size();
    std::vector<size_type> I = iota(n);
    std::sort(std::begin(I), std::end(I), [&](size_type i, size_type j) { return a[i] < a[j] or (a[i] == a[j] and i < j); });
    return I;
}
template < class container, class compare > std::vector<size_type> sort_idx(const container& a, const compare& cmp) {
    const size_type n = a.size();
    std::vector<size_type> I = iota(n);
    std::sort(std::begin(I), std::end(I), [&](size_type i, size_type j) { return cmp(a[i], a[j]) or (a[i] == a[j] and i < j); });
    return std::move(I);
}

struct grid {
    using size_type = int;
    size_type H, W;
    grid(const size_type H, const size_type W) : H(H), W(W) {}
    bool contains(const size_type i, const size_type j) {
        return 0 <= i and i < H and 0 <= j and j < W;
    }
};

using f64 = long double;

template < class T > vector< T >& operator++(vector< T >& a) { for(T& x : a) x++; return a; }
template < class T > vector< T >& operator--(vector< T >& a) { for(T& x : a) x--; return a; }
template < class T > vector< T >  operator++(vector< T >& a, signed) { vector< T > res = a; for(T& x : a) x++; return res; }
template < class T > vector< T >  operator--(vector< T >& a, signed) { vector< T > res = a; for(T& x : a) x--; return res; }

} // namespace macro

using namespace macro;
#line 3 "A.cpp"

int main() {
    int t = in();
    for(int t_ : rep(t)) {
        int n = in();
        vector<i64> a = in(n);
        vector<vector<int>> idx(60);
        for(int k : rep(60)) {
            for(int i : rep(n)) {
                if(a[i] & (1LL << k)) {
                    idx[k].push_back(i);
                }
            }
        }

        bool ok = true;
        vector<pair<int, i64>> ans;
        for(int k : revrep(60)) {
            vector<int> idx;
            for(int i : rep(n)) if(a[i] & (1LL << k)) idx.push_back(i);
            if(idx.size() == 0) continue;
            if(idx.size() >= 4) { ok = false; break; }
            assert(idx.size() == 2);
            ans.push_back({idx[0], a[idx[0]]});
            a[idx[1]] -= a[idx[1]] - (a[idx[1]] ^ a[idx[0]]);
            a[idx[0]] = 0;
        }
        if(ok) {
            print(ans.size());
            for(auto [p, x] : ans) print(p + 1, x);
        } else {
            print(-1);
        }
    }
}

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

Details

Tip: Click on the bar to expand more detailed information

Test #1:

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

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: 38ms
memory: 3520kb

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: 149ms
memory: 3560kb

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: 31ms
memory: 3548kb

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: 35ms
memory: 3756kb

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: 35ms
memory: 3612kb

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: 44ms
memory: 3608kb

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: 147ms
memory: 3436kb

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: 32ms
memory: 3560kb

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: 32ms
memory: 3620kb

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: 35ms
memory: 3540kb

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: 36ms
memory: 3764kb

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: 37ms
memory: 3764kb

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: 19ms
memory: 3604kb

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: 22ms
memory: 3540kb

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: 25ms
memory: 3492kb

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: 27ms
memory: 3536kb

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: 29ms
memory: 3604kb

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: 8ms
memory: 3624kb

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: 8ms
memory: 3584kb

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: 9ms
memory: 3844kb

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: 10ms
memory: 3852kb

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: 11ms
memory: 3628kb

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: 38ms
memory: 4788kb

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: 41ms
memory: 6052kb

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: 34ms
memory: 16020kb

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: 39ms
memory: 3840kb

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: 38ms
memory: 3572kb

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: 38ms
memory: 3568kb

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: 31ms
memory: 3616kb

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: 42ms
memory: 3848kb

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: 42ms
memory: 3556kb

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: 3752kb

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