QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#754433 | #9556. The Hanged Man | ucup-team055# | AC ✓ | 136ms | 93128kb | C++23 | 8.7kb | 2024-11-16 15:01:48 | 2024-11-16 15:01:49 |
Judging History
answer
#include <bits/stdc++.h>
namespace{
using namespace std;
using ll = long long;
using ld = long double;
using ull = unsigned long long;
using uint = unsigned;
using pii = pair<int, int>;
using pll = pair<ll, ll>;
using pdd = pair<ld, ld>;
using tuplis = array<ll, 3>;
template<class T> using pq = priority_queue<T, vector<T>, greater<T>>;
const ll LINF=0x1fffffffffffffff;
const ll MINF=0x7fffffffffff;
const int INF=0x3fffffff;
const int MOD=1000000007;
const int MODD=998244353;
const ld DINF=INFINITY;
const ld EPS=1e-9;
const ld PI=3.14159265358979323846;
const ll dx[] = {0, 1, 0, -1, 1, -1, 1, -1};
const ll dy[] = {1, 0, -1, 0, 1, 1, -1, -1};
#define overload5(a,b,c,d,e,name,...) name
#define overload4(a,b,c,d,name,...) name
#define overload3(a,b,c,name,...) name
#define rep1(n) rep2(_,n)
#define rep2(i,n) for(ll i=0;i<n;++i)
#define rep3(i,a,b) for(ll i=a;i<b;++i)
#define rep4(i,a,b,c) for(ll i=a;i<b;i+=c)
#define rep(...) overload4(__VA_ARGS__,rep4,rep3,rep2,rep1)(__VA_ARGS__)
#define rrep1(n) for(ll i=n;i--;)
#define rrep2(i,n) for(ll i=n;i--;)
#define rrep3(i,a,b) for(ll i=b;i-->(a);)
#define rrep4(i,a,b,c) for(ll i=(a)+((b)-(a)-1)/(c)*(c);i>=(a);i-=c)
#define rrep(...) overload4(__VA_ARGS__,rrep4,rrep3,rrep2,rrep1)(__VA_ARGS__)
#define each1(i,a) for(auto&&i:a)
#define each2(x,y,a) for(auto&&[x,y]:a)
#define each3(x,y,z,a) for(auto&&[x,y,z]:a)
#define each4(w,x,y,z,a) for(auto&&[w,x,y,z]:a)
#define each(...) overload5(__VA_ARGS__,each4,each3,each2,each1)(__VA_ARGS__)
#define all1(i) begin(i),end(i)
#define all2(i,a) begin(i),begin(i)+a
#define all3(i,a,b) begin(i)+a,begin(i)+b
#define all(...) overload3(__VA_ARGS__,all3,all2,all1)(__VA_ARGS__)
#define rall1(i) rbegin(i),rend(i)
#define rall2(i,a) rbegin(i),rbegin(i)+a
#define rall3(i,a,b) rbegin(i)+a,rbegin(i)+b
#define rall(...) overload3(__VA_ARGS__,rall3,rall2,rall1)(__VA_ARGS__)
#define sum(...) accumulate(all(__VA_ARGS__),0LL)
#define dsum(...) accumulate(all(__VA_ARGS__),0.0L)
#define Msum(...) accumulate(all(__VA_ARGS__),mint{})
#define elif else if
#define INT(...) int __VA_ARGS__;in(__VA_ARGS__)
#define LL(...) ll __VA_ARGS__;in(__VA_ARGS__)
#define ULL(...) ull __VA_ARGS__;in(__VA_ARGS__)
#define STR(...) string __VA_ARGS__;in(__VA_ARGS__)
#define CHR(...) char __VA_ARGS__;in(__VA_ARGS__)
#define DBL(...) double __VA_ARGS__;in(__VA_ARGS__)
#define LD(...) ld __VA_ARGS__;in(__VA_ARGS__)
#define vec(type,name,...) vector<type>name(__VA_ARGS__)
#define VEC(type,name,size) vector<type>name(size);in(name)
#define vv(type,name,h,...) vector name(h,vector<type>(__VA_ARGS__))
#define VV(type,name,h,w) vector name(h,vector<type>(w));in(name)
#define vvv(type,name,h,w,...) vector name(h,vector(w,vector<type>(__VA_ARGS__)))
template<class T> ll sz(const T& a){ return size(a); }
template<class T> auto min(const T& a){ return *min_element(all(a)); }
template<class T> auto max(const T& a){ return *max_element(all(a)); }
template<class T, class U> ll count(const T& a, const U& b){ return count(all(a), b); }
template<class T, class F> ll count_if(const T& a, F b){ return count_if(all(a), b); }
template<class T, class F> void filter(T& a, F b){ a.erase(remove_if(all(a), not_fn(b)), a.end()); }
template<class T, class F = less<>> void sor(T& a, F b = F{}){ sort(all(a), b); }
template<class T> void rev(T& a){ reverse(all(a)); }
template<class T> void uniq(T& a){ sor(a); a.erase(unique(all(a)), end(a)); }
ll popcnt(ull a){ return __builtin_popcountll(a); }
ll intpow(ll a, ll b){ ll ans = 1; while(b){ if(b & 1) ans *= a; a *= a; b /= 2; } return ans; }
ll modpow(ll a, ll b, ll p){ ll ans = 1; while(b){ if(b & 1) (ans *= a) %= p; (a *= a) %= p; b /= 2; } return ans; }
template<class T> T div_floor(T a, T b) { return a / b - ((a ^ b) < 0 && a % b); }
template<class T> T div_ceil(T a, T b) { return a / b + ((a ^ b) > 0 && a % b); }
template<class T> bool chmin(T& a, const T& b){ return a > b ? a = b, 1 : 0; }
template<class T> bool chmax(T& a, const T& b){ return a < b ? a = b, 1 : 0; }
template<class T, class U> bool chmin(T& a, const U& b){ return a > b ? a = b, 1 : 0; }
template<class T, class U> bool chmax(T& a, const U& b){ return a < b ? a = b, 1 : 0; }
vector<ll> iota(ll n, ll begin = 0){ vector<ll> a(n); iota(a.begin(), a.end(), begin); return a; }
vector<pll> factor(ull x){ vector<pll> ans; for(ull i = 2; i * i <= x; i++) if(x % i == 0){ ans.push_back({i, 1}); while((x /= i) % i == 0) ans.back().second++; } if(x != 1) ans.push_back({x, 1}); return ans; }
vector<ll> divisor(ull x){ vector<ll> ans; for(ull i = 1; i * i <= x; i++) if(x % i == 0) ans.push_back(i); rrep(ans.size() - (ans.back() * ans.back() == x)) ans.push_back(x / ans[i]); return ans; }
template<class T> unordered_map<T, ll> press(vector<T> a){ uniq(a); unordered_map<T, ll> ans; rep(i, a.size()) ans[a[i]] = i; return ans; }
template<class T> auto run_press(const T& a){ vector<pair<decay_t<decltype(a[0])>, ll>> ans; each(x, a){ if(ans.empty() || ans.back().first != x) ans.emplace_back(x, 1); else ans.back().second++; } return ans; }
template<class... Ts> void in(Ts&... t);
[[maybe_unused]] void print(){}
template<class T, class... Ts> void print(const T& t, const Ts&... ts);
template<class... Ts> void out(const Ts&... ts){ print(ts...); cout << '\n'; }
namespace IO{
#define VOID(a) decltype(void(a))
struct S{ S(){ cin.tie(nullptr)->sync_with_stdio(0); fixed(cout).precision(12); } }S;
template<int I> struct P : P<I-1>{};
template<> struct P<0>{};
template<class T> void i(T& t){ i(t, P<3>{}); }
void i(vector<bool>::reference t, P<3>){ int a; i(a); t = a; }
template<class T> auto i(T& t, P<2>) -> VOID(cin >> t){ cin >> t; }
template<class T> auto i(T& t, P<1>) -> VOID(begin(t)){ for(auto&& x : t) i(x); }
template<class T, size_t... idx> void ituple(T& t, index_sequence<idx...>){ in(get<idx>(t)...); }
template<class T> auto i(T& t, P<0>) -> VOID(tuple_size<T>{}){ ituple(t, make_index_sequence<tuple_size<T>::value>{}); }
template<class T> void o(const T& t){ o(t, P<4>{}); }
template<size_t N> void o(const char (&t)[N], P<4>){ cout << t; }
template<class T, size_t N> void o(const T (&t)[N], P<3>){ o(t[0]); for(size_t i = 1; i < N; i++){ o(' '); o(t[i]); } }
template<class T> auto o(const T& t, P<2>) -> VOID(cout << t){ cout << t; }
template<class T> auto o(const T& t, P<1>) -> VOID(begin(t)){ bool first = 1; for(auto&& x : t) { if(first) first = 0; else o(' '); o(x); } }
template<class T, size_t... idx> void otuple(const T& t, index_sequence<idx...>){ print(get<idx>(t)...); }
template<class T> auto o(T& t, P<0>) -> VOID(tuple_size<T>{}){ otuple(t, make_index_sequence<tuple_size<T>::value>{}); }
#undef VOID
}
#define unpack(a) (void)(0 + ... + (a, 0))
template<class... Ts> void in(Ts&... t){ unpack(IO::i(t)); }
template<class T, class... Ts> void print(const T& t, const Ts&... ts){ IO::o(t); unpack(IO::o((cout << ' ', ts))); }
#undef unpack
#ifdef DEBUG
ll __lg(ull x){ return 63 - __builtin_clzll(x); }
#define debug(...) { print(#__VA_ARGS__); print(":"); out(__VA_ARGS__); }
#else
#define debug(...) void(0)
#endif
#define YESNO(yes,no) void yes(bool i = 1){ out(i?#yes:#no); } void no(){ out(#no); }
YESNO(first, second)
YESNO(First, Second)
YESNO(Yes, No)
YESNO(YES, NO)
YESNO(possible, impossible)
YESNO(Possible, Impossible)
YESNO(POSSIBLE, IMPOSSIBLE)
void solve(){
LL(n);
vector g(n,vector<ll>{});
rep(n-1){
LL(a,b);
a--; b--;
g[a].push_back(b);
g[b].push_back(a);
}
bool fail=0;
vector<pll>ans;
auto dfs=[&](auto dfs,ll i)->ll{
vector<ll>c,d;
auto&v=g[i];
ranges::sort(v);
each(j,v){
erase(g[j],i);
const ll x=dfs(dfs,j);
(ranges::binary_search(v,x)?c:d).push_back(x);
}
if(i==0){
if(sz(c)%2&&d.empty())return fail=1;
if((sz(c)+sz(d))%2){
ans.emplace_back(d.back(),i);
d.pop_back();
}
each(x,d)c.push_back(x);
assert(sz(c)%2==0);
rep(i,0,sz(c),2)ans.emplace_back(c[i],c[i+1]);
return 0;
}
if((sz(c)+sz(d))%2==0){
if(d.empty()){
rep(i,0,sz(c),2)ans.emplace_back(c[i],c[i+1]);
return i;
}
else{
ans.emplace_back(i,d.back());
d.pop_back();
}
}
each(x,d)c.push_back(x);
assert(sz(c)%2==1);
rep(i,0,sz(c)-1,2)ans.emplace_back(c[i],c[i+1]);
return c.back();
};
dfs(dfs,0);
if(fail)out(-1);
else{
out(sz(ans));
each(x,y,ans)out(x+1,y+1);
}
}
}
int main(){
ll t = 1;
in(t);
rep(i,t){
solve();
}
}
这程序好像有点Bug,我给组数据试试?
详细
Test #1:
score: 100
Accepted
time: 0ms
memory: 3624kb
input:
3 4 1 2 2 3 2 4 7 1 2 1 3 1 4 4 5 4 6 4 7 6 1 2 2 3 2 4 1 5 5 6
output:
-1 3 5 6 7 1 2 3 2 3 4 2 6
result:
ok Good Job! (3 test cases)
Test #2:
score: 0
Accepted
time: 0ms
memory: 3656kb
input:
3 6 1 2 1 3 1 4 4 5 4 6 2 1 2 2 2 1
output:
-1 -1 -1
result:
ok Good Job! (3 test cases)
Test #3:
score: 0
Accepted
time: 43ms
memory: 3888kb
input:
100000 3 1 3 2 1 3 2 3 1 2 3 2 3 1 3 3 2 1 1 3 3 1 2 2 3 3 1 3 2 3 3 2 1 1 3 3 2 3 1 2 3 2 3 1 3 3 2 1 1 3 3 2 3 1 2 3 1 3 2 3 3 1 3 2 1 3 2 3 1 2 3 2 3 1 3 3 1 3 2 1 3 1 2 2 3 3 1 3 2 3 3 2 1 1 3 3 1 2 2 3 3 1 3 2 3 3 1 3 2 1 3 2 3 1 2 3 1 3 2 3 3 1 3 2 1 3 2 3 1 2 3 1 3 2 3 3 2 1 1 3 3 2 3 1 2 3 2...
output:
1 2 3 1 3 1 1 2 1 1 2 3 1 3 1 1 2 1 1 2 3 1 3 1 1 2 1 1 2 3 1 3 1 1 2 1 1 2 3 1 3 1 1 2 1 1 2 3 1 3 1 1 2 1 1 2 3 1 3 1 1 2 1 1 2 3 1 3 1 1 2 1 1 2 3 1 3 1 1 2 1 1 2 3 1 3 1 1 2 1 1 2 3 1 3 1 1 2 1 1 2 3 1 3 1 1 2 1 1 2 3 1 3 1 1 2 1 1 2 3 1 3 1 1 2 1 1 2 3 1 3 1 1 2 1 1 2 3 1 3 1 1 2 1 1 2 3 1 3 1 ...
result:
ok Good Job! (100000 test cases)
Test #4:
score: 0
Accepted
time: 43ms
memory: 3664kb
input:
75000 4 3 1 2 1 1 4 4 3 1 2 4 1 2 4 2 1 1 3 3 4 4 1 4 2 1 3 4 4 2 1 3 2 1 4 4 3 2 2 4 1 2 4 2 3 3 4 1 2 4 3 4 2 4 1 2 4 3 1 1 4 2 3 4 3 2 1 3 2 4 4 2 3 1 3 3 4 4 1 3 3 4 2 4 4 3 1 1 4 2 4 4 3 2 2 4 1 4 4 2 3 3 4 1 4 4 3 4 2 4 1 4 4 1 4 2 1 3 1 4 2 4 3 1 1 2 4 2 1 3 4 1 3 4 2 1 1 4 3 4 4 1 4 2 1 3 2 ...
output:
-1 1 3 4 1 2 4 1 2 3 1 4 3 -1 1 4 1 1 3 1 1 4 2 1 4 1 -1 1 2 1 1 3 2 1 3 1 1 2 1 -1 -1 1 3 4 1 2 4 1 2 3 1 4 3 -1 1 4 1 1 3 1 1 4 2 1 4 1 -1 1 2 1 1 3 2 1 3 1 1 2 1 -1 -1 1 3 4 1 2 4 1 2 3 1 4 3 -1 1 4 1 1 3 1 1 4 2 1 4 1 -1 1 2 1 1 3 2 1 3 1 1 2 1 -1 -1 1 3 4 1 2 4 1 2 3 1 4 3 -1 1 4 1 1 3 1 1 4 2 ...
result:
ok Good Job! (75000 test cases)
Test #5:
score: 0
Accepted
time: 48ms
memory: 3512kb
input:
60000 5 2 1 3 1 4 1 1 5 5 1 2 4 1 2 5 3 1 5 1 3 3 5 4 1 2 1 5 2 1 4 5 1 4 3 1 5 3 1 1 5 2 1 4 5 5 3 1 4 2 1 5 2 1 5 1 2 3 1 2 5 4 2 5 4 1 1 2 3 5 2 3 5 3 1 2 4 4 5 1 2 5 4 5 3 1 2 5 1 2 5 1 5 2 1 3 1 4 3 5 1 3 4 1 2 5 3 2 5 4 3 2 1 1 3 3 5 5 3 4 1 3 4 5 2 1 5 2 1 1 3 4 5 3 5 5 3 4 4 1 1 5 2 1 5 3 1 ...
output:
2 2 3 4 5 2 5 1 3 4 2 5 1 2 4 2 5 1 2 3 2 4 1 2 3 2 4 1 3 5 2 4 5 2 3 1 4 5 1 3 5 1 3 4 2 4 1 2 5 1 4 5 2 4 5 2 3 1 2 5 1 2 4 2 3 1 2 5 1 3 5 1 2 5 2 3 5 2 4 1 2 3 2 3 1 2 4 1 3 4 1 2 4 1 2 3 2 3 4 2 5 2 3 1 4 5 2 3 5 2 4 1 4 5 1 3 5 1 3 4 2 3 4 2 5 2 3 4 5 1 2 2 5 4 1 2 2 5 3 1 2 2 4 3 1 1 5 4 2 2 ...
result:
ok Good Job! (60000 test cases)
Test #6:
score: 0
Accepted
time: 49ms
memory: 3512kb
input:
50000 6 1 6 5 1 4 1 2 1 3 1 6 5 1 3 1 1 2 2 6 4 1 6 4 1 5 1 1 3 2 1 3 6 6 4 6 2 1 5 1 3 1 1 4 6 5 6 1 5 4 1 3 1 2 1 6 4 1 5 6 2 1 1 6 3 1 6 1 6 3 1 2 1 5 2 4 1 6 3 1 5 2 1 2 2 6 4 1 6 4 1 2 3 5 1 1 2 3 6 6 4 6 1 2 3 1 2 4 5 1 6 1 2 5 6 2 5 3 1 4 1 6 1 2 2 6 4 1 3 1 5 6 6 5 3 3 1 1 6 2 1 4 1 6 5 1 3 ...
output:
-1 2 3 4 5 6 2 2 4 5 6 2 2 3 5 6 2 2 3 4 6 2 2 3 4 5 2 3 4 6 5 -1 2 6 1 4 5 2 6 1 3 5 2 6 1 3 4 2 5 1 3 4 2 2 4 6 5 2 6 1 4 5 -1 2 6 1 2 5 2 6 1 2 4 2 5 1 2 4 2 2 3 6 5 2 6 1 3 5 2 6 1 2 5 -1 2 6 1 2 3 2 5 1 2 3 2 2 3 6 4 2 6 1 3 4 2 6 1 2 4 2 6 1 2 3 -1 2 4 1 2 3 2 2 3 5 4 2 5 1 3 4 2 5 1 2 4 2 5 1...
result:
ok Good Job! (50000 test cases)
Test #7:
score: 0
Accepted
time: 52ms
memory: 3572kb
input:
42857 7 3 1 2 1 5 1 6 1 4 1 1 7 7 4 1 1 2 6 1 3 1 2 7 5 1 7 3 7 2 1 1 3 4 1 6 1 5 1 7 4 7 1 4 6 1 5 1 2 1 3 1 7 4 1 1 5 6 1 3 1 5 7 2 1 7 6 7 5 1 2 1 4 1 1 6 3 1 7 6 7 2 1 1 7 3 1 5 1 4 1 7 4 1 5 1 6 2 3 1 2 1 1 7 7 1 2 4 1 6 2 3 1 2 7 5 1 7 6 1 2 3 4 1 5 1 1 2 3 7 7 6 1 4 7 3 1 1 2 5 1 2 4 7 1 2 3 ...
output:
3 2 3 4 5 6 7 3 7 1 3 4 5 6 3 7 1 2 4 5 6 3 7 1 2 3 5 6 3 7 1 2 3 4 6 3 7 1 2 3 4 5 3 6 1 2 3 4 5 3 6 1 3 4 5 7 3 6 7 2 3 4 5 2 4 5 6 7 2 3 5 6 7 2 3 4 6 7 2 3 4 5 7 2 3 4 5 6 3 6 1 2 4 5 7 2 4 5 6 7 3 6 7 2 3 4 5 2 2 5 6 7 2 2 4 6 7 2 2 4 5 7 2 2 4 5 6 3 6 1 2 3 5 7 2 3 5 6 7 2 2 5 6 7 3 6 7 2 3 4 ...
result:
ok Good Job! (42857 test cases)
Test #8:
score: 0
Accepted
time: 53ms
memory: 3636kb
input:
37500 8 5 1 1 8 7 1 4 1 6 1 2 1 3 1 8 3 1 2 8 4 1 6 1 1 2 7 1 5 1 8 3 8 4 1 2 1 1 3 6 1 5 1 7 1 8 1 4 5 1 7 1 6 1 4 8 2 1 3 1 8 1 5 5 8 4 1 2 1 3 1 7 1 6 1 8 1 6 3 1 4 1 2 1 5 1 6 8 7 1 8 1 7 6 1 4 1 3 1 5 1 7 8 2 1 8 5 1 4 1 2 1 1 8 6 1 7 8 3 1 8 1 8 4 1 2 1 5 1 7 2 3 1 6 1 8 6 1 5 1 7 2 4 1 2 8 3 ...
output:
-1 3 3 4 5 6 7 8 3 2 4 5 6 7 8 3 2 3 5 6 7 8 3 2 3 4 6 7 8 3 2 3 4 5 7 8 3 2 3 4 5 6 8 3 2 3 4 5 6 7 3 3 4 5 6 8 7 -1 3 8 1 4 5 6 7 3 8 1 3 5 6 7 3 8 1 3 4 6 7 3 8 1 3 4 5 7 3 8 1 3 4 5 6 3 7 1 3 4 5 6 3 2 4 5 6 8 7 3 8 1 4 5 6 7 -1 3 8 1 2 5 6 7 3 8 1 2 4 6 7 3 8 1 2 4 5 7 3 8 1 2 4 5 6 3 7 1 2 4 5...
result:
ok Good Job! (37500 test cases)
Test #9:
score: 0
Accepted
time: 54ms
memory: 3732kb
input:
300 1000 815 567 883 63 783 506 485 779 142 248 218 214 617 238 481 567 20 203 119 212 953 179 44 830 427 156 97 916 763 172 484 512 916 21 417 958 408 257 238 634 891 213 90 208 394 56 758 819 435 26 636 718 880 212 458 662 123 212 239 156 548 314 852 436 722 828 271 429 493 27 910 421 354 143 956 ...
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 Good Job! (300 test cases)
Test #10:
score: 0
Accepted
time: 85ms
memory: 12012kb
input:
3 100000 21854 12448 41900 78683 26279 40303 96957 78925 50096 72644 14704 14585 44195 23551 3290 42026 25017 64658 4593 10713 29129 13530 62892 43675 23793 13329 97502 10091 78766 44620 59301 95815 25781 93162 12231 24059 77637 66545 53889 84545 65596 58277 31337 87701 29049 43837 99301 2408 41562 ...
output:
-1 -1 -1
result:
ok Good Job! (3 test cases)
Test #11:
score: 0
Accepted
time: 83ms
memory: 28180kb
input:
1 300000 264872 86229 63995 164384 180167 260692 169708 168083 149321 50390 177160 60629 178607 170744 176734 60911 231963 17936 49668 90468 205798 261858 7645 12727 240590 1798 8446 139678 32309 208096 226620 119112 204528 63548 110330 250899 219366 144880 258130 23221 203423 40874 45194 78650 1571...
output:
-1
result:
ok Good Job! (1 test case)
Test #12:
score: 0
Accepted
time: 57ms
memory: 3664kb
input:
30000 10 1 6 4 8 7 5 6 10 3 1 8 2 2 9 9 10 5 9 10 3 7 2 6 6 9 1 6 4 10 9 10 5 6 7 2 8 3 10 8 10 6 3 2 1 3 2 1 10 7 4 5 2 9 8 4 9 10 4 1 6 8 2 10 9 10 7 2 5 2 8 7 1 6 3 1 10 6 2 3 6 9 6 7 10 8 2 2 1 5 3 1 4 4 10 10 2 8 3 6 5 7 7 8 1 6 8 10 9 2 4 6 6 10 10 1 5 4 3 6 4 7 1 2 3 5 9 8 2 3 10 9 6 10 2 7 5...
output:
2 9 7 3 4 2 5 8 4 1 2 2 6 5 7 3 2 9 5 1 3 4 3 6 5 2 9 8 7 3 8 5 3 4 9 1 2 3 8 7 10 2 3 9 2 5 3 3 2 5 9 4 10 3 6 4 7 1 2 3 3 3 8 5 9 10 1 2 8 4 6 5 3 3 5 2 4 8 10 3 4 5 10 8 7 1 3 2 8 3 9 5 6 4 10 3 8 6 5 9 7 1 3 3 7 8 5 9 1 3 7 3 4 5 2 1 3 3 7 6 9 4 10 3 9 8 10 2 6 1 2 6 7 4 1 3 6 5 8 4 2 1 3 2 7 3 ...
result:
ok Good Job! (30000 test cases)
Test #13:
score: 0
Accepted
time: 65ms
memory: 3644kb
input:
3000 99 79 72 72 6 1 90 94 89 31 28 59 89 78 85 73 35 57 45 45 99 38 57 11 70 26 14 92 13 35 52 30 18 61 15 29 86 60 22 5 57 17 84 36 84 70 37 10 86 80 91 34 87 65 8 42 88 87 25 88 43 8 47 33 78 62 47 15 73 83 77 24 33 97 38 23 77 20 34 85 32 55 22 63 10 66 30 39 5 28 62 89 15 37 49 16 75 74 66 47 4...
output:
29 3 93 19 79 8 80 23 83 33 41 69 82 78 11 85 24 17 36 74 84 30 40 59 94 61 89 52 81 9 50 7 63 47 51 65 77 55 60 27 16 14 22 58 26 57 97 45 67 4 76 44 48 43 56 88 53 95 1 30 34 71 43 63 92 4 50 93 68 40 14 74 6 12 27 96 42 87 66 57 97 22 17 53 37 91 79 39 51 60 15 95 41 80 56 10 61 81 77 30 9 85 65 ...
result:
ok Good Job! (3000 test cases)
Test #14:
score: 0
Accepted
time: 95ms
memory: 10952kb
input:
3 100000 83890 7467 75295 89651 4062 83955 60269 26734 58357 54437 22200 48174 87338 74094 86583 7977 1136 84701 34461 47665 82355 28324 32412 16170 5270 73823 37181 86410 22445 59139 27816 47294 540 79932 73768 41579 14577 92388 31765 75494 49018 24756 57215 90140 86438 22430 3974 15829 59053 22856...
output:
28400 28550 33144 63342 90432 66752 27244 3397 84739 5345 95830 68795 72524 70041 70074 95074 83545 36777 6663 29096 83242 35337 83567 85723 45433 38815 11068 8336 85911 6455 69679 73957 93556 47159 5215 8782 94133 27618 72268 56530 10220 83659 44663 159 42050 44231 18109 27453 26903 9152 89283 5003...
result:
ok Good Job! (3 test cases)
Test #15:
score: 0
Accepted
time: 95ms
memory: 23408kb
input:
1 300000 30683 45175 202516 82288 209967 151196 160370 148366 36159 83057 277846 18399 58641 259342 220025 290125 299864 69137 276256 59853 163412 98854 211643 219357 45085 203080 17046 259484 175009 201826 220413 253746 280406 235850 107084 114346 6196 164024 149354 242637 8884 201047 102007 121900...
output:
85153 40395 244586 22976 83263 28535 86866 36514 44921 248273 87671 44506 124260 127461 112432 185705 275988 53526 171425 48117 260919 188774 290836 22242 123386 277432 162399 72450 238013 17215 61167 138975 99851 268439 286250 297610 228912 20246 254580 206652 82935 173774 220943 115983 133862 2032...
result:
ok Good Job! (1 test case)
Test #16:
score: 0
Accepted
time: 136ms
memory: 93128kb
input:
1 300000 98923 244101 265083 199522 178854 130825 233559 275176 51110 162632 100454 144508 203138 94733 112144 116959 221684 184011 122356 174675 240265 56410 83529 213874 174757 59833 87918 98194 231431 71105 145121 105056 205429 60598 114418 168280 249115 124674 160102 183789 27460 854 72909 12628...
output:
1 253307 250509
result:
ok Good Job! (1 test case)
Test #17:
score: 0
Accepted
time: 96ms
memory: 23560kb
input:
1 300000 51552 258960 174014 1763 298103 122466 80039 102474 90881 123355 37816 182571 209856 199049 68745 246931 231305 147333 256217 77569 277988 49579 174054 154053 74959 60605 281490 278569 131850 7894 138112 208044 207380 67110 1334 204240 117581 152706 90835 142455 54402 68306 264004 244539 99...
output:
85191 83772 200764 266297 275851 271045 224323 126946 29500 57777 227039 242573 34563 38511 288022 272556 251483 45382 98489 201842 255544 100327 17897 100171 111617 25121 92253 271944 294710 190821 221470 176428 162617 158046 18960 45645 253506 217396 133505 35555 221029 279989 9529 51140 104464 29...
result:
ok Good Job! (1 test case)
Test #18:
score: 0
Accepted
time: 96ms
memory: 10788kb
input:
3 100000 43104 39350 58310 72159 1910 78304 366 33335 3494 5822 948 92660 11882 15212 69203 4346 45739 21275 65867 55409 61694 88089 71479 40349 35887 88786 52148 61962 82180 65178 93823 47701 43116 75915 86963 34539 50583 74229 40562 91601 12139 88394 52559 57679 25481 60170 31207 85832 4201 92027 ...
output:
28431 9589 21546 86349 97406 23030 79654 66162 91272 9499 65104 17042 86653 26966 32441 7588 56054 6183 43212 6556 43911 31247 22289 91432 68500 31613 95104 36026 82937 65973 81191 51429 64078 12335 52138 54013 16384 28324 26718 21029 35346 17277 27436 59004 15973 7752 28441 23476 84776 24062 61567 ...
result:
ok Good Job! (3 test cases)
Test #19:
score: 0
Accepted
time: 117ms
memory: 90648kb
input:
1 299999 153306 123584 100430 137396 151712 125355 180598 178628 178522 156317 6811 124889 41530 107031 35237 104587 235884 157908 130785 274651 141969 58315 203297 225663 192833 74643 223470 99863 272704 178999 163551 250862 133718 39962 199271 24737 159107 66084 139074 91207 229404 47856 273704 12...
output:
1 211007 141316
result:
ok Good Job! (1 test case)
Test #20:
score: 0
Accepted
time: 53ms
memory: 3820kb
input:
3000 100 9 37 30 16 87 75 66 20 89 79 78 72 48 5 62 100 61 95 69 93 23 86 18 48 32 24 91 43 54 93 92 63 15 7 6 92 67 35 65 89 8 26 21 98 1 65 40 85 36 41 77 39 56 44 69 70 46 67 80 60 94 96 14 36 34 99 84 62 22 74 23 79 46 19 27 51 11 14 18 70 85 8 73 6 97 40 71 83 41 98 61 87 2 90 45 5 20 44 17 81 ...
output:
1 25 2 1 82 31 1 82 48 1 51 95 1 88 58 1 51 31 1 14 98 1 33 95 1 29 41 1 22 80 1 90 11 1 57 1 1 7 75 1 25 80 1 60 26 1 53 14 1 63 1 1 17 7 1 8 1 1 33 100 1 50 54 1 57 11 1 30 88 1 28 99 1 69 23 1 34 87 1 32 8 1 77 94 1 30 70 1 74 4 1 34 75 1 71 99 1 23 99 1 5 81 1 34 29 1 26 46 1 56 27 1 19 72 1 65 ...
result:
ok Good Job! (3000 test cases)
Test #21:
score: 0
Accepted
time: 116ms
memory: 62264kb
input:
1 299999 123584 153306 137396 100430 114758 125355 180598 13155 156317 178522 124889 6811 41530 27377 104587 35237 157908 235884 130785 44576 141969 129416 225663 203297 120350 74643 20300 99863 295855 178999 198163 250862 133718 148059 24737 199271 66084 159107 91207 139074 229404 89529 273704 1565...
output:
149999 37266 211007 11999 200879 42721 60007 27264 186847 168918 238901 104377 128434 16950 166398 32487 54607 36096 132405 56533 259128 54072 104873 248224 278891 51169 231355 6029 272859 269039 270603 152728 274636 212267 223096 21399 267911 8757 220115 44070 124154 51060 145808 56725 235148 27976...
result:
ok Good Job! (1 test case)
Test #22:
score: 0
Accepted
time: 95ms
memory: 9728kb
input:
10 29999 29014 14470 26823 2725 13020 1832 9002 521 22160 26983 2964 2174 20830 22020 19201 4850 19060 10457 23936 2163 22700 29072 28735 4318 15942 8678 10533 9761 8946 29013 12121 555 14303 26560 18146 20485 16984 345 22717 347 21795 27399 20125 489 6200 24303 21419 17994 28274 28769 28326 25399 1...
output:
14999 23907 28453 2920 15770 10326 4578 27593 24984 21879 1186 23588 8661 22099 6245 11850 26588 27395 27247 10476 753 12794 18957 22591 15447 17765 22536 19499 17275 16647 445 27680 25765 16086 16011 13029 28687 22326 2733 8253 1258 8517 18060 19084 14385 3375 1407 10732 19322 26691 12939 2893 1455...
result:
ok Good Job! (10 test cases)
Test #23:
score: 0
Accepted
time: 97ms
memory: 27040kb
input:
1 299999 258553 127891 200368 10642 134395 33327 66807 64283 298570 239432 106569 74919 101275 256095 215172 160205 258907 145255 294970 120844 120747 17359 231598 191111 103394 179995 276483 13575 153143 236649 32255 165538 13973 180565 114480 173795 280161 260850 239991 6207 137809 102438 160694 2...
output:
149999 6273 14505 63344 192141 38564 51318 55693 133139 26551 266643 80761 182248 150566 183289 58665 173825 93045 277670 198120 205575 4823 83922 143740 157760 228580 296022 45095 144871 153730 215781 13985 150634 188815 203807 39022 56831 171296 196533 14698 35007 51715 298874 24603 176218 216594 ...
result:
ok Good Job! (1 test case)
Test #24:
score: 0
Accepted
time: 82ms
memory: 6292kb
input:
10 29999 21547 280 5396 29060 21129 24483 1948 5302 5994 20221 12679 20525 23088 2218 24614 17646 9854 7760 23220 29541 9824 25475 9144 8680 17400 22930 3583 13702 14210 16949 4145 4827 4927 15200 5195 13939 23998 23812 20779 22916 19383 23442 29184 11705 12676 19405 4120 11612 24747 1107 25087 1775...
output:
14999 16957 29154 17159 26068 9719 18281 26302 29805 3819 10371 18583 20307 21418 27192 25389 29344 6685 18677 25218 25438 23121 23226 3529 4690 2938 16874 19948 22675 21424 25116 11769 19869 6026 17137 22264 25083 7319 8964 13590 20635 15275 24339 1837 11422 13356 28081 2661 8499 14604 26594 1632 3...
result:
ok Good Job! (10 test cases)
Test #25:
score: 0
Accepted
time: 59ms
memory: 3856kb
input:
27000 11 3 5 11 3 2 3 7 1 10 8 8 6 9 8 3 1 8 4 1 8 11 3 1 1 2 5 6 11 1 6 9 10 6 4 8 1 5 1 7 5 8 11 1 3 6 11 4 6 10 1 1 8 2 6 7 11 1 9 11 1 6 5 11 3 7 6 8 11 3 9 6 3 8 6 4 1 8 5 9 10 3 2 9 11 8 5 6 8 11 5 8 2 7 11 4 5 8 9 3 10 3 11 8 1 11 7 3 2 3 9 1 8 10 8 1 9 5 3 9 4 1 6 8 11 3 11 8 5 8 1 6 8 11 8 ...
output:
5 2 5 4 6 9 10 11 1 7 8 5 9 10 5 4 6 1 2 3 7 11 5 2 4 11 5 7 1 3 8 9 10 5 7 10 2 5 4 9 8 11 6 1 5 11 10 5 7 8 4 2 6 9 1 5 6 10 2 7 9 11 5 1 4 8 5 9 10 2 4 3 5 6 7 11 1 5 4 5 9 11 2 3 6 10 8 1 5 2 4 6 7 3 10 9 1 8 11 5 2 7 6 5 3 4 11 1 9 10 5 4 11 9 10 2 3 6 7 8 1 5 7 8 9 11 10 4 2 1 5 6 5 4 11 2 3 8...
result:
ok Good Job! (27000 test cases)
Test #26:
score: 0
Accepted
time: 59ms
memory: 3576kb
input:
30000 6 5 3 6 2 4 1 1 3 2 1 4 4 2 1 4 1 3 11 9 1 10 11 11 3 11 9 4 6 3 7 2 11 1 6 1 5 8 9 17 6 15 10 7 8 17 13 11 3 8 15 4 16 3 12 4 15 10 2 6 6 9 5 13 5 14 2 1 10 5 8 15 14 14 5 1 6 12 4 8 14 5 9 13 5 4 9 1 13 7 13 5 3 11 14 5 10 2 13 12 3 6 5 1 8 3 12 2 12 7 5 4 9 4 11 10 6 12 12 5 4 11 17 15 11 1...
output:
2 5 1 4 6 1 3 2 4 2 10 9 7 8 1 5 4 6 8 16 5 11 10 14 12 17 6 7 9 1 5 8 11 5 12 3 10 2 7 6 14 4 4 10 2 7 5 8 9 1 6 10 11 3 4 2 13 8 9 14 12 7 1 5 2 11 7 9 3 4 10 12 5 1 -1 2 5 4 3 1 4 3 8 4 7 6 11 9 2 3 2 10 3 9 5 1 4 3 11 10 13 2 6 8 7 3 9 10 2 3 6 1 1 2 4 2 4 3 2 1 -1 1 3 1 1 2 3 3 4 5 3 7 10 1 4 3...
result:
ok Good Job! (30000 test cases)
Test #27:
score: 0
Accepted
time: 89ms
memory: 20684kb
input:
1 253253 50359 179100 159762 56963 156480 129546 194694 165531 171829 15612 8904 244239 167203 79755 59278 193676 6064 179420 93089 11873 208865 161063 72803 55831 6938 69443 182632 252034 15492 123140 26694 88239 59982 95642 209852 233064 205527 137224 222851 93508 28102 71250 250703 159154 54445 3...
output:
84362 214222 221471 180757 223950 75226 116462 119613 122548 32686 123618 116466 14301 29566 61148 161419 190447 86991 250421 71906 59808 214557 103363 6281 102002 29363 61769 60216 212057 175873 192676 81813 94956 193988 188955 111166 133634 178373 133994 112070 245519 32368 147274 141007 197662 14...
result:
ok Good Job! (1 test case)
Test #28:
score: 0
Accepted
time: 70ms
memory: 3996kb
input:
300 1855 1007 450 4 615 1845 844 426 65 1135 79 1020 1386 935 343 936 16 219 1370 1495 131 1409 13 1087 31 63 804 145 1689 1750 1731 694 623 243 626 418 1383 1396 990 1234 385 867 969 779 337 615 732 657 286 1134 1651 269 582 903 1755 478 1384 1360 1060 144 1082 217 1537 185 61 1634 1813 313 876 879...
output:
612 503 927 486 539 545 1201 1066 453 29 361 502 107 122 283 375 848 279 983 822 91 1423 376 476 1341 259 691 1320 917 653 786 1010 1158 766 171 800 1457 176 302 450 1227 1007 1212 1072 1180 1153 1336 463 491 901 1275 1295 240 201 1834 1071 1566 112 871 123 211 285 713 329 1428 196 1267 604 1208 918...
result:
ok Good Job! (300 test cases)
Test #29:
score: 0
Accepted
time: 93ms
memory: 23228kb
input:
1 297722 2542 280838 47066 211579 45334 161254 161254 3387 161254 81700 286925 161254 188708 161254 163323 239454 177641 142518 161254 141588 161254 289112 161254 132883 161254 264103 161254 7898 131553 35341 274424 85972 161254 111454 161254 245526 195088 87188 83391 252892 74347 144981 248942 2949...
output:
49500 5 22 23 25 41 55 59 61 66 95 105 129 136 138 149 170 171 186 187 188 192 193 220 242 257 261 264 267 268 272 278 295 296 299 325 353 358 362 366 370 378 392 412 430 432 446 452 508 515 530 532 570 581 594 597 608 622 632 642 647 650 654 663 675 685 689 731 827 857 872 889 900 902 903 958 967 9...
result:
ok Good Job! (1 test case)
Test #30:
score: 0
Accepted
time: 98ms
memory: 26076kb
input:
1 297687 114063 114325 61315 256781 17004 254276 279378 173674 50685 133866 254276 270764 254276 168958 160573 254276 183000 144763 254276 41646 138547 226105 254276 62934 250757 284583 254276 147160 254276 62486 163839 23030 246684 80048 219153 38897 254276 184254 297273 295022 146005 254276 229491...
output:
74500 18 22 23 31 43 44 51 73 81 86 90 108 109 114 126 127 142 148 159 163 166 167 168 172 175 176 180 191 193 216 219 222 229 234 239 240 243 244 249 254 265 269 273 277 284 300 305 317 318 325 341 350 359 373 382 385 393 400 405 410 423 430 433 435 443 444 453 454 460 471 481 492 504 513 521 522 5...
result:
ok Good Job! (1 test case)
Test #31:
score: 0
Accepted
time: 123ms
memory: 27568kb
input:
1 298467 24310 131068 270342 284416 110818 163791 140749 270342 200509 156894 128257 270342 286273 39457 230236 150598 48559 18558 271934 270342 270342 221456 270342 240611 146171 270342 142089 270342 265273 37099 4824 207615 273677 270342 270342 233942 131877 270342 282024 14594 58550 270342 3225 1...
output:
99500 2 9 10 12 14 19 20 21 24 26 27 32 34 35 36 38 42 46 47 52 54 56 59 65 66 68 70 71 72 78 79 87 95 98 99 101 102 103 104 106 108 110 112 113 122 125 131 132 135 137 139 142 146 150 151 154 155 161 163 164 170 176 177 181 188 189 194 200 212 213 215 218 221 223 226 229 230 239 240 246 249 254 256...
result:
ok Good Job! (1 test case)
Test #32:
score: 0
Accepted
time: 91ms
memory: 31684kb
input:
1 299096 43798 64829 64829 22308 25723 64829 125491 64829 132554 64829 64829 31091 82698 64829 161922 64829 64829 48363 153172 64829 198568 64829 64829 68075 246874 64829 64829 122620 64829 237999 64829 257438 44676 64829 64829 295759 64829 45750 64829 17755 195879 64829 86788 64829 172696 64829 648...
output:
-1
result:
ok Good Job! (1 test case)
Test #33:
score: 0
Accepted
time: 87ms
memory: 31884kb
input:
1 299097 55978 208819 55978 222666 55978 118386 176498 55978 177724 55978 55978 286400 7823 55978 55978 86011 258404 55978 55978 127466 55978 52857 34668 55978 31665 55978 55978 160320 55978 239002 290038 55978 55978 36827 55978 280050 55978 104777 55978 158847 52282 55978 206198 55978 55978 58412 1...
output:
149548 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101...
result:
ok Good Job! (1 test case)
Test #34:
score: 0
Accepted
time: 87ms
memory: 30644kb
input:
1 299097 166438 82625 82625 128838 82625 141580 83485 82625 82625 210941 82625 40444 82625 45514 112980 82625 82625 8971 82625 240680 53717 82625 82625 243508 275918 82625 82625 214884 80291 82625 82625 244056 278345 82625 82625 50552 82625 84626 234287 82625 227857 82625 82625 282783 82625 169441 1...
output:
149548 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101...
result:
ok Good Job! (1 test case)
Test #35:
score: 0
Accepted
time: 92ms
memory: 33552kb
input:
1 299097 260330 58892 133029 58892 58892 172471 42729 58892 58892 26074 58892 99490 58892 3974 59464 58892 58892 186328 119256 58892 225649 58892 162394 58892 58892 128284 58892 215895 281775 58892 275533 58892 58892 149488 167782 58892 22771 58892 58892 63000 58892 9677 83128 58892 58892 121018 588...
output:
149548 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101...
result:
ok Good Job! (1 test case)
Test #36:
score: 0
Accepted
time: 84ms
memory: 5496kb
input:
10 29462 10852 16001 15495 6444 21756 23481 23752 13053 21560 13691 9711 23194 24917 23476 13053 18916 5 8995 17585 23447 644 13053 27831 13053 22383 10656 15443 21538 10814 3308 4868 2089 23555 13053 25895 13053 12345 13893 13053 14041 13053 8611 4444 15324 23999 27186 27037 13053 23208 22273 22940...
output:
4950 9 14 16 19 24 98 140 141 163 175 183 184 209 216 221 223 237 281 289 292 300 330 404 407 412 446 451 456 492 500 513 531 542 555 559 564 607 609 616 624 635 647 684 692 702 719 729 737 741 744 760 766 777 782 785 802 822 831 833 834 842 931 933 940 947 960 970 981 992 999 1003 1013 1014 1033 10...
result:
ok Good Job! (10 test cases)
Test #37:
score: 0
Accepted
time: 62ms
memory: 3840kb
input:
100 2959 1769 2187 2304 2429 2635 1931 271 2342 1671 153 707 1154 2597 1668 1048 204 1242 1301 926 2013 1557 2752 488 1893 613 1809 1416 2395 120 1179 982 321 2686 86 2313 2009 878 848 1447 2207 728 1885 2812 1683 1290 1627 2701 135 933 1099 1719 393 2355 2519 1368 384 311 1080 823 1642 459 2670 266...
output:
50 2824 340 2022 2596 1766 2165 2340 1522 816 338 945 2657 2483 2235 1400 1916 1967 2660 2624 459 1477 2397 1205 126 2585 2273 1884 1879 579 957 1515 1865 2700 2646 1226 655 2515 486 1518 1618 2190 1131 323 31 855 1428 234 1041 534 2300 2944 1228 2535 578 2879 2614 1826 239 1713 1481 458 1482 2185 1...
result:
ok Good Job! (100 test cases)
Test #38:
score: 0
Accepted
time: 62ms
memory: 3596kb
input:
1000 294 200 192 200 46 43 256 85 47 98 12 127 200 111 127 257 124 168 32 45 274 197 49 200 27 144 38 156 256 148 202 200 80 31 248 35 66 282 128 60 200 189 37 88 54 238 280 44 245 46 263 220 53 144 200 200 55 58 184 200 153 84 173 31 284 24 170 200 211 22 244 232 242 200 208 188 26 139 154 251 104 ...
output:
48 200 63 62 69 103 125 142 169 172 182 191 206 208 215 235 258 278 279 285 293 11 164 155 177 193 292 240 8 244 32 281 276 263 265 246 93 85 260 34 94 72 259 5 207 44 231 118 13 50 135 114 102 2 267 254 128 205 158 224 201 16 74 173 116 176 124 78 291 261 140 9 6 40 95 89 21 3 48 73 51 165 242 7 97...
result:
ok Good Job! (1000 test cases)
Test #39:
score: 0
Accepted
time: 99ms
memory: 28584kb
input:
1 299997 253129 238438 256990 147794 56683 265606 62100 74831 58006 231602 227120 138613 72936 16010 271383 221839 110579 31739 13864 11106 196180 159069 78858 61661 262511 279235 45738 172410 2512 6066 144552 29625 194524 184023 196218 229474 256817 33532 166763 175023 188106 91596 93278 158818 280...
output:
149998 39235 110766 55782 147480 222259 281033 99847 161094 230419 296089 44050 78580 114019 195731 76364 238882 7106 62432 71553 150642 199438 232293 71271 256128 21836 149865 22924 113062 253299 296707 21956 141949 33541 248012 100156 175395 209046 271863 150964 184998 2383 121267 109568 145114 10...
result:
ok Good Job! (1 test case)
Test #40:
score: 0
Accepted
time: 95ms
memory: 27448kb
input:
1 299995 251405 13382 21412 273614 170998 239060 142811 89087 163686 80590 54073 23173 29717 93866 155059 150414 171846 663 218307 10405 252692 83378 131202 289721 52385 252854 293096 280491 216796 237285 242784 243233 52784 6922 68312 26488 205497 147202 65036 297840 58601 67107 164525 57839 167843...
output:
149997 76765 207502 124276 148639 208819 292318 29461 74228 242570 293356 48177 53070 143344 182839 212830 226068 139574 209809 29945 33961 36468 77556 86925 155956 173403 223571 77624 164951 109573 178716 237079 273127 126396 157593 222385 245628 19020 162463 66911 275579 87404 169046 1761 72052 11...
result:
ok Good Job! (1 test case)
Test #41:
score: 0
Accepted
time: 97ms
memory: 27244kb
input:
1 299993 5467 110867 249637 87281 209055 74176 170317 272027 19928 97403 158898 19368 120942 93881 150886 63314 221175 188504 125295 79790 241291 263489 258417 196595 157362 130040 163372 85682 261036 45856 257946 163512 54262 17552 251249 14029 213457 65927 265238 36030 4861 71772 159755 111439 375...
output:
149996 42987 70428 71615 79546 189501 196320 7707 9460 107356 114218 231677 274250 131399 279638 12219 15596 86007 166610 111172 202054 32827 213697 45190 162731 78548 134445 142212 152120 170631 180931 223114 247425 26787 149105 219780 230462 181706 296867 62881 111282 45275 223263 109262 113399 44...
result:
ok Good Job! (1 test case)
Test #42:
score: 0
Accepted
time: 99ms
memory: 26856kb
input:
1 299991 248982 174625 105559 244297 35265 128781 206509 158409 13863 41023 249166 59270 215265 188850 218206 113138 126624 205065 241101 283870 31511 34427 237845 182965 134293 221193 214509 104965 67564 158810 198261 216053 115921 200242 245392 107170 62619 285117 48060 132083 166094 84748 150023 ...
output:
149995 68608 100909 21778 293359 115930 227677 20192 45797 33178 167575 63387 81025 83460 282673 76933 101756 184489 241872 91584 208278 120786 242332 237911 298718 53206 117744 805 89316 145921 235848 241799 290635 53930 161812 913 170439 4685 8236 113473 238334 243350 256985 17785 163358 245971 28...
result:
ok Good Job! (1 test case)
Test #43:
score: 0
Accepted
time: 107ms
memory: 28680kb
input:
1 299999 185541 176688 252501 252009 201515 181336 174664 10052 235206 78841 271650 240453 177704 41444 30343 236755 136584 224074 123830 176470 119252 294416 176341 111829 241834 52983 35945 184402 68227 225761 146133 151540 249663 70136 156441 42951 95322 152829 259090 103376 84766 152588 150129 1...
output:
149999 101239 132693 96383 132733 25625 75624 78327 218110 99182 230175 84144 128336 61385 144975 129373 193672 31219 129417 149420 223234 250612 258793 225119 263105 44178 83089 91669 160794 21558 130969 165994 195168 54713 255281 265745 276355 147271 280522 239853 282292 29097 124026 104218 133042...
result:
ok Good Job! (1 test case)
Test #44:
score: 0
Accepted
time: 96ms
memory: 27916kb
input:
1 299997 46586 268160 120257 162918 155586 87070 233774 236522 195573 139640 213343 184602 26338 174317 236326 103114 246267 241694 166020 217647 73806 217138 115817 291894 296219 281396 231138 217264 57086 215561 296205 295067 174916 36910 262907 177629 268640 277927 33944 172724 299448 298104 2913...
output:
149998 21527 104232 145121 156682 22884 52893 65026 220301 217355 225670 27663 91303 232785 260271 36951 106517 56453 61738 203032 211268 25748 212089 117599 118630 9167 71878 118844 170604 40671 171210 6998 86573 90535 142243 168644 226078 242407 245792 76514 135302 1246 238561 70974 252509 9004 38...
result:
ok Good Job! (1 test case)
Test #45:
score: 0
Accepted
time: 68ms
memory: 4132kb
input:
100 2997 1842 108 983 1626 2076 2280 1960 2673 2029 1154 1506 836 144 1843 173 1775 322 1567 1632 1092 2608 2819 2737 2888 24 2046 400 2487 2396 2569 2072 1695 2223 2237 2175 592 694 2236 2523 2322 2211 2325 2196 2888 1509 1586 2376 2272 2063 2310 2471 2612 2530 2101 1618 25 1830 1404 2646 743 2256 ...
output:
1498 189 1298 237 1462 1237 1494 1930 2306 653 894 671 1744 69 1979 561 2158 1277 2343 313 2383 2339 2661 226 1158 113 1150 1195 2565 2073 2671 2677 2948 101 972 791 1475 272 1936 1373 2044 2107 2206 485 2248 39 412 112 1593 577 608 1869 1908 170 2005 565 747 1039 1070 352 1472 2075 2411 427 2504 14...
result:
ok Good Job! (100 test cases)
Extra Test:
score: 0
Extra Test Passed