QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#803027 | #9866. Extracting Weights | ucup-team055# | AC ✓ | 32ms | 3944kb | C++23 | 8.8kb | 2024-12-07 15:39:02 | 2024-12-07 15:39:04 |
Judging History
answer
#pragma GCC optimize("Ofast")
#include <bits/stdc++.h>
namespace{
using namespace std;
using ll = long long;
using ld = long double;
using ull = unsigned long long;
using Bit = bitset<256>;
auto operator<=>(const Bit& a, const Bit& b) {
return bit_cast<array<ull, 4>>(a) <=> bit_cast<array<ull, 4>>(b);
}
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, 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,k);
vector g(n,vector<ll>{});
rep(n-1){
LL(a,b);
a--; b--;
g[a].push_back(b);
g[b].push_back(a);
}
// dfs
vector<Bit>bases;
vector<tuple<Bit,ll,ll>>hull;
auto add_base=[&](Bit a)->bool{
each(b,bases)chmin(a,a^b);
if(a.none())return 0;
bases.push_back(a);
return 1;
};
rep(root,n){
Bit a;
auto dfs=[&](auto dfs,ll p,ll i,ll depth)->void{
if(i)a[i]=1;
if(depth==k){
if(root<i&&add_base(a))hull.emplace_back(a,root,i);
a[i]=0;
return;
}
each(j,g[i])if(p!=j)dfs(dfs,i,j,depth+1);
a[i]=0;
};
dfs(dfs,-1,root,0);
}
if(sz(bases)<n-1){
return NO();
}
YES();
print('?',n-1);
each(a,u,v,hull){
print(' ');
print(u+1,v+1);
}
cout << endl;
vector<pair<Bit,ll>>ans;
each(a,u,v,hull){
LL(x);
ans.emplace_back(a,x);
}
rep(i,n-1){
rep(j,i,n-1)if(ans[j].first[i+1]){
swap(ans[i],ans[j]);
break;
}
rep(j,n-1)if(i!=j&&ans[j].first[i+1]){
ans[j].first^=ans[i].first;
ans[j].second^=ans[i].second;
}
}
print('!');
each(a,x,ans)print(' '),print(x);
out();
}
}
int main(){
ll t = 1;
// in(t);
rep(i,t){
solve();
}
}
这程序好像有点Bug,我给组数据试试?
詳細信息
Test #1:
score: 100
Accepted
time: 1ms
memory: 3576kb
input:
4 1 1 2 2 3 2 4 1 3 2
output:
YES ? 3 1 2 2 3 2 4 ! 1 2 3
result:
ok OK 3 numbers
Test #2:
score: 0
Accepted
time: 1ms
memory: 3584kb
input:
5 2 1 2 2 3 3 4 3 5 1 2 3 4
output:
YES ? 4 1 3 2 4 2 5 4 5 ! 4 5 3 2
result:
ok OK 4 numbers
Test #3:
score: 0
Accepted
time: 1ms
memory: 3580kb
input:
6 2 1 2 2 3 3 4 4 5 4 6
output:
NO
result:
ok Correct
Test #4:
score: 0
Accepted
time: 1ms
memory: 3648kb
input:
250 1 108 84 37 129 33 68 131 135 26 173 186 25 35 104 78 123 52 115 239 44 166 149 127 210 185 212 246 64 249 143 137 101 82 209 244 29 15 242 20 62 243 151 81 10 42 159 65 71 71 105 166 192 214 225 97 87 86 208 43 60 235 54 77 107 28 147 195 2 45 153 104 180 63 250 205 165 220 206 24 92 12 41 233 ...
output:
YES ? 249 1 233 2 195 2 197 3 162 3 134 4 72 4 16 5 140 5 240 6 207 6 156 7 99 7 16 8 106 8 213 9 110 9 56 10 81 10 126 11 30 11 128 12 41 12 107 13 174 13 218 14 235 14 121 15 242 15 223 17 177 17 161 18 173 18 197 19 171 19 181 20 62 20 205 21 249 21 27 22 218 22 102 23 153 23 182 24 92 24 78 25 1...
result:
ok OK 249 numbers
Test #5:
score: 0
Accepted
time: 1ms
memory: 3904kb
input:
250 1 159 6 156 104 218 66 172 38 158 142 37 143 171 240 53 204 139 103 152 177 213 231 91 93 75 77 39 125 239 28 196 237 185 209 40 219 43 114 129 222 162 247 140 23 48 35 184 215 186 155 58 178 178 98 82 91 238 164 33 54 127 165 60 151 2 7 160 223 189 247 50 209 189 205 81 49 237 180 88 156 225 20...
output:
YES ? 249 1 72 1 60 2 7 2 168 3 237 4 92 4 93 5 56 5 166 6 159 6 230 8 214 8 184 9 106 10 103 10 93 11 155 12 179 12 100 13 194 13 208 14 184 14 219 15 112 15 148 15 137 16 86 16 70 17 101 17 225 18 56 19 68 19 158 20 217 20 160 20 119 21 131 22 142 23 140 23 245 24 230 24 117 25 139 25 242 26 56 26...
result:
ok OK 249 numbers
Test #6:
score: 0
Accepted
time: 1ms
memory: 3648kb
input:
250 2 138 236 154 181 103 227 74 169 248 123 25 69 26 157 250 216 164 75 89 215 93 43 76 56 56 153 88 139 121 72 130 228 231 198 224 75 238 235 66 8 119 77 129 204 125 30 204 165 113 60 156 14 226 192 54 201 61 70 59 62 11 233 60 44 240 177 79 152 88 13 137 26 186 133 94 134 180 246 167 126 61 79 10...
output:
YES ? 249 1 24 1 120 2 10 2 88 3 56 3 214 3 131 4 106 4 64 5 88 6 25 6 29 6 117 7 72 7 160 7 205 8 184 9 18 9 141 9 39 9 87 10 88 10 93 10 94 11 34 11 51 11 63 12 115 13 139 13 173 13 180 13 67 13 109 14 171 14 249 14 188 14 108 15 241 15 229 16 70 16 79 16 204 17 23 17 187 17 151 18 247 18 100 18 4...
result:
ok OK 249 numbers
Test #7:
score: 0
Accepted
time: 1ms
memory: 3640kb
input:
250 3 208 175 120 43 87 33 248 90 78 198 220 229 177 17 239 236 142 187 48 35 233 214 53 14 12 184 126 227 77 113 202 41 152 12 108 19 69 136 168 163 176 57 179 110 159 211 28 103 102 137 180 156 165 101 87 150 89 132 38 151 242 49 81 165 127 185 41 127 115 215 11 29 216 92 215 34 145 75 141 45 235 ...
output:
NO
result:
ok Correct
Test #8:
score: 0
Accepted
time: 1ms
memory: 3940kb
input:
250 4 116 188 148 118 200 249 230 192 208 143 189 157 22 2 23 212 140 107 67 215 46 18 38 111 135 129 22 19 210 158 224 171 31 10 36 113 48 238 146 225 184 147 52 85 189 191 247 244 68 6 234 70 45 204 221 186 100 172 192 173 108 7 217 87 56 80 63 117 193 47 153 181 52 65 166 102 133 121 151 117 243 ...
output:
YES ? 249 1 246 1 113 2 126 2 106 2 3 2 80 3 196 4 170 4 131 4 181 5 114 5 99 5 236 5 209 5 60 6 138 6 89 6 45 6 101 6 55 7 192 7 175 7 186 8 124 8 24 8 130 8 184 9 129 9 34 10 170 10 108 10 173 10 59 11 205 11 79 11 25 11 229 11 129 11 43 12 65 12 172 12 75 12 223 13 127 13 41 13 120 13 198 14 188 ...
result:
ok OK 249 numbers
Test #9:
score: 0
Accepted
time: 0ms
memory: 3708kb
input:
250 5 55 202 83 11 13 240 191 221 245 164 40 169 156 85 177 102 19 156 236 53 109 43 212 50 62 97 199 41 198 221 123 30 39 212 235 78 146 47 182 171 84 129 234 22 15 167 69 146 137 8 81 42 9 33 48 35 247 79 226 157 70 139 193 87 223 241 22 44 34 176 217 151 186 172 44 110 13 103 235 247 66 6 64 234 ...
output:
YES ? 249 1 180 1 172 2 244 2 243 2 109 2 103 2 136 3 47 3 82 3 187 3 145 3 120 3 249 4 7 4 185 5 56 5 48 5 234 5 121 6 88 6 69 6 65 6 42 7 133 7 76 7 173 7 32 7 111 7 80 8 155 8 95 8 249 8 185 9 232 9 235 10 213 10 81 10 128 11 12 11 30 11 142 12 123 12 63 12 202 12 236 12 44 13 41 13 36 13 136 13 ...
result:
ok OK 249 numbers
Test #10:
score: 0
Accepted
time: 2ms
memory: 3644kb
input:
250 6 155 85 186 90 1 18 122 232 22 2 223 218 215 12 155 48 173 159 147 112 103 72 189 220 61 40 191 198 174 210 170 50 67 116 11 141 231 46 237 242 142 205 205 68 118 102 63 201 152 203 209 22 176 52 125 162 71 94 78 172 242 238 231 37 79 28 89 49 26 68 217 55 71 17 73 204 244 160 87 177 117 129 10...
output:
YES ? 249 1 41 1 116 2 61 2 23 2 217 3 26 3 206 3 21 4 219 4 157 4 95 4 156 4 173 5 228 5 188 5 248 5 186 6 177 6 71 6 16 7 230 7 148 7 73 7 224 8 199 8 87 8 234 8 213 9 177 9 72 9 120 9 235 9 151 10 129 10 20 10 215 10 28 11 161 11 192 12 247 12 19 12 39 12 126 13 247 13 207 14 149 14 66 14 179 14 ...
result:
ok OK 249 numbers
Test #11:
score: 0
Accepted
time: 0ms
memory: 3864kb
input:
249 7 119 72 131 186 8 106 3 62 51 5 12 61 159 242 56 238 89 39 180 121 96 173 90 236 211 51 209 162 19 153 192 207 168 30 175 41 86 100 4 51 22 174 14 219 18 96 87 83 78 85 136 17 109 165 234 20 185 224 71 150 69 226 66 23 233 161 68 123 34 203 238 207 6 151 225 83 246 219 86 146 103 100 113 238 15...
output:
NO
result:
ok Correct
Test #12:
score: 0
Accepted
time: 2ms
memory: 3644kb
input:
250 8 145 88 240 90 131 168 16 52 63 28 89 248 60 24 67 39 86 155 152 172 79 89 81 209 68 196 220 31 97 30 74 4 18 173 123 128 225 38 79 149 101 83 20 139 84 24 5 27 78 231 51 93 224 118 84 236 186 205 128 81 242 106 199 76 39 29 213 163 102 178 57 36 10 159 194 215 48 211 192 46 232 194 244 183 218...
output:
YES ? 249 1 142 1 15 1 200 2 139 2 22 2 243 2 105 3 35 3 106 4 109 4 198 4 225 4 110 5 108 6 219 6 200 6 114 6 132 6 196 7 239 7 162 7 76 8 203 8 244 8 30 9 202 9 177 9 196 9 140 10 232 10 94 10 145 11 137 11 71 11 29 11 116 11 203 12 32 12 206 12 24 12 170 13 166 13 34 13 128 13 180 14 75 14 123 14...
result:
ok OK 249 numbers
Test #13:
score: 0
Accepted
time: 1ms
memory: 3876kb
input:
249 9 155 31 104 70 14 195 166 78 211 150 74 207 100 209 9 220 198 243 56 132 185 217 161 92 4 146 120 246 3 149 244 127 185 99 165 62 106 131 101 122 2 54 210 242 149 19 26 142 91 94 193 205 15 58 51 187 211 171 54 71 59 234 65 184 21 204 230 46 60 144 133 38 118 50 238 87 33 223 79 186 189 95 213 ...
output:
YES ? 248 1 39 1 73 2 13 2 96 2 141 2 59 3 211 3 157 3 38 4 104 4 88 4 83 5 193 5 112 6 87 6 210 7 204 7 58 7 30 8 62 8 127 9 62 9 242 10 35 10 214 11 72 11 185 11 216 11 220 12 125 12 215 12 67 13 177 13 168 14 34 14 40 14 51 14 98 15 136 15 111 15 129 15 199 16 152 16 72 16 122 17 56 17 212 18 116...
result:
ok OK 248 numbers
Test #14:
score: 0
Accepted
time: 0ms
memory: 3640kb
input:
249 10 79 165 127 161 10 168 96 10 4 106 149 100 25 34 130 2 130 97 12 112 119 83 196 149 226 68 164 11 197 125 83 107 86 148 138 110 230 96 36 204 192 130 67 75 176 235 247 204 176 64 42 173 118 206 26 225 134 63 126 56 240 33 222 147 141 153 97 159 180 231 93 108 29 182 152 4 15 103 191 85 14 187 ...
output:
YES ? 248 1 149 1 117 2 177 2 30 2 179 2 48 2 146 2 214 3 14 3 31 3 96 3 32 3 206 3 76 4 60 4 84 4 16 4 128 4 24 4 31 4 126 4 165 5 247 5 28 5 248 5 232 6 187 6 249 6 9 6 108 6 214 7 208 7 245 7 100 7 107 7 190 8 93 8 111 8 68 9 127 9 141 9 115 9 162 9 150 9 48 9 230 9 118 10 26 10 175 10 142 10 114...
result:
ok OK 248 numbers
Test #15:
score: 0
Accepted
time: 2ms
memory: 3580kb
input:
250 11 194 36 146 173 214 108 117 14 34 109 173 202 245 71 42 157 246 152 32 170 108 23 224 90 168 164 80 43 92 73 237 194 210 238 44 97 2 212 60 64 240 44 171 145 53 201 146 126 136 209 236 60 43 163 243 181 79 12 98 149 13 221 75 165 155 189 231 138 216 50 233 239 133 179 233 175 130 217 57 17 170...
output:
NO
result:
ok Correct
Test #16:
score: 0
Accepted
time: 2ms
memory: 3592kb
input:
249 12 58 197 97 124 76 141 194 166 41 20 71 231 33 126 104 18 232 168 240 190 212 85 204 31 13 123 136 46 181 114 133 111 81 29 222 244 186 43 2 126 198 174 32 146 160 219 33 48 225 236 53 249 49 94 148 210 246 91 244 17 89 106 142 232 173 49 1 185 245 184 204 59 67 180 11 109 49 95 143 235 233 245...
output:
YES ? 248 1 146 1 126 2 162 2 185 2 66 2 249 3 107 3 132 3 215 3 65 4 240 4 112 5 235 5 35 5 114 6 246 7 165 7 121 7 17 7 125 8 138 8 223 8 87 9 62 9 24 9 47 9 226 10 164 10 23 10 183 10 174 11 91 11 96 11 178 12 101 12 41 12 200 12 127 12 54 13 82 13 138 13 141 13 191 14 119 14 136 14 31 14 195 15 ...
result:
ok OK 248 numbers
Test #17:
score: 0
Accepted
time: 0ms
memory: 3712kb
input:
250 13 32 199 155 245 194 56 245 43 88 135 10 102 4 227 109 175 243 227 92 106 168 57 24 163 40 51 85 224 139 47 185 226 233 65 103 87 128 140 14 22 44 204 198 127 1 141 19 2 234 169 214 151 210 185 80 71 16 25 218 48 172 148 75 127 161 129 162 43 224 99 105 149 104 131 15 78 80 191 208 56 21 34 213...
output:
YES ? 249 1 207 1 42 2 102 2 246 3 64 3 66 4 158 4 55 4 202 4 223 5 146 5 162 6 165 6 64 7 104 7 30 7 99 8 77 8 172 8 218 9 236 9 224 10 19 10 40 10 17 11 85 11 104 12 119 12 190 12 124 12 107 13 85 13 110 13 56 14 49 14 76 14 228 15 219 15 79 16 176 16 160 16 134 17 227 18 239 19 114 19 241 20 173 ...
result:
ok OK 249 numbers
Test #18:
score: 0
Accepted
time: 2ms
memory: 3944kb
input:
250 5 9 215 88 207 147 112 141 204 199 166 233 192 116 192 191 19 213 92 182 66 203 144 38 200 164 217 219 223 195 124 100 153 68 93 103 5 161 170 223 19 156 173 175 132 37 99 16 51 93 57 234 171 166 47 81 112 174 60 109 24 63 139 143 146 101 125 168 181 160 167 22 178 185 26 70 41 46 140 50 246 243...
output:
YES ? 249 1 119 1 158 1 144 1 46 2 60 2 224 2 208 3 131 4 131 4 99 4 150 4 141 4 52 4 236 5 171 5 46 5 230 5 95 5 44 5 58 6 224 6 93 6 209 7 33 7 25 8 193 8 127 8 108 9 198 9 89 9 194 9 79 10 103 10 90 10 49 10 95 10 119 10 88 10 168 11 228 11 225 11 43 11 40 12 216 12 149 13 220 13 202 13 51 14 41 ...
result:
ok OK 249 numbers
Test #19:
score: 0
Accepted
time: 2ms
memory: 3684kb
input:
250 9 3 9 79 18 184 234 171 151 200 76 92 9 157 229 206 102 122 176 1 216 134 211 222 75 193 112 240 41 115 182 113 230 58 231 1 248 223 179 233 205 245 196 236 197 134 107 43 168 67 2 18 42 1 229 181 115 2 26 6 108 130 121 57 112 85 79 190 38 93 88 232 152 93 121 9 121 15 138 87 129 168 42 38 194 2...
output:
YES ? 249 1 8 1 106 1 230 1 10 2 177 2 44 2 38 3 14 3 29 3 6 3 243 3 234 3 189 3 181 3 170 3 190 3 12 3 145 4 205 4 146 4 133 4 102 4 82 4 21 4 213 4 208 5 221 5 135 5 191 5 164 5 102 5 122 5 24 6 16 6 202 6 69 6 162 6 87 6 79 6 42 6 152 6 250 6 88 6 89 6 92 7 209 7 235 8 161 8 193 8 57 8 142 8 76 8...
result:
ok OK 249 numbers
Test #20:
score: 0
Accepted
time: 1ms
memory: 3640kb
input:
250 10 14 184 17 188 52 1 41 139 213 136 160 216 207 228 84 28 52 92 34 29 195 83 123 248 78 196 195 21 38 54 19 146 23 49 208 29 250 187 245 83 241 127 221 132 239 160 194 185 73 48 224 103 141 60 51 57 107 100 108 51 46 79 142 21 28 59 93 126 71 103 7 237 144 88 113 105 205 77 193 80 249 161 47 22...
output:
YES ? 249 1 121 1 144 1 151 1 105 2 55 2 154 2 250 2 231 3 135 3 107 3 71 3 244 3 228 3 172 4 132 4 95 4 82 4 125 5 188 5 175 5 55 6 118 6 60 6 41 6 21 6 30 6 136 7 33 7 60 7 58 7 87 7 211 7 206 7 73 7 85 8 65 8 24 8 155 8 79 8 225 8 62 8 182 8 50 8 242 8 156 9 216 9 239 9 69 9 150 9 84 10 121 10 16...
result:
ok OK 249 numbers
Test #21:
score: 0
Accepted
time: 2ms
memory: 3652kb
input:
250 13 227 63 209 9 8 220 228 81 15 179 83 13 14 83 39 8 79 43 28 3 92 190 139 148 112 134 71 37 243 137 170 13 28 66 173 146 249 58 20 174 137 98 134 214 8 191 206 99 47 192 43 160 219 204 149 7 87 80 26 138 233 122 107 30 200 81 209 237 114 142 112 172 206 219 41 18 145 10 144 135 57 181 232 177 1...
output:
YES ? 249 1 164 1 204 1 132 1 229 1 245 1 233 1 243 1 98 1 189 2 167 2 43 2 25 3 23 3 217 3 6 3 202 3 229 3 130 3 82 3 216 3 59 3 35 4 99 4 74 4 78 4 66 4 91 4 157 4 47 5 111 5 27 5 80 5 129 5 161 5 104 5 223 5 141 5 184 5 51 5 177 6 235 6 150 6 126 6 43 6 174 6 123 6 37 6 209 6 65 6 95 7 213 7 69 7...
result:
ok OK 249 numbers
Test #22:
score: 0
Accepted
time: 2ms
memory: 3712kb
input:
250 5 157 35 175 104 98 220 183 129 56 213 16 142 238 177 22 215 232 198 214 205 11 196 82 121 176 126 149 250 136 120 243 72 135 102 71 36 62 139 98 245 233 180 177 23 204 222 31 12 50 184 104 166 34 221 54 100 194 249 112 219 179 232 234 172 35 61 208 186 189 15 109 74 108 94 60 236 34 161 152 60 ...
output:
YES ? 249 1 58 1 92 2 95 2 56 3 34 3 10 3 96 4 170 4 46 5 179 5 225 6 152 6 242 6 9 7 8 7 195 7 153 7 178 8 250 9 60 9 70 10 98 10 138 10 103 11 229 11 27 11 53 12 230 12 141 13 61 13 161 14 15 14 100 14 145 15 92 15 38 15 205 16 149 16 28 17 152 17 156 17 199 17 130 18 22 18 151 19 109 19 198 20 19...
result:
ok OK 249 numbers
Test #23:
score: 0
Accepted
time: 1ms
memory: 3640kb
input:
250 3 208 70 2 230 14 187 75 223 142 119 25 108 56 177 59 167 149 91 153 126 31 3 204 58 90 211 201 239 125 129 139 54 159 245 144 113 128 135 114 117 127 168 188 172 164 224 248 139 14 220 212 80 134 32 78 133 136 101 103 123 238 95 62 184 140 80 243 250 72 131 107 245 176 247 125 7 133 138 77 27 1...
output:
NO
result:
ok Correct
Test #24:
score: 0
Accepted
time: 1ms
memory: 3700kb
input:
250 4 126 28 2 43 138 182 166 54 136 114 162 161 52 141 93 25 165 37 109 200 209 221 12 23 16 57 45 212 190 35 118 140 154 121 93 245 36 112 192 38 80 84 203 174 116 212 41 34 42 197 30 232 95 152 169 250 70 111 219 97 228 4 118 211 132 247 42 142 186 52 190 8 121 63 103 39 227 113 153 14 154 199 73...
output:
YES ? 249 1 145 1 105 1 15 1 30 1 222 1 208 2 3 2 60 2 192 2 163 2 29 2 189 3 91 3 176 4 198 4 7 4 221 4 42 4 38 5 152 5 36 5 32 5 169 6 82 6 149 6 18 6 106 6 57 7 87 7 88 7 160 7 135 7 8 7 52 7 224 7 198 8 44 8 77 8 20 8 203 8 53 8 55 8 87 8 156 8 240 9 107 9 27 9 117 9 168 9 175 10 76 10 48 10 72 ...
result:
ok OK 249 numbers
Test #25:
score: 0
Accepted
time: 2ms
memory: 3708kb
input:
250 5 150 166 216 134 79 54 160 146 140 166 209 22 158 138 203 232 236 1 180 133 54 156 152 79 42 204 225 166 97 60 97 215 28 106 37 165 142 234 118 50 144 55 17 240 111 169 54 220 206 250 29 34 185 9 231 43 10 40 158 88 184 141 138 244 137 111 140 237 4 214 156 123 199 10 118 90 225 247 74 55 29 30...
output:
YES ? 249 1 61 1 144 1 107 1 82 1 136 1 238 1 149 1 202 1 46 1 122 1 70 1 6 1 237 1 250 1 112 1 179 2 148 2 243 2 155 2 217 3 231 3 38 3 29 4 69 4 196 5 172 5 178 6 32 6 206 6 93 6 76 6 79 6 156 6 220 6 24 6 26 6 68 6 96 6 87 7 134 7 152 7 123 7 31 7 20 7 222 7 166 7 247 7 72 7 74 7 131 7 168 7 75 7...
result:
ok OK 249 numbers
Test #26:
score: 0
Accepted
time: 2ms
memory: 3636kb
input:
250 9 212 201 3 210 105 116 233 107 249 164 56 47 55 52 129 123 24 197 183 204 211 215 94 23 20 66 230 235 135 95 84 168 180 63 37 207 176 172 182 123 226 54 106 218 56 228 223 171 5 20 45 67 39 59 215 81 157 103 178 53 245 2 136 78 37 185 147 63 168 190 225 244 74 22 116 195 161 250 165 201 5 146 6...
output:
YES ? 249 1 172 1 2 1 171 1 83 1 226 1 205 1 173 1 70 1 155 1 106 1 78 1 46 2 38 2 207 3 250 3 181 3 127 3 202 3 146 3 212 3 82 3 37 3 96 3 213 3 117 3 4 3 206 3 41 3 150 3 18 3 13 3 53 4 66 4 5 4 201 4 185 4 87 4 182 4 157 5 138 5 175 5 123 5 103 5 52 5 114 5 243 5 108 6 102 6 113 6 217 6 148 6 32 ...
result:
ok OK 249 numbers
Test #27:
score: 0
Accepted
time: 0ms
memory: 3704kb
input:
250 10 144 179 9 240 100 203 8 6 201 75 15 66 232 177 63 164 199 108 53 231 12 172 26 159 230 168 5 125 130 122 185 134 216 142 240 127 232 201 218 169 36 108 88 73 105 7 110 56 226 117 1 65 40 121 111 185 207 202 93 117 203 237 47 243 182 121 139 195 165 248 31 162 151 247 63 23 35 11 26 161 223 10...
output:
YES ? 249 1 96 2 188 2 91 2 136 2 67 3 138 3 230 4 182 4 167 5 206 5 59 5 182 6 9 6 234 7 162 7 36 7 44 8 134 8 85 9 116 9 115 10 12 10 183 10 230 11 62 11 132 11 39 12 73 12 198 13 233 13 112 13 178 14 25 14 226 15 103 15 38 15 219 15 113 16 111 16 158 16 138 17 29 17 159 17 161 18 149 18 97 18 116...
result:
ok OK 249 numbers
Test #28:
score: 0
Accepted
time: 0ms
memory: 3588kb
input:
250 1 228 112 154 58 222 147 166 189 101 45 238 222 181 226 93 120 212 194 187 98 206 13 1 121 221 76 167 112 197 36 16 131 114 167 78 4 221 195 132 116 80 236 87 18 97 114 34 239 95 213 161 96 217 161 136 11 243 210 190 146 119 126 59 231 80 168 14 185 65 118 83 175 35 85 33 137 15 61 232 70 47 93 ...
output:
YES ? 249 1 121 1 209 1 74 1 7 1 191 2 198 3 88 3 226 4 78 4 249 5 194 6 235 7 62 7 57 8 249 9 125 9 237 10 31 10 249 10 106 11 136 12 21 12 25 13 206 13 47 14 185 14 235 14 151 14 99 15 61 16 131 16 119 17 119 17 59 18 87 19 168 20 143 21 130 22 168 22 196 23 239 23 160 23 176 23 116 23 79 24 242 2...
result:
ok OK 249 numbers
Test #29:
score: 0
Accepted
time: 1ms
memory: 3648kb
input:
250 2 10 180 109 65 82 242 35 111 197 14 211 151 1 34 119 248 27 117 2 83 52 138 39 75 25 170 213 94 148 180 176 162 46 101 187 237 4 107 55 218 48 7 100 120 196 72 2 162 101 91 60 140 57 173 13 90 131 33 138 241 26 66 223 55 101 139 100 85 208 218 2 37 239 2 12 38 143 87 15 5 172 25 184 128 57 103 ...
output:
YES ? 249 1 241 1 173 1 69 1 7 1 26 1 240 1 163 1 32 1 4 1 55 1 208 1 30 2 176 2 71 2 14 2 199 2 82 2 114 2 131 2 206 2 188 2 65 2 58 2 110 2 50 3 170 3 172 3 190 4 98 4 161 4 127 4 29 4 227 4 111 4 244 4 79 4 90 4 172 4 241 5 66 5 102 5 34 5 137 5 191 5 36 5 195 6 36 7 237 7 232 7 68 7 27 7 124 8 2...
result:
ok OK 249 numbers
Test #30:
score: 0
Accepted
time: 2ms
memory: 3896kb
input:
250 3 140 11 210 157 49 125 56 112 99 175 84 217 123 250 145 29 118 21 198 126 78 59 239 208 95 40 63 223 182 138 165 185 187 21 196 98 90 139 102 23 48 91 90 113 221 146 206 103 171 83 23 235 54 106 249 83 226 83 84 61 248 188 227 11 94 89 130 48 72 21 235 210 24 21 119 187 72 231 70 60 48 222 233 ...
output:
NO
result:
ok Correct
Test #31:
score: 0
Accepted
time: 0ms
memory: 3872kb
input:
249 4 13 63 126 167 188 38 206 45 157 87 101 75 117 217 205 210 198 219 89 79 68 27 170 117 73 115 33 102 160 146 12 7 44 62 247 8 158 237 158 2 145 3 18 214 215 204 47 37 203 226 244 96 98 50 228 103 60 177 13 70 248 209 236 101 177 114 151 112 90 115 126 95 147 35 67 61 174 179 87 169 75 24 45 79 ...
output:
YES ? 248 1 230 1 143 1 122 1 85 1 25 1 215 1 68 1 8 1 135 1 17 1 141 1 78 1 169 1 178 1 213 1 10 1 16 1 80 1 41 1 105 1 47 1 101 1 24 1 150 1 57 1 33 1 58 1 214 1 160 1 96 1 19 1 90 1 139 1 91 1 99 1 211 1 203 1 107 1 61 1 3 1 43 1 147 1 228 1 235 2 216 2 226 2 60 2 208 2 5 2 44 2 79 2 126 2 194 2 ...
result:
ok OK 248 numbers
Test #32:
score: 0
Accepted
time: 4ms
memory: 3652kb
input:
250 5 97 192 51 222 53 237 184 166 89 79 157 128 59 56 65 61 103 216 238 215 9 113 158 114 179 237 38 211 100 72 247 44 233 239 139 200 220 211 166 190 1 12 247 175 227 234 144 186 205 190 200 2 119 74 169 239 223 166 212 36 87 163 77 228 114 171 135 174 26 22 131 60 145 62 127 109 62 33 185 35 222 ...
output:
YES ? 249 1 234 1 97 1 59 1 127 1 34 1 212 1 84 1 71 1 55 1 217 1 187 1 26 1 8 1 147 1 47 1 134 1 142 1 157 1 11 1 107 1 191 1 51 1 41 1 202 1 100 1 131 1 19 1 141 1 52 1 15 1 67 1 230 1 242 1 79 1 201 1 83 1 126 1 173 1 135 1 136 1 177 1 90 1 213 1 4 1 168 1 149 1 104 1 103 1 69 1 203 1 132 1 105 1...
result:
ok OK 249 numbers
Test #33:
score: 0
Accepted
time: 5ms
memory: 3644kb
input:
249 8 231 36 7 69 218 8 31 186 1 47 79 218 199 171 211 12 154 69 5 117 229 6 100 200 172 221 234 66 214 6 206 68 77 244 113 184 107 149 204 168 99 133 173 75 179 107 36 115 156 218 6 36 214 116 36 218 189 109 135 207 149 136 103 238 78 110 84 98 14 105 184 140 80 74 224 202 107 201 107 141 56 191 4 ...
output:
YES ? 248 1 143 1 162 1 232 1 92 1 46 1 60 1 208 1 178 1 63 1 235 1 110 1 33 2 49 2 14 2 95 2 86 2 80 2 44 2 47 2 207 2 228 2 6 2 220 2 22 2 216 2 42 2 154 2 41 2 185 2 59 2 5 3 247 3 193 3 49 4 224 4 17 4 93 4 51 4 54 4 137 4 230 4 107 4 136 4 32 4 196 4 64 4 243 4 249 4 205 4 61 4 158 4 40 4 183 4...
result:
ok OK 248 numbers
Test #34:
score: 0
Accepted
time: 4ms
memory: 3904kb
input:
250 9 203 7 135 176 160 228 152 235 248 22 68 186 6 84 42 142 157 39 65 99 97 205 242 147 54 121 204 60 81 203 207 223 42 145 32 146 7 178 218 214 166 19 39 76 230 104 77 141 156 59 72 182 48 16 154 182 26 13 122 138 8 17 61 179 48 1 1 227 95 120 200 189 160 143 112 243 162 224 2 76 237 220 184 196 ...
output:
YES ? 249 1 87 1 186 2 163 2 66 2 97 2 14 2 117 2 104 2 35 2 195 2 226 2 86 2 98 2 223 2 107 2 170 2 52 2 58 2 133 2 29 2 148 2 168 2 89 2 225 2 153 2 134 2 99 2 33 2 114 2 100 2 146 2 116 2 234 3 65 3 31 3 197 3 68 3 164 3 121 3 219 3 213 3 101 3 169 3 205 3 208 3 127 3 126 3 96 3 74 3 72 3 154 3 5...
result:
ok OK 249 numbers
Test #35:
score: 0
Accepted
time: 2ms
memory: 3748kb
input:
250 10 86 47 95 173 115 17 249 55 148 48 220 214 222 231 24 91 137 151 91 26 182 57 212 109 139 163 13 233 122 113 112 76 47 42 86 110 95 216 45 79 105 206 104 167 164 198 214 150 163 227 138 215 72 41 128 5 129 169 81 100 88 83 161 100 10 233 51 161 219 34 23 127 225 135 66 232 153 240 116 62 100 1...
output:
YES ? 249 1 30 1 196 1 215 2 101 2 105 2 169 2 136 2 195 2 137 2 203 2 22 2 208 2 80 2 65 2 46 2 51 2 166 2 226 2 87 2 181 2 6 2 200 2 182 2 154 2 70 2 4 2 106 2 191 2 150 2 43 2 86 2 228 2 126 2 178 2 49 2 227 2 144 2 121 2 44 2 85 2 183 2 143 2 229 2 118 2 159 2 109 2 242 2 68 2 82 3 40 3 130 3 17...
result:
ok OK 249 numbers
Test #36:
score: 0
Accepted
time: 2ms
memory: 3932kb
input:
250 13 208 74 120 179 20 193 64 225 57 127 94 32 202 41 45 233 179 10 193 12 63 9 39 34 127 72 197 188 57 196 188 70 88 154 53 104 195 119 19 104 81 159 118 222 100 21 229 30 169 216 77 221 1 125 104 204 179 73 196 204 49 168 221 75 121 125 83 17 212 180 115 131 3 162 22 132 109 210 223 110 2 110 37...
output:
NO
result:
ok Correct
Test #37:
score: 0
Accepted
time: 2ms
memory: 3576kb
input:
250 17 51 180 173 176 188 108 209 86 171 71 115 126 41 42 39 176 102 108 52 81 8 249 71 107 91 35 200 59 151 206 9 146 172 19 214 160 204 174 249 152 131 226 146 106 149 223 234 249 201 33 94 123 183 184 11 71 93 240 80 221 157 182 245 151 183 83 95 248 25 138 227 78 158 33 190 175 225 120 74 194 70...
output:
NO
result:
ok Correct
Test #38:
score: 0
Accepted
time: 1ms
memory: 3712kb
input:
250 2 164 88 233 242 80 107 98 216 59 13 155 210 145 55 137 82 213 150 182 81 211 39 235 124 32 121 181 44 167 25 102 138 19 248 122 8 146 115 44 138 221 77 2 50 246 165 78 183 216 10 4 53 183 243 76 159 5 26 243 67 100 11 37 203 68 73 194 99 230 172 243 58 174 92 168 61 117 245 212 195 51 187 238 1...
output:
YES ? 249 1 240 1 171 2 83 2 52 3 210 3 114 4 229 4 85 5 9 5 58 5 29 6 111 6 65 7 184 7 52 8 38 8 163 8 226 8 82 8 198 8 14 9 150 10 98 10 224 11 212 11 197 12 40 12 126 13 166 13 152 13 187 13 161 13 39 13 107 14 198 15 35 15 97 16 207 16 136 17 117 17 143 18 102 18 44 18 122 18 171 18 35 18 125 19...
result:
ok OK 249 numbers
Test #39:
score: 0
Accepted
time: 1ms
memory: 3860kb
input:
250 3 200 191 22 143 12 135 200 245 216 141 192 87 140 234 38 249 131 242 185 43 64 138 57 84 75 135 80 27 223 249 232 61 20 166 164 145 42 72 135 81 142 45 198 167 250 117 66 249 83 199 136 50 173 128 88 151 106 181 81 140 206 72 96 95 239 24 132 153 58 71 43 238 13 75 194 114 8 92 53 236 138 60 15...
output:
NO
result:
ok Correct
Test #40:
score: 0
Accepted
time: 1ms
memory: 3716kb
input:
249 4 189 116 5 74 164 98 154 163 230 87 231 2 129 50 23 226 87 215 64 16 105 92 115 10 89 167 167 58 236 12 127 104 220 204 41 134 3 191 187 219 131 120 202 246 241 116 205 206 83 224 43 245 101 180 137 122 125 174 201 67 188 169 42 159 237 240 11 242 218 13 131 119 153 211 177 235 72 11 217 114 10...
output:
YES ? 248 1 143 1 97 1 202 1 224 1 227 1 98 1 238 1 5 2 131 2 37 2 28 2 8 3 19 3 38 3 5 3 18 4 5 4 16 4 172 4 223 5 62 5 172 5 30 5 181 5 84 5 110 5 166 5 174 5 121 5 24 5 136 5 119 5 195 5 39 5 245 5 227 5 141 6 143 6 247 6 27 6 35 7 189 7 207 7 167 7 49 8 74 8 105 8 69 8 86 8 131 8 53 9 74 9 125 9...
result:
ok OK 248 numbers
Test #41:
score: 0
Accepted
time: 1ms
memory: 3712kb
input:
250 5 77 22 192 158 218 18 232 55 56 137 64 214 245 178 154 68 93 27 174 26 5 75 108 185 67 76 136 114 183 224 177 98 61 132 73 54 97 77 31 173 214 221 162 91 171 38 212 151 193 77 33 160 133 137 66 70 24 147 209 136 116 250 83 28 39 235 240 138 181 149 24 138 94 9 100 247 64 148 189 17 146 106 190 ...
output:
YES ? 249 1 197 1 14 1 249 1 155 1 55 1 64 1 133 1 116 1 220 1 89 1 77 1 123 1 147 1 138 1 136 1 154 2 189 2 162 2 136 2 32 3 147 3 235 3 95 3 57 3 122 3 243 3 203 3 76 3 108 3 200 3 164 4 245 4 37 4 235 4 155 5 106 5 208 5 112 5 114 5 171 5 131 5 215 5 62 6 123 6 143 7 41 7 78 7 82 7 109 7 178 7 11...
result:
ok OK 249 numbers
Test #42:
score: 0
Accepted
time: 3ms
memory: 3708kb
input:
250 9 9 69 15 44 235 13 158 120 41 138 129 99 60 177 19 192 36 131 188 76 238 208 219 203 187 230 45 24 33 142 125 80 224 66 230 125 51 169 29 116 162 209 76 204 210 149 206 164 149 13 72 95 129 228 130 67 13 48 175 223 209 239 189 161 191 64 86 36 248 43 180 217 76 91 205 92 220 127 85 226 132 80 1...
output:
YES ? 249 1 107 2 97 2 237 2 102 2 164 2 173 2 223 2 123 2 53 2 205 2 220 2 138 2 128 2 172 2 59 3 10 3 234 3 56 3 46 3 188 3 91 3 27 3 82 3 153 3 152 3 195 3 133 3 189 3 134 3 193 3 211 3 145 3 14 3 200 3 222 3 54 3 218 3 207 3 11 3 147 3 225 3 232 3 227 3 31 3 65 3 62 3 78 3 241 3 79 3 115 3 165 3...
result:
ok OK 249 numbers
Test #43:
score: 0
Accepted
time: 1ms
memory: 3940kb
input:
249 1 44 1 65 1 216 1 223 1 218 1 1 190 214 1 1 231 1 197 1 194 1 46 1 77 142 1 165 1 1 89 209 1 243 1 29 1 1 39 59 1 1 176 1 153 211 1 1 6 195 1 246 1 1 206 1 76 80 1 1 70 130 1 199 1 1 174 226 1 8 1 1 217 1 240 141 1 219 1 1 212 53 1 95 1 1 140 64 1 1 10 1 4 1 66 156 1 1 102 1 126 1 215 1 151 1 13...
output:
YES ? 248 1 44 1 65 1 216 1 223 1 218 1 190 1 214 1 231 1 197 1 194 1 46 1 77 1 142 1 165 1 89 1 209 1 243 1 29 1 39 1 59 1 176 1 153 1 211 1 6 1 195 1 246 1 206 1 76 1 80 1 70 1 130 1 199 1 174 1 226 1 8 1 217 1 240 1 141 1 219 1 212 1 53 1 95 1 140 1 64 1 10 1 4 1 66 1 156 1 102 1 126 1 215 1 151 ...
result:
ok OK 248 numbers
Test #44:
score: 0
Accepted
time: 32ms
memory: 3940kb
input:
249 2 1 211 1 150 24 1 40 1 1 50 1 72 1 230 128 1 1 177 129 1 246 1 1 92 201 1 193 1 1 241 1 54 56 1 1 86 25 1 111 1 1 23 57 1 239 1 190 1 46 1 1 101 1 229 19 1 73 1 1 113 1 90 31 1 136 1 160 1 1 49 187 1 1 228 125 1 1 196 1 207 1 175 1 199 219 1 1 178 1 43 1 45 1 242 33 1 44 1 1 61 1 195 154 1 13 1...
output:
NO
result:
ok Correct
Test #45:
score: 0
Accepted
time: 1ms
memory: 3896kb
input:
250 3 238 1 1 7 248 1 1 217 231 1 1 137 1 110 1 70 136 1 10 1 1 161 175 1 173 1 87 1 1 60 53 1 171 1 94 1 1 169 112 1 1 225 109 1 1 159 17 1 1 117 1 18 1 130 34 1 1 147 1 145 64 1 54 1 1 140 167 1 1 245 113 1 1 160 1 75 1 67 76 1 202 1 148 1 176 1 23 1 1 236 19 1 1 2 116 1 1 191 1 100 105 1 1 166 1 ...
output:
NO
result:
ok Correct
Test #46:
score: 0
Accepted
time: 1ms
memory: 3668kb
input:
250 14 1 45 1 133 159 1 1 215 154 1 113 1 1 149 1 68 243 1 211 1 119 1 1 187 131 1 1 151 1 93 106 1 1 84 129 1 173 1 1 161 72 1 1 112 1 158 1 205 1 170 1 36 1 60 1 54 136 1 207 1 1 78 44 1 100 1 57 1 1 231 1 15 124 1 1 116 95 1 66 1 1 166 1 17 1 55 194 1 59 1 147 1 222 1 75 1 1 127 186 1 141 1 1 49 ...
output:
NO
result:
ok Correct
Test #47:
score: 0
Accepted
time: 1ms
memory: 3640kb
input:
250 1 158 199 146 240 65 13 121 108 193 1 1 192 230 1 12 178 159 1 1 237 241 115 227 18 113 1 224 62 167 208 1 4 171 1 135 3 135 234 1 32 196 187 207 95 115 140 73 188 1 211 1 103 1 134 45 224 209 1 141 1 149 1 153 1 100 179 30 1 88 80 238 1 213 175 1 228 1 111 151 189 150 51 139 62 199 66 138 1 25 ...
output:
YES ? 249 1 193 1 192 1 230 1 159 1 237 1 113 1 4 1 171 1 32 1 211 1 103 1 134 1 209 1 141 1 149 1 153 1 30 1 238 1 228 1 111 1 138 1 25 1 49 1 154 1 225 1 198 1 194 1 59 1 29 1 77 1 41 1 197 1 116 1 131 1 117 1 105 1 87 1 91 1 232 1 143 1 157 1 28 1 70 1 60 1 82 1 145 1 16 1 220 1 177 1 133 1 206 1...
result:
ok OK 249 numbers
Test #48:
score: 0
Accepted
time: 5ms
memory: 3940kb
input:
250 2 106 139 47 1 149 1 75 106 19 1 1 114 25 1 150 1 1 226 1 108 18 222 1 207 38 46 1 144 169 41 116 113 107 1 246 231 126 1 1 132 236 1 206 98 210 242 84 24 148 220 242 193 1 152 33 218 117 42 79 1 70 23 1 199 37 1 29 42 1 208 1 77 12 69 223 36 216 233 157 1 246 62 43 86 26 1 102 1 143 163 123 34 ...
output:
YES ? 249 1 116 1 27 2 47 2 149 2 19 2 114 2 25 2 150 2 226 2 108 2 207 2 144 2 107 2 126 2 132 2 236 2 152 2 79 2 199 2 37 2 208 2 77 2 157 2 26 2 102 2 244 2 20 2 103 2 230 2 209 2 248 2 197 2 130 2 141 2 88 2 181 2 99 2 129 2 224 2 237 2 124 2 202 2 137 2 135 2 159 2 133 2 228 2 204 2 175 2 13 2 ...
result:
ok OK 249 numbers
Test #49:
score: 0
Accepted
time: 1ms
memory: 3936kb
input:
250 3 244 120 232 1 151 1 99 1 142 1 1 108 1 83 136 191 217 125 42 1 1 214 137 1 1 122 78 1 112 209 1 45 56 21 190 1 105 247 7 1 197 1 85 116 1 131 52 239 154 179 52 65 1 162 152 112 204 91 1 64 87 165 215 250 91 104 208 126 1 55 198 44 1 121 248 1 191 219 4 101 5 237 157 1 205 3 123 156 173 1 36 1 ...
output:
NO
result:
ok Correct
Test #50:
score: 0
Accepted
time: 0ms
memory: 3908kb
input:
250 4 4 1 11 1 153 1 74 235 97 129 1 188 55 1 222 223 231 48 1 88 118 16 1 218 132 1 117 1 209 1 1 192 25 42 238 1 1 203 227 182 34 1 27 76 1 35 1 166 1 212 27 115 1 119 41 223 139 1 1 32 111 227 215 127 1 221 73 182 16 110 246 243 1 90 1 159 1 185 62 40 89 30 52 1 67 1 81 204 1 237 122 31 1 125 223...
output:
YES ? 249 1 21 1 158 2 84 2 29 2 164 3 84 4 84 5 84 6 84 7 84 8 65 8 17 8 168 9 62 9 175 10 33 10 231 10 220 10 168 11 84 12 84 13 84 14 70 14 48 14 137 15 84 16 194 16 76 16 115 16 97 17 65 17 53 18 84 19 217 19 224 20 84 21 80 21 114 21 46 22 160 22 110 22 126 23 146 23 143 24 73 24 74 25 191 25 4...
result:
ok OK 249 numbers
Test #51:
score: 0
Accepted
time: 0ms
memory: 3900kb
input:
250 5 21 36 102 5 168 1 189 57 19 1 1 67 1 218 63 174 122 1 1 41 227 224 112 1 1 142 1 20 1 198 61 6 46 28 233 1 84 213 1 106 17 133 228 1 92 219 1 78 148 8 211 1 53 188 186 23 47 177 21 11 59 244 1 175 72 1 1 208 138 1 1 195 48 84 89 79 1 121 190 166 241 227 225 1 33 210 55 1 1 87 230 1 8 68 95 1 2...
output:
YES ? 249 1 23 1 85 2 129 2 186 2 114 3 129 4 115 4 166 4 120 5 241 5 136 5 249 5 65 6 247 6 154 6 54 7 84 7 203 7 182 7 40 7 220 8 213 8 163 8 15 9 148 9 125 9 157 10 206 10 152 10 108 10 79 11 50 11 65 11 216 12 129 13 129 14 129 15 28 15 26 15 217 16 129 17 59 17 200 17 243 17 165 18 129 19 129 2...
result:
ok OK 249 numbers
Test #52:
score: 0
Accepted
time: 0ms
memory: 3876kb
input:
250 6 131 1 215 186 66 130 24 1 187 57 84 88 232 1 98 195 1 13 104 64 216 250 180 238 71 76 171 1 53 1 102 41 221 1 112 19 1 30 1 148 39 1 1 38 209 1 22 118 1 198 152 1 33 1 21 5 62 172 1 127 68 183 1 80 1 50 235 142 64 66 48 79 79 8 98 224 231 174 140 1 144 1 166 135 1 242 104 42 239 123 134 1 110 ...
output:
YES ? 249 1 9 1 28 2 57 2 25 2 153 2 163 3 57 3 51 4 57 5 102 5 239 5 61 6 118 6 185 6 233 6 74 7 23 7 104 8 19 8 130 9 166 9 231 9 245 9 172 10 230 10 83 10 105 10 132 10 71 11 230 11 225 11 235 12 19 13 57 14 57 15 57 16 57 17 57 18 130 18 161 18 179 19 42 19 87 19 182 20 250 20 126 20 104 21 225 ...
result:
ok OK 249 numbers
Test #53:
score: 0
Accepted
time: 1ms
memory: 3704kb
input:
250 7 151 72 1 237 1 107 1 34 208 239 229 76 201 110 170 226 1 4 212 167 224 103 1 89 112 161 21 1 106 139 1 27 205 1 236 1 1 240 1 99 36 1 225 155 200 103 66 112 169 6 155 219 135 102 132 212 1 130 1 160 247 191 224 125 83 172 127 151 184 64 222 102 30 245 40 1 49 175 1 133 25 247 1 43 231 1 33 208...
output:
NO
result:
ok Correct
Test #54:
score: 0
Accepted
time: 2ms
memory: 3648kb
input:
250 12 142 1 16 231 1 69 121 1 11 195 77 1 62 225 84 183 71 169 120 1 134 1 145 1 1 151 66 214 1 199 141 88 1 234 1 230 1 58 215 195 14 22 104 72 231 53 6 150 243 1 189 102 1 126 1 55 109 217 125 187 204 7 25 139 39 1 1 196 1 207 1 57 1 117 1 216 51 185 132 1 98 12 241 88 1 152 87 23 213 1 176 23 13...
output:
YES ? 249 1 125 1 60 2 204 2 147 2 32 3 204 4 158 4 242 4 208 4 95 4 11 5 204 6 104 6 208 6 174 7 109 7 170 8 204 9 36 9 180 9 42 10 204 11 67 12 22 12 122 12 118 13 204 14 203 14 59 14 33 15 204 16 28 16 106 16 232 16 169 17 231 17 150 17 189 18 166 18 92 18 181 19 195 19 82 19 241 20 204 21 204 22...
result:
ok OK 249 numbers
Test #55:
score: 0
Accepted
time: 1ms
memory: 3744kb
input:
250 1 158 85 207 241 129 189 157 42 28 165 228 130 130 186 241 55 129 21 100 241 151 217 202 20 94 48 227 241 39 91 241 219 241 238 188 151 162 11 113 189 241 31 193 241 241 139 181 241 80 5 28 161 190 241 204 106 166 241 240 241 241 101 241 43 87 241 241 61 214 241 243 241 194 241 218 241 99 63 88 ...
output:
YES ? 249 1 44 2 161 2 41 3 93 3 9 3 182 4 241 5 80 5 95 6 241 7 241 8 186 8 188 10 241 11 162 11 113 11 156 11 116 12 161 12 73 12 44 13 30 14 241 15 174 15 63 16 116 17 82 17 121 18 241 19 173 19 149 19 30 20 202 20 123 20 29 21 129 21 37 22 241 23 241 24 241 25 241 26 241 27 241 28 165 28 161 29 ...
result:
ok OK 249 numbers
Test #56:
score: 0
Accepted
time: 8ms
memory: 3940kb
input:
250 2 236 120 74 179 19 231 89 80 22 50 200 147 40 17 66 147 179 150 147 198 147 233 141 147 147 139 213 147 147 216 147 13 74 229 183 36 147 228 49 153 147 72 29 248 68 241 191 147 52 28 147 8 147 172 68 17 59 52 147 111 148 240 120 21 167 47 147 92 147 116 232 147 147 69 80 51 154 147 147 199 169 ...
output:
YES ? 249 1 120 1 58 2 51 2 47 3 171 3 19 4 65 5 200 5 66 5 198 5 233 5 141 5 139 5 213 5 216 5 13 5 228 5 72 5 191 5 8 5 172 5 111 5 92 5 116 5 232 5 69 5 154 5 199 5 88 5 37 5 184 5 162 5 56 5 194 5 161 5 55 5 24 5 125 5 104 5 225 5 32 5 53 5 218 5 157 5 18 5 145 5 247 5 94 5 93 5 87 5 223 5 110 5...
result:
ok OK 249 numbers
Test #57:
score: 0
Accepted
time: 1ms
memory: 3696kb
input:
250 3 140 111 43 218 140 106 36 192 77 90 178 140 206 198 140 119 140 35 140 234 68 45 52 37 140 211 143 140 31 163 140 185 173 237 148 13 110 208 144 140 196 69 184 166 93 29 81 175 140 117 140 9 140 182 140 3 140 60 238 79 25 163 2 140 140 138 140 99 140 170 135 140 223 107 140 195 140 152 140 53 ...
output:
NO
result:
ok Correct
Test #58:
score: 0
Accepted
time: 2ms
memory: 3712kb
input:
250 4 206 83 239 119 157 18 69 83 83 225 83 223 209 26 142 83 83 229 2 224 83 177 77 221 39 83 104 218 83 35 210 92 245 73 126 192 107 29 90 83 211 241 143 83 234 172 83 52 54 68 200 83 195 171 17 18 220 175 82 83 9 45 83 235 83 246 83 81 74 83 198 83 159 92 250 209 75 83 239 115 83 64 174 85 96 83 ...
output:
YES ? 249 1 33 2 126 2 169 2 172 3 245 4 201 4 239 4 181 4 234 5 172 5 104 5 197 6 245 7 151 7 178 7 26 7 250 8 245 9 155 9 115 9 72 10 157 10 17 10 241 10 135 11 245 12 245 13 80 13 34 14 245 15 245 16 63 16 33 16 236 16 80 17 195 17 134 17 213 18 126 18 51 18 237 18 183 19 242 19 247 19 100 20 174...
result:
ok OK 249 numbers
Test #59:
score: 0
Accepted
time: 1ms
memory: 3700kb
input:
250 7 117 79 136 199 79 97 119 75 79 124 39 79 79 146 154 12 169 148 79 90 82 79 92 83 176 44 116 242 127 79 62 73 217 79 171 10 13 99 79 87 103 170 79 173 79 201 10 241 79 100 73 113 65 45 92 48 162 60 164 159 79 247 79 214 79 198 79 122 79 205 21 164 194 103 63 142 199 85 54 136 79 244 131 79 79 2...
output:
NO
result:
ok Correct
Test #60:
score: 0
Accepted
time: 2ms
memory: 3744kb
input:
250 9 3 240 59 55 234 233 234 167 90 234 234 84 234 68 176 9 147 140 27 180 234 206 101 138 234 75 79 234 133 234 210 234 196 226 214 234 85 158 128 23 14 234 170 207 6 234 123 245 234 70 179 234 215 201 234 194 234 2 177 234 67 234 48 57 208 234 62 234 193 149 99 134 37 64 39 78 164 50 175 234 126 ...
output:
YES ? 249 1 200 2 35 2 122 3 4 3 183 3 232 4 96 4 215 5 46 6 46 7 205 7 19 7 87 7 114 7 230 8 46 9 99 9 57 9 231 9 182 10 46 11 158 11 168 11 170 11 131 12 196 12 55 12 138 12 74 13 46 14 46 15 46 16 146 16 138 16 57 17 46 18 46 19 140 19 59 19 153 20 39 21 201 21 209 22 125 22 99 23 235 23 221 23 1...
result:
ok OK 249 numbers
Test #61:
score: 0
Accepted
time: 1ms
memory: 3884kb
input:
250 18 168 116 197 247 78 1 225 1 81 26 144 105 196 70 109 1 1 19 221 61 66 62 49 232 171 4 208 126 34 20 23 165 1 20 1 28 91 1 1 133 1 222 198 37 89 139 155 1 45 1 1 183 208 1 204 1 1 77 211 190 169 238 1 147 137 113 1 158 140 6 71 102 135 1 25 184 161 1 1 2 246 14 230 1 217 1 1 9 206 80 1 179 189 ...
output:
NO
result:
ok Correct
Test #62:
score: 0
Accepted
time: 9ms
memory: 3580kb
input:
250 2 39 65 192 1 125 119 1 156 57 1 136 139 1 122 173 221 109 113 76 123 96 20 1 8 199 74 1 148 238 134 12 133 1 49 102 213 70 43 28 87 128 126 130 62 87 1 89 14 59 233 33 1 6 245 219 85 250 22 1 56 35 225 91 111 1 5 244 1 1 4 48 1 104 1 164 1 30 1 1 157 3 164 29 122 81 1 55 58 90 220 178 1 77 156 ...
output:
NO
result:
ok Correct
Test #63:
score: 0
Accepted
time: 16ms
memory: 3672kb
input:
250 3 1 62 1 5 1 152 217 126 203 1 14 203 232 47 190 82 1 121 162 1 43 171 242 1 1 237 1 49 202 1 1 240 138 1 97 1 1 21 57 195 58 127 3 84 229 233 29 1 1 58 48 1 25 235 40 49 197 164 131 46 1 176 15 1 156 177 1 106 198 1 148 121 194 60 195 1 1 174 32 1 117 1 183 142 60 1 207 135 76 1 167 223 179 1 1...
output:
NO
result:
ok Correct
Test #64:
score: 0
Accepted
time: 16ms
memory: 3632kb
input:
249 3 1 53 137 92 145 1 161 76 196 41 103 25 220 1 1 179 1 201 1 5 96 112 233 1 135 1 32 29 37 209 215 126 27 158 133 11 46 134 45 168 22 228 222 195 13 1 1 22 244 1 95 61 75 58 129 152 1 107 25 1 72 214 231 1 185 1 20 1 165 1 146 1 186 1 139 4 35 77 1 157 145 8 1 48 30 191 210 240 175 1 6 164 148 1...
output:
NO
result:
ok Correct
Test #65:
score: 0
Accepted
time: 6ms
memory: 3900kb
input:
250 4 103 170 171 1 84 82 1 156 16 87 218 1 195 147 98 77 56 4 225 144 96 204 64 17 1 27 1 234 221 1 119 39 76 1 1 110 37 23 1 210 1 44 138 197 1 75 158 1 1 229 81 216 62 124 31 128 65 85 223 114 248 1 1 209 1 117 132 215 162 1 188 26 83 1 192 209 157 1 246 203 1 147 79 1 1 123 232 1 49 1 49 19 1 39...
output:
NO
result:
ok Correct
Test #66:
score: 0
Accepted
time: 2ms
memory: 3728kb
input:
250 5 1 57 239 225 229 1 219 57 141 1 114 42 138 222 1 220 130 4 187 85 2 120 1 190 249 136 208 197 122 1 177 1 21 1 180 140 244 1 235 238 154 237 248 31 103 66 116 1 1 60 97 61 156 92 241 1 203 1 56 1 1 20 86 1 14 16 149 113 70 5 223 1 119 1 207 1 1 185 1 135 43 11 170 98 222 1 167 87 129 1 250 49 ...
output:
NO
result:
ok Correct
Test #67:
score: 0
Accepted
time: 1ms
memory: 3596kb
input:
249 13 76 102 75 100 44 1 196 1 79 231 1 78 180 1 179 19 233 1 203 117 248 1 176 74 1 109 13 1 1 59 152 219 1 56 139 124 10 167 66 81 1 178 1 168 228 205 63 1 217 127 126 211 12 224 1 112 97 209 1 72 119 1 54 70 141 57 83 1 1 212 73 172 247 149 215 171 71 1 1 131 11 94 1 231 230 50 88 72 203 1 95 14...
output:
NO
result:
ok Correct
Test #68:
score: 0
Accepted
time: 17ms
memory: 3700kb
input:
250 3 240 175 1 54 56 175 235 175 116 175 1 154 189 1 31 175 175 222 175 173 1 221 52 175 44 175 16 1 1 185 1 40 237 1 144 175 175 169 175 35 124 1 8 1 175 9 1 246 145 1 103 1 175 77 175 3 1 208 131 175 1 239 166 1 1 153 10 1 248 175 1 85 175 26 175 25 1 160 175 182 175 151 115 1 178 175 1 157 175 7...
output:
NO
result:
ok Correct
Test #69:
score: 0
Accepted
time: 1ms
memory: 3628kb
input:
250 5 115 100 100 138 100 8 1 7 85 100 29 1 20 1 1 147 1 135 100 5 100 106 1 104 100 107 136 100 100 82 100 213 237 1 121 1 100 164 100 129 100 27 1 21 100 92 100 49 1 156 37 1 1 175 100 1 165 100 100 47 100 40 100 214 100 202 139 100 100 192 1 109 100 183 24 1 1 26 153 100 159 100 100 64 34 1 181 1...
output:
NO
result:
ok Correct
Test #70:
score: 0
Accepted
time: 17ms
memory: 3860kb
input:
250 2 195 1 197 103 96 197 49 1 197 165 1 189 217 197 1 248 41 197 197 123 193 197 197 108 197 8 139 146 31 197 1 88 1 232 67 197 90 1 1 27 233 1 1 60 141 1 118 197 1 229 197 236 230 197 56 197 114 1 197 2 79 1 145 197 184 1 1 62 58 197 1 156 197 192 1 169 5 197 197 57 30 197 180 197 131 1 17 1 161 ...
output:
YES ? 249 1 103 1 96 1 165 1 217 1 41 1 123 1 193 1 108 1 8 1 31 1 67 1 118 1 236 1 230 1 56 1 2 1 145 1 58 1 192 1 5 1 57 1 30 1 180 1 161 1 182 1 21 1 126 1 188 1 59 1 98 1 3 1 6 1 222 1 138 1 225 1 105 1 89 1 46 1 216 1 167 1 157 1 7 1 179 1 18 1 19 1 20 1 239 1 33 1 218 1 211 1 223 1 194 1 137 1...
result:
ok OK 249 numbers
Test #71:
score: 0
Accepted
time: 1ms
memory: 3904kb
input:
250 1 65 237 1 160 110 65 65 18 65 22 232 1 1 212 1 84 63 65 65 152 108 65 1 24 128 65 65 33 20 65 1 195 65 187 1 16 65 62 65 183 144 1 186 65 1 233 1 91 230 1 65 46 1 17 65 198 1 34 1 141 135 1 1 60 56 1 1 134 65 143 182 65 65 199 80 1 65 58 1 165 65 3 1 146 27 1 1 95 86 1 1 8 1 130 1 209 65 164 21...
output:
YES ? 249 1 160 1 232 1 212 1 84 1 24 1 195 1 16 1 144 1 233 1 91 1 230 1 17 1 34 1 141 1 135 1 60 1 56 1 134 1 80 1 165 1 146 1 27 1 95 1 86 1 8 1 130 1 209 1 21 1 170 1 244 1 148 1 31 1 131 1 157 1 201 1 154 1 121 1 142 1 175 1 26 1 83 1 59 1 28 1 4 1 106 1 70 1 92 1 240 1 169 1 65 1 124 1 210 1 6...
result:
ok OK 249 numbers
Test #72:
score: 0
Accepted
time: 1ms
memory: 3600kb
input:
250 12 1 125 1 124 201 91 73 1 185 201 216 1 1 15 201 77 47 201 101 201 201 186 58 201 1 164 227 1 1 201 201 83 14 1 201 115 201 24 1 80 116 1 228 201 62 201 85 1 201 88 174 1 1 75 1 169 162 201 201 22 1 171 1 203 1 81 220 1 37 201 250 201 1 117 97 1 1 128 201 32 38 201 197 1 201 192 214 1 23 201 2 ...
output:
NO
result:
ok Correct
Test #73:
score: 0
Accepted
time: 2ms
memory: 3600kb
input:
250 13 128 113 235 113 34 1 113 200 151 113 116 113 153 113 1 90 13 1 250 113 113 29 33 1 204 113 185 1 1 81 176 1 25 113 8 113 248 113 113 74 134 1 223 1 1 187 1 142 163 113 193 113 177 113 113 26 54 1 172 1 113 84 249 113 1 67 113 212 1 57 24 113 1 32 1 203 144 113 49 113 45 113 232 1 1 159 113 23...
output:
NO
result:
ok Correct
Test #74:
score: 0
Accepted
time: 1ms
memory: 3648kb
input:
249 8 87 226 248 150 6 105 171 210 150 137 94 107 191 189 55 47 167 80 220 114 133 34 3 54 126 160 144 120 213 6 121 203 49 134 64 124 168 231 102 30 150 2 65 165 175 103 74 207 177 171 214 242 219 247 23 240 208 230 9 199 36 33 67 6 214 243 188 24 79 155 82 223 125 218 190 117 95 19 11 32 74 65 53 ...
output:
YES ? 248 1 191 2 21 2 123 2 210 3 19 3 12 3 223 4 122 4 189 4 230 5 121 5 144 5 139 6 58 6 120 6 91 7 84 7 23 7 190 8 113 8 17 8 92 8 109 9 156 9 160 10 160 10 74 11 187 12 181 12 115 12 93 12 148 13 198 13 112 14 198 15 126 15 185 15 65 16 44 16 179 16 24 18 143 18 194 18 207 19 134 20 154 20 180 ...
result:
ok OK 248 numbers
Test #75:
score: 0
Accepted
time: 2ms
memory: 3700kb
input:
248 8 212 242 57 161 163 33 52 10 37 165 111 125 203 53 74 122 141 188 8 137 195 241 58 188 213 31 121 75 196 227 179 173 114 3 19 13 13 246 30 55 93 118 11 246 97 108 147 240 224 143 30 79 56 133 57 215 241 157 167 5 43 140 188 86 116 113 224 112 66 92 105 7 67 154 174 217 96 44 227 173 38 39 54 12...
output:
YES ? 247 1 107 1 108 2 226 2 69 2 14 2 24 2 70 2 222 3 29 3 244 3 219 3 165 4 219 4 122 4 145 4 132 4 192 4 7 5 90 5 95 5 173 6 148 6 123 6 215 6 195 7 84 7 29 7 106 8 153 8 101 8 186 8 63 9 38 9 139 10 57 10 12 11 230 11 44 12 239 12 139 12 182 12 140 13 230 14 226 14 227 14 233 15 67 15 97 15 64 ...
result:
ok OK 247 numbers
Test #76:
score: 0
Accepted
time: 0ms
memory: 3644kb
input:
247 8 216 234 139 136 154 92 193 198 121 70 214 149 211 71 185 134 219 56 106 115 137 128 191 5 91 169 6 215 225 30 167 53 170 25 60 158 65 33 79 67 192 168 31 25 57 80 185 123 10 20 10 132 68 105 168 170 184 47 240 124 63 215 196 197 77 27 176 162 235 150 71 21 69 39 59 95 122 36 153 166 208 159 56...
output:
YES ? 246 1 82 1 167 2 82 3 234 3 152 3 37 3 246 4 136 4 51 4 148 4 226 4 93 5 166 5 54 5 116 5 102 5 104 5 132 5 40 6 222 6 123 6 192 6 227 7 120 7 229 7 176 7 65 7 223 7 180 7 160 8 93 9 215 9 168 9 210 9 206 9 46 9 98 9 38 10 84 10 226 10 125 10 92 11 146 11 58 11 66 11 55 11 126 11 244 12 82 13 ...
result:
ok OK 246 numbers
Test #77:
score: 0
Accepted
time: 2ms
memory: 3944kb
input:
246 8 40 30 92 224 166 148 26 183 64 62 183 178 191 225 112 150 164 68 188 226 20 223 179 38 143 160 57 208 153 232 154 163 63 164 110 176 190 61 180 25 32 42 92 148 226 89 228 104 54 64 44 197 48 149 17 169 209 169 21 222 130 74 149 214 242 115 183 242 177 153 45 128 12 126 15 159 206 203 45 225 67...
output:
YES ? 245 1 167 1 104 2 30 2 20 2 200 2 134 2 7 3 61 3 126 3 239 4 68 4 136 4 141 4 34 4 125 4 83 5 117 6 170 6 200 6 108 6 155 7 170 7 191 7 207 7 41 7 146 7 78 8 212 8 231 8 58 8 133 8 118 8 63 8 13 9 44 9 110 9 147 9 210 10 224 10 52 10 187 10 51 10 169 10 80 11 181 11 235 11 208 12 183 12 229 12...
result:
ok OK 245 numbers
Test #78:
score: 0
Accepted
time: 2ms
memory: 3868kb
input:
246 8 39 213 89 206 191 45 244 233 234 69 27 121 167 67 42 15 40 10 15 1 74 16 72 36 162 44 201 1 226 17 246 93 67 117 29 144 211 197 141 128 169 142 17 71 213 13 147 92 160 106 21 242 84 101 35 68 58 49 115 27 100 170 17 174 97 164 125 134 190 46 231 118 168 245 147 237 111 153 141 133 23 82 177 88...
output:
YES ? 245 1 66 1 224 1 34 1 118 1 54 2 149 2 194 2 126 2 112 3 187 3 172 3 81 3 70 3 16 4 134 4 226 4 174 4 229 5 76 5 168 5 135 6 17 6 143 6 103 7 171 7 141 7 51 7 63 8 89 8 136 8 115 8 10 9 45 9 116 9 59 9 71 9 26 10 121 10 16 10 200 11 61 11 97 11 121 12 173 12 224 12 164 12 36 13 93 13 22 14 88 ...
result:
ok OK 245 numbers
Test #79:
score: 0
Accepted
time: 2ms
memory: 3592kb
input:
245 8 123 232 224 147 22 51 191 158 176 147 125 137 235 245 17 20 224 84 135 100 188 21 86 71 162 217 63 153 144 245 197 192 194 45 22 148 214 116 36 43 72 156 99 58 187 217 128 94 190 14 130 31 112 103 102 140 177 82 177 123 235 39 62 160 157 99 233 215 82 65 117 54 33 212 190 234 218 61 42 214 132...
output:
YES ? 244 1 175 1 59 1 168 1 205 2 65 2 161 2 118 2 148 2 186 3 38 3 46 3 166 4 51 4 38 4 217 4 183 4 160 4 164 4 172 4 108 4 92 5 236 5 106 5 199 5 131 5 126 6 241 6 233 6 10 6 226 6 127 6 11 6 126 7 162 7 212 8 135 8 149 9 100 9 154 9 29 9 185 9 199 10 211 10 111 11 236 12 110 12 178 12 20 12 78 1...
result:
ok OK 244 numbers
Test #80:
score: 0
Accepted
time: 2ms
memory: 3708kb
input:
244 8 158 171 53 167 60 210 73 155 118 221 189 107 198 162 32 197 98 71 198 138 52 146 78 39 218 53 164 87 220 102 125 35 118 236 28 148 187 71 119 81 155 200 98 152 27 7 167 59 116 197 92 114 181 172 55 117 231 172 175 202 158 177 131 42 220 115 186 238 62 93 28 91 16 104 239 144 143 58 147 56 99 1...
output:
YES ? 243 1 197 1 226 1 191 1 42 1 50 2 21 2 163 2 82 2 102 3 184 3 104 3 195 3 139 4 172 4 190 5 67 5 39 6 236 6 214 6 128 6 57 7 152 7 18 7 92 7 155 7 43 8 116 8 19 8 16 8 51 9 146 9 139 9 113 9 190 9 173 9 109 10 239 10 173 11 235 11 135 11 78 11 160 11 149 11 45 11 170 12 242 12 21 12 178 12 176...
result:
ok OK 243 numbers
Test #81:
score: 0
Accepted
time: 2ms
memory: 3588kb
input:
243 8 77 80 57 106 77 163 237 135 92 20 178 17 133 220 159 139 40 216 14 31 104 17 141 215 218 184 5 219 185 27 211 232 212 38 175 6 75 155 76 33 137 105 13 222 149 34 240 42 25 58 188 88 112 205 171 97 127 11 65 124 34 184 54 2 22 49 223 36 18 15 43 6 87 164 146 199 147 8 232 179 63 137 95 189 243 ...
output:
YES ? 242 1 116 1 78 1 68 1 95 1 130 2 25 2 40 2 232 2 76 2 121 2 204 2 130 2 20 3 68 3 73 4 19 4 98 4 222 4 62 4 178 4 104 5 49 5 239 6 72 6 181 6 82 6 96 6 240 7 178 7 128 8 25 8 161 8 132 8 53 8 27 8 200 8 93 8 34 8 55 8 215 9 161 10 228 10 165 10 109 10 158 10 241 10 75 10 226 10 149 10 61 10 23...
result:
ok OK 242 numbers
Test #82:
score: 0
Accepted
time: 2ms
memory: 3712kb
input:
242 8 195 220 167 193 223 242 174 43 95 190 141 115 141 93 76 201 105 151 57 40 159 9 89 97 12 23 18 15 23 157 26 222 52 5 164 239 182 69 186 42 186 158 153 235 242 154 195 234 88 177 116 72 201 60 124 195 142 97 182 162 182 90 60 165 50 135 57 13 176 123 214 183 99 174 12 66 17 43 78 140 149 147 19...
output:
YES ? 241 1 93 1 98 1 21 1 108 1 144 1 191 1 5 2 158 2 121 2 83 2 185 2 203 3 187 3 58 3 176 3 49 3 194 3 24 3 154 3 101 3 159 4 222 4 123 4 27 4 127 4 160 4 84 4 19 4 208 5 229 5 186 5 64 5 214 6 42 6 121 6 103 6 152 7 233 7 105 7 143 7 55 7 193 7 54 7 45 7 89 7 125 7 110 7 72 8 71 8 147 8 206 8 23...
result:
ok OK 241 numbers
Test #83:
score: 0
Accepted
time: 1ms
memory: 3696kb
input:
249 8 158 156 47 211 134 175 239 73 181 1 118 1 219 69 155 162 17 77 82 154 160 94 46 183 59 208 169 237 180 184 236 89 215 144 40 159 136 92 13 127 178 85 91 129 93 187 145 116 80 104 61 95 120 214 146 191 88 51 154 134 116 215 81 50 130 166 228 173 238 90 19 52 230 109 216 29 101 192 109 130 1 116...
output:
YES ? 248 1 190 1 216 1 5 1 117 1 217 2 238 2 75 2 226 2 30 2 105 2 36 3 151 3 63 3 185 3 207 4 161 4 139 4 80 4 246 4 14 4 86 4 135 4 154 4 52 5 82 5 134 5 230 5 131 5 221 5 25 6 19 6 125 6 216 6 101 6 211 6 182 6 32 6 204 7 48 7 192 8 82 8 244 8 113 9 28 9 89 9 241 9 95 9 242 9 245 9 202 9 70 9 92...
result:
ok OK 248 numbers
Test #84:
score: 0
Accepted
time: 1ms
memory: 3936kb
input:
249 3 71 13 81 110 62 185 19 188 126 42 56 209 121 48 231 136 199 47 126 213 92 231 161 160 170 24 40 150 54 119 195 134 158 194 192 107 81 146 237 12 237 48 244 158 119 63 99 166 147 182 144 160 59 228 214 234 181 26 211 90 217 212 241 130 44 192 6 73 37 161 67 113 228 138 3 236 10 118 20 174 206 6...
output:
NO
result:
ok Correct
Test #85:
score: 0
Accepted
time: 1ms
memory: 3860kb
input:
248 3 219 23 241 216 21 94 160 210 193 71 116 151 26 163 123 94 180 28 25 218 27 162 22 211 93 244 46 138 233 68 180 152 17 136 234 113 98 112 122 126 222 132 65 52 69 46 236 4 59 211 81 59 145 29 118 45 53 160 18 48 140 114 121 165 115 77 88 137 51 202 2 196 124 247 209 45 116 125 187 166 218 178 2...
output:
NO
result:
ok Correct
Test #86:
score: 0
Accepted
time: 1ms
memory: 3676kb
input:
247 3 245 216 64 106 90 96 172 54 15 197 98 103 136 159 188 58 227 244 43 146 157 22 204 20 93 47 145 144 97 116 125 72 24 23 41 2 45 53 56 182 110 155 200 224 2 157 247 71 242 163 233 9 6 117 126 25 233 201 161 180 26 104 216 14 59 130 155 5 41 123 43 209 120 91 45 162 219 66 106 120 207 107 184 10...
output:
NO
result:
ok Correct
Test #87:
score: 0
Accepted
time: 1ms
memory: 3688kb
input:
245 3 194 23 96 147 175 174 79 51 145 169 154 184 231 10 32 64 148 176 12 114 52 227 47 238 38 59 228 1 43 113 139 217 94 14 205 87 243 104 240 189 71 232 177 226 60 4 80 211 151 78 75 62 122 123 33 128 170 40 149 58 3 34 108 232 76 183 15 141 222 224 112 33 78 69 159 234 238 34 238 168 31 51 140 10...
output:
NO
result:
ok Correct
Test #88:
score: 0
Accepted
time: 0ms
memory: 3608kb
input:
244 3 199 77 173 110 230 145 116 58 135 13 139 12 36 62 100 206 64 34 243 194 186 225 20 163 72 166 172 181 86 28 119 46 112 9 73 50 126 201 178 55 191 48 59 172 220 173 46 89 161 157 195 24 7 163 174 240 197 215 215 187 8 237 3 2 4 64 114 108 174 113 153 13 186 84 196 18 88 189 121 239 37 57 131 77...
output:
NO
result:
ok Correct
Test #89:
score: 0
Accepted
time: 0ms
memory: 3676kb
input:
249 3 11 107 60 25 243 117 233 183 110 200 18 230 115 247 93 161 221 95 84 4 216 117 207 179 121 125 44 159 186 206 204 181 184 123 223 168 10 112 224 50 173 37 67 69 43 108 19 241 56 157 14 180 6 41 94 179 54 102 42 191 58 128 130 121 149 65 60 186 24 174 109 98 117 145 201 219 28 208 215 81 10 29 ...
output:
NO
result:
ok Correct
Test #90:
score: 0
Accepted
time: 0ms
memory: 3640kb
input:
249 3 66 88 243 32 106 32 10 197 164 238 148 159 74 242 227 41 92 180 121 123 183 210 98 129 52 127 33 162 25 217 116 160 83 186 172 85 160 44 50 6 137 64 89 36 215 207 220 222 128 101 247 79 133 248 151 41 61 154 155 239 107 12 55 218 1 202 236 110 91 177 8 132 33 64 231 158 197 32 211 214 35 21 18...
output:
NO
result:
ok Correct
Test #91:
score: 0
Accepted
time: 1ms
memory: 3644kb
input:
249 3 197 27 127 7 134 206 31 4 139 160 76 38 56 190 148 79 60 202 29 101 169 4 95 184 211 231 10 100 184 202 128 12 155 85 71 128 223 61 84 133 95 87 192 186 112 124 147 227 52 167 29 22 94 166 20 2 133 175 136 30 81 96 196 81 223 168 208 142 55 47 168 179 114 60 134 16 13 200 181 183 173 100 232 1...
output:
NO
result:
ok Correct
Test #92:
score: 0
Accepted
time: 1ms
memory: 3896kb
input:
249 3 67 164 50 60 128 249 211 212 96 26 116 162 146 137 104 188 37 122 16 47 211 112 147 81 197 130 57 161 222 122 233 86 65 49 68 236 235 120 201 50 125 204 146 1 25 57 33 68 156 117 135 193 34 184 115 24 38 29 101 179 133 215 127 177 23 83 240 167 249 85 97 47 122 70 166 152 26 83 155 135 32 155 ...
output:
NO
result:
ok Correct
Test #93:
score: 0
Accepted
time: 1ms
memory: 3864kb
input:
249 3 119 24 236 194 108 133 146 126 169 107 133 221 151 99 94 141 229 173 212 32 39 215 135 66 53 170 82 247 137 135 149 139 11 79 20 127 169 56 128 180 220 115 40 230 199 22 26 67 198 235 227 113 71 50 55 161 114 198 78 11 107 162 16 159 75 120 103 97 243 87 25 139 197 20 1 52 115 201 155 244 188 ...
output:
NO
result:
ok Correct
Test #94:
score: 0
Accepted
time: 1ms
memory: 3652kb
input:
249 3 219 89 241 221 31 26 54 102 88 70 159 42 19 222 238 180 135 160 165 159 10 173 33 19 9 5 249 138 142 123 218 155 89 189 224 110 49 212 236 93 81 193 196 214 209 122 160 86 43 162 98 177 245 71 27 160 95 93 115 130 59 199 186 157 42 242 194 23 47 171 145 59 127 39 216 20 208 200 68 46 186 163 2...
output:
NO
result:
ok Correct
Extra Test:
score: 0
Extra Test Passed