QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#148352 | #2325. Corns | ZrjaK | AC ✓ | 471ms | 3900kb | C++20 | 13.7kb | 2023-08-23 15:52:49 | 2023-08-23 20:21:57 |
Judging History
answer
// #ifdef ONLINE_JUDGE
// #pragma GCC optimize("O3,unroll-loops")
// #pragma GCC target("avx2,bmi,bmi2,lzcnt,popcnt")
// #endif
#include <bits/stdc++.h>
#include <ext/rope>
#include <ext/pb_ds/assoc_container.hpp>
#include <ext/pb_ds/hash_policy.hpp>
#include <ext/pb_ds/tree_policy.hpp>
#include <ext/pb_ds/trie_policy.hpp>
#include <ext/pb_ds/priority_queue.hpp>
using namespace std;
using namespace __gnu_cxx;
using namespace __gnu_pbds;
template <class T> using Tree = tree<T, null_type, less_equal<T>, rb_tree_tag,tree_order_statistics_node_update>;
using Trie = trie<string, null_type, trie_string_access_traits<>, pat_trie_tag, trie_prefix_search_node_update>;
// template <class T> using heapq = __gnu_pbds::priority_queue<T, greater<T>, pairing_heap_tag>;
template <class T> using heapq = std::priority_queue<T, vector<T>, greater<T>>;
using ll = long long;
using u32 = unsigned int;
using u64 = unsigned long long;
using i128 = __int128;
using ld = long double;
using ui = unsigned int;
using ull = unsigned long long;
using pii = pair<int, int>;
using pll = pair<ll, ll>;
using pdd = pair<ld, ld>;
using vi = vector<int>;
using vvi = vector<vector<int>>;
using vll = vector<ll>;
using vvll = vector<vector<ll>>;
using vpii = vector<pii>;
using vpll = vector<pll>;
#define vc vector
#define lb lower_bound
#define ub upper_bound
#define pb push_back
#define pf push_front
#define eb emplace_back
#define fi first
#define se second
#define overload4(_1, _2, _3, _4, name, ...) name
#define overload3(_1, _2, _3, name, ...) name
#define rep1(n) for(int i = 0; i < n; ++i)
#define rep2(i, n) for(int i = 0; i < n; ++i)
#define rep3(i, a, b) for(int i = a; i < b; ++i)
#define rep4(i, a, b, c) for(int i = a; i < b; i += c)
#define rep(...) overload4(__VA_ARGS__, rep4, rep3, rep2, rep1) (__VA_ARGS__)
#define rrep1(n) for(int i = n; i--; )
#define rrep2(i, n) for(int i = n; i--; )
#define rrep3(i, a, b) for(int i = a; i > b; i--)
#define rrep4(i, a, b, c) for(int i = a; i > b; 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 each(...) overload4(__VA_ARGS__, each3, each2, each1) (__VA_ARGS__)
#define FOR1(a) for (ll _ = 0; _ < ll(a); ++_)
#define FOR2(i, a) for (ll i = 0; i < ll(a); ++i)
#define FOR3(i, a, b) for (ll i = a; i < ll(b); ++i)
#define FOR4(i, a, b, c) for (ll i = a; i < ll(b); i += (c))
#define FOR1_R(a) for (ll i = (a)-1; i >= ll(0); --i)
#define FOR2_R(i, a) for (ll i = (a)-1; i >= ll(0); --i)
#define FOR3_R(i, a, b) for (ll i = (b)-1; i >= ll(a); --i)
#define overload4(a, b, c, d, e, ...) e
#define overload3(a, b, c, d, ...) d
#define FOR(...) overload4(__VA_ARGS__, FOR4, FOR3, FOR2, FOR1)(__VA_ARGS__)
#define FOR_R(...) overload3(__VA_ARGS__, FOR3_R, FOR2_R, FOR1_R)(__VA_ARGS__)
#define FOR_subset(t, s) \
for (ll t = (s); t >= 0; t = (t == 0 ? -1 : (t - 1) & (s)))
#define len(x) (int)x.size()
#define elif else if
#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 mst(x, a) memset(x, a, sizeof(x))
#define bitcnt(x) (__builtin_popcountll(x))
#define endl "\n"
#define LB(c, x) distance((c).begin(), lower_bound(all(c), (x)))
#define UB(c, x) distance((c).begin(), upper_bound(all(c), (x)))
#define UNIQUE(x) sort(all(x)), x.erase(unique(all(x)), x.end()), x.shrink_to_fit()
#define SORT(a) sort(all(a))
#define REV(a) reverse(all(a))
int popcnt(int x) { return __builtin_popcount(x); }
int popcnt(u32 x) { return __builtin_popcount(x); }
int popcnt(ll x) { return __builtin_popcountll(x); }
int popcnt(u64 x) { return __builtin_popcountll(x); }
// (0, 1, 2, 3, 4) -> (-1, 0, 1, 1, 2)
int topbit(int x) { return (x == 0 ? -1 : 31 - __builtin_clz(x)); }
int topbit(u32 x) { return (x == 0 ? -1 : 31 - __builtin_clz(x)); }
int topbit(ll x) { return (x == 0 ? -1 : 63 - __builtin_clzll(x)); }
int topbit(u64 x) { return (x == 0 ? -1 : 63 - __builtin_clzll(x)); }
// (0, 1, 2, 3, 4) -> (-1, 0, 1, 0, 2)
int lowbit(int x) { return (x == 0 ? -1 : __builtin_ctz(x)); }
int lowbit(u32 x) { return (x == 0 ? -1 : __builtin_ctz(x)); }
int lowbit(ll x) { return (x == 0 ? -1 : __builtin_ctzll(x)); }
int lowbit(u64 x) { return (x == 0 ? -1 : __builtin_ctzll(x)); }
template<class T> auto max(const T& a){ return *max_element(all(a)); }
template<class T> auto min(const T& a){ return *min_element(all(a)); }
template <typename T, typename U>
T ceil(T x, U y) {
return (x > 0 ? (x + y - 1) / y : x / y);
}
template <typename T, typename U>
T floor(T x, U y) {
return (x > 0 ? x / y : (x - y + 1) / y);
}
template <typename T, typename U>
pair<T, T> divmod(T x, U y) {
T q = floor(x, y);
return {q, x - q * y};
}
template <typename T, typename U>
T SUM(const vector<U> &A) {
T sum = 0;
for (auto &&a: A) sum += a;
return sum;
}
template <typename T, typename U>
vector<T> cumsum(vector<U> &A, int off = 1) {
int N = A.size();
vector<T> B(N + 1);
for (int i = 0; i < N; i++) B[i + 1] = B[i] + A[i];
if (off == 0) B.erase(B.begin());
return B;
}
template <typename F>
ll binary_search(F check, ll ok, ll ng, bool check_ok = true) {
if (check_ok) assert(check(ok));
while (abs(ok - ng) > 1) {
auto x = (ng + ok) / 2;
tie(ok, ng) = (check(x) ? make_pair(x, ng) : make_pair(ok, x));
}
return ok;
}
template <typename F>
double binary_search_real(F check, double ok, double ng, int iter = 100) {
while (iter--) {
double x = (ok + ng) / 2;
tie(ok, ng) = (check(x) ? make_pair(x, ng) : make_pair(ok, x));
}
return (ok + ng) / 2;
}
template <class T, class S> inline bool chmax(T &a, const S &b) {
return (a < b ? a = b, 1 : 0);
}
template <class T, class S> inline bool chmin(T &a, const S &b) {
return (a > b ? a = b, 1 : 0);
}
mt19937 rng( chrono::steady_clock::now().time_since_epoch().count() );
#define Ran(a, b) rng() % ( (b) - (a) + 1 ) + (a)
struct custom_hash {
static uint64_t splitmix64(uint64_t x) {
// http://xorshift.di.unimi.it/splitmix64.c
x += 0x9e3779b97f4a7c15;
x = (x ^ (x >> 30)) * 0xbf58476d1ce4e5b9;
x = (x ^ (x >> 27)) * 0x94d049bb133111eb;
return x ^ (x >> 31);
}
size_t operator()(uint64_t x) const {
static const uint64_t FIXED_RANDOM = chrono::steady_clock::now().time_since_epoch().count();
return splitmix64(x + FIXED_RANDOM);
}
size_t operator()(pair<uint64_t,uint64_t> x) const {
static const uint64_t FIXED_RANDOM = chrono::steady_clock::now().time_since_epoch().count();
return splitmix64(x.first + FIXED_RANDOM) ^ (splitmix64(x.second + FIXED_RANDOM) >> 1);
}
};
const i128 ONE = 1;
istream &operator>>(istream &in, i128 &x) {
string s;
in >> s;
bool minus = false;
if (s[0] == '-') {
minus = true;
s.erase(s.begin());
}
x = 0;
for (auto i : s) {
x *= 10;
x += i - '0';
}
if (minus) x = -x;
return in;
}
ostream &operator<<(ostream &out, i128 x) {
string s;
bool minus = false;
if (x < 0) {
minus = true;
x = -x;
}
while (x) {
s.push_back(x % 10 + '0');
x /= 10;
}
if (s.empty()) s = "0";
if (minus) out << '-';
reverse(s.begin(), s.end());
out << s;
return out;
}
template <class T> istream &operator>>(istream &in, vector<T> &v) {
for(auto& x : v) cin >> x;
return in;
}
template <class T> ostream &operator<<(ostream &os, const vector<T> &v) {
for(auto it = begin(v); it != end(v); ++it) {
if(it == begin(v)) os << *it;
else os << " " << *it;
}
return os;
}
template <class T> ostream &operator<<(ostream &os, const set<T> &v) {
for(auto it = begin(v); it != end(v); ++it) {
if(it == begin(v)) os << *it;
else os << " " << *it;
}
return os;
}
template <class T> ostream &operator<<(ostream &os, const multiset<T> &v) {
for(auto it = begin(v); it != end(v); ++it) {
if(it == begin(v)) os << *it;
else os << " " << *it;
}
return os;
}
template <class T> ostream &operator<<(ostream &os, const Tree<T> &v) {
for(auto it = begin(v); it != end(v); ++it) {
if(it == begin(v)) os << *it;
else os << " " << *it;
}
return os;
}
template <class T, class S> istream &operator>>(istream &in, pair<T, S> &p) {
cin >> p.first >> p.second;
return in;
}
template <class T, class S> ostream &operator<<(ostream &os, const pair<T, S> &p) {
os << p.first << " " << p.second;
return os;
}
template <class T, size_t size> istream &operator>>(istream &in, array<T, size> &v) {
for(auto& x : v) cin >> x;
return in;
}
template <class T, size_t size> ostream &operator<<(ostream &os, const array<T, size> &v) {
for(int i = 0; i < size; i++) {
if(i == 0) os << v[i];
else os << " " << v[i];
}
return os;
}
inline void print() { std::cout << '\n'; }
template <typename Head, typename... Tail>
inline void print(const Head& head, const Tail &...tails) {
std::cout << head;
if (sizeof...(tails)) std::cout << ' ';
print(tails...);
}
template <typename Iterable>
auto print_all(const Iterable& v, std::string sep = " ", std::string end = "\n") -> decltype(std::cout << *v.begin(), void()) {
for (auto it = v.begin(); it != v.end();) {
std::cout << *it;
if (++it != v.end()) std::cout << sep;
}
std::cout << end;
}
void read() {}
template <class Head, class... Tail>
void read(Head &head, Tail &... tail) {
cin >> head;
read(tail...);
}
#define INT(...) \
int __VA_ARGS__; \
read(__VA_ARGS__)
#define LL(...) \
ll __VA_ARGS__; \
read(__VA_ARGS__)
#define STR(...) \
string __VA_ARGS__; \
read(__VA_ARGS__)
#define CHAR(...) \
char __VA_ARGS__; \
read(__VA_ARGS__)
#define DBL(...) \
double __VA_ARGS__; \
read(__VA_ARGS__)
#define VEC(type, name, size) \
vector<type> name(size); \
read(name)
#define VV(type, name, h, w) \
vector<vector<type>> name(h, vector<type>(w)); \
read(name)
void YES(bool t = 1) { print(t ? "YES" : "NO"); }
void NO(bool t = 1) { YES(!t); }
void Yes(bool t = 1) { print(t ? "Yes" : "No"); }
void No(bool t = 1) { Yes(!t); }
void yes(bool t = 1) { print(t ? "yes" : "no"); }
void no(bool t = 1) { yes(!t); }
ll gcd(ll x, ll y) {
if(!x) return y;
if(!y) return x;
int t = __builtin_ctzll(x | y);
x >>= __builtin_ctzll(x);
do {
y >>= __builtin_ctzll(y);
if (x > y) swap(x, y);
y -= x;
} while (y);
return x << t;
}
ll lcm(ll x, ll y) { return x * y / gcd(x, y); }
ll exgcd(ll a, ll b, ll &x, ll &y) {
if(!b) return x = 1, y = 0, a;
ll d = exgcd(b, a % b, x, y);
ll t = x;
x = y;
y = t - a / b * x;
return d;
}
ll max(ll x, ll y) { return x > y ? x : y; }
ll min(ll x, ll y) { return x < y ? x : y; }
ll Mod(ll x, int mod) { return (x % mod + mod) % mod; }
ll pow(ll x, ll y, ll mod){
ll res = 1, cur = x;
while (y) {
if (y & 1) res = res * cur % mod;
cur = ONE * cur * cur % mod;
y >>= 1;
}
return res % mod;
}
ll probabilityMod(ll x, ll y, ll mod) {
return x * pow(y, mod-2, mod) % mod;
}
vvi getGraph(int n, int m, bool directed = false) {
vvi res(n);
rep(_, 0, m) {
int u, v;
cin >> u >> v;
u--, v--;
res[u].emplace_back(v);
if(!directed) res[v].emplace_back(u);
}
return res;
}
vector<vpii> getWeightedGraph(int n, int m, bool directed = false) {
vector<vpii> res(n);
rep(_, 0, m) {
int u, v, w;
cin >> u >> v >> w;
u--, v--;
res[u].emplace_back(v, w);
if(!directed) res[v].emplace_back(u, w);
}
return res;
}
template <class... Args> auto ndvector(size_t n, Args &&...args) {
if constexpr (sizeof...(args) == 1) {
return vector(n, args...);
} else {
return vector(n, ndvector(args...));
}
}
const ll LINF = 0x1fffffffffffffff;
const ll MINF = 0x7fffffffffff;
const int INF = 0x3fffffff;
const int MOD = 1000000007;
const int MODD = 998244353;
const int N = 1e6 + 10;
void solve() {
INT(n, W);
VEC(int, a, n);
bitset<200010> bs;
bs[0] = 1;
each(i, a) bs |= bs << i;
rrep(i, W, -1) if (bs[i]) return print(i);
}
signed main() {
ios::sync_with_stdio(0);
cin.tie(0);
cout.tie(0);
int t = 1;
// cin >> t;
while (t--) {
solve();
}
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 1ms
memory: 3604kb
input:
3 10 1 1 11
output:
2
result:
ok single line: '2'
Test #2:
score: 0
Accepted
time: 1ms
memory: 3652kb
input:
4 10 3 5 3 4
output:
10
result:
ok single line: '10'
Test #3:
score: 0
Accepted
time: 70ms
memory: 3716kb
input:
30669 199323 7 6 7 7 7 7 6 7 7 7 7 6 7 6 6 7 7 7 7 6 6 7 7 7 6 6 6 7 7 7 6 6 7 7 6 6 7 6 7 6 7 6 6 6 6 6 7 7 7 6 6 6 6 6 6 6 7 7 6 6 7 6 6 7 6 6 6 6 6 7 7 7 7 6 7 7 6 6 7 6 7 6 6 6 6 7 6 7 6 7 6 7 6 7 7 7 7 6 7 7 6 6 6 6 7 6 7 7 7 7 6 7 7 7 7 7 7 6 6 6 7 7 7 6 7 7 7 7 6 7 7 6 6 6 6 7 6 7 7 7 6 6 7 7...
output:
199318
result:
ok single line: '199318'
Test #4:
score: 0
Accepted
time: 55ms
memory: 3708kb
input:
22122 199097 9 8 8 10 9 8 10 9 9 9 8 9 8 9 10 8 9 10 10 10 10 10 9 9 10 10 10 10 10 9 8 8 8 10 9 8 9 9 8 10 9 10 10 10 9 8 8 9 10 10 8 9 9 10 9 10 9 9 9 9 9 10 9 8 9 10 9 9 10 10 8 10 8 8 9 10 8 10 10 8 8 9 8 9 8 10 10 10 10 8 8 8 10 9 8 9 8 9 10 9 8 8 10 9 8 10 10 8 9 10 8 10 9 8 10 9 8 9 8 9 9 8 9...
output:
199089
result:
ok single line: '199089'
Test #5:
score: 0
Accepted
time: 288ms
memory: 3616kb
input:
120000 200000 1 2 1 1 1 2 1 2 2 1 1 1 1 1 1 2 1 1 2 2 1 2 1 2 1 1 2 1 2 1 2 2 1 1 1 1 1 2 2 2 2 2 1 1 2 2 2 2 2 1 1 1 1 1 2 2 2 2 1 1 1 2 2 2 1 1 2 1 2 2 1 1 2 2 2 2 2 2 1 2 1 1 2 1 2 1 2 2 1 2 1 1 2 2 1 1 1 1 1 1 2 1 1 2 1 1 1 1 2 2 1 2 1 1 1 1 1 1 1 2 2 1 1 1 1 2 2 2 1 1 2 1 2 1 2 1 2 1 2 2 1 2 1 ...
output:
180055
result:
ok single line: '180055'
Test #6:
score: 0
Accepted
time: 4ms
memory: 3556kb
input:
1243 152688 41 47 45 47 50 37 33 911 42 510 46 33 753 46 47 31 37 50 47 31 39 45 182 48 49 42 40 31 48 807 37 30 38 48 865 43 46 31 42 40 42 46 30 44 31 39 42 45 38 47 47 299 46 598 43 480 40 34 638 37 38 47 210 37 32 38 38 36 50 32 49 494 461 37 34 31 47 42 825 46 44 35 40 225 36 44 231 43 38 40 40...
output:
152688
result:
ok single line: '152688'
Test #7:
score: 0
Accepted
time: 4ms
memory: 3608kb
input:
1241 158399 30 47 914 37 37 31 258 539 31 865 50 47 49 41 107 39 40 704 39 195 30 48 591 557 37 48 32 45 32 31 39 979 42 975 49 32 35 50 38 565 41 34 47 48 30 34 868 993 50 41 50 270 42 535 35 43 36 35 48 72 34 49 45 46 44 48 36 50 48 34 40 972 48 33 730 34 44 30 50 48 35 35 523 668 48 43 48 32 46 3...
output:
158399
result:
ok single line: '158399'
Test #8:
score: 0
Accepted
time: 4ms
memory: 3624kb
input:
1243 157456 31 32 41 37 42 45 42 841 728 46 31 34 43 50 49 48 33 35 39 589 38 39 31 45 754 771 32 687 35 41 46 3 49 37 35 40 36 38 49 733 37 49 849 50 43 34 42 30 31 44 41 39 188 45 194 103 48 33 44 35 36 34 36 44 41 591 40 32 41 36 96 44 49 31 37 46 46 39 37 573 35 63 49 36 34 46 39 46 41 971 38 32...
output:
157456
result:
ok single line: '157456'
Test #9:
score: 0
Accepted
time: 4ms
memory: 3644kb
input:
1244 154207 48 45 36 43 46 49 49 38 871 43 685 38 44 294 38 49 33 35 627 48 564 48 30 32 46 453 43 30 33 46 36 47 440 44 44 37 48 38 34 48 44 37 50 46 37 49 43 115 43 39 419 774 46 45 38 43 35 50 224 832 157 31 34 50 101 46 35 33 49 754 41 39 42 34 49 44 23 626 32 38 39 45 44 33 39 48 48 46 43 46 38...
output:
154207
result:
ok single line: '154207'
Test #10:
score: 0
Accepted
time: 4ms
memory: 3608kb
input:
1244 157697 42 37 159 40 50 31 42 50 899 950 30 41 48 43 37 43 37 36 50 47 41 31 49 35 137 30 144 40 50 38 30 38 38 90 32 49 825 38 32 49 50 31 45 217 40 43 42 43 40 46 42 285 31 977 36 35 34 40 968 47 34 49 39 34 49 270 35 37 60 988 32 35 50 631 33 35 49 521 32 32 33 48 560 803 593 982 49 40 43 41 ...
output:
157697
result:
ok single line: '157697'
Test #11:
score: 0
Accepted
time: 18ms
memory: 3628kb
input:
7060 171395 46 9 7 17 30 48 50 17 7 17 17 18 20 9 31 2 41 17 15 11 11 80 9 3 30 18 3 5 7 7 37 4 17 44 18 14 8 5 1 71 39 19 19 3 20 20 9 17 10 10 34 18 37 10 30 9 43 3 18 8 14 15 37 13 4 19 17 15 11 15 4 11 6 18 5 17 4 13 20 50 14 2 65 5 15 18 5 3 9 9 12 8 4 42 37 62 13 16 10 46 15 17 79 7 14 14 20 3...
output:
171395
result:
ok single line: '171395'
Test #12:
score: 0
Accepted
time: 18ms
memory: 3564kb
input:
7058 172240 99 6 45 20 8 44 12 7 13 18 46 15 14 10 50 37 37 1 12 7 7 3 12 7 13 48 30 6 5 11 68 46 2 20 10 58 3 17 36 7 86 8 57 17 17 4 12 4 59 4 48 37 42 8 7 11 36 5 14 12 15 6 9 74 4 8 19 11 5 19 8 15 20 2 2 4 17 62 16 17 6 14 15 11 50 1 15 14 37 17 4 45 12 8 60 4 46 18 6 18 11 3 19 7 17 35 7 2 52 ...
output:
172240
result:
ok single line: '172240'
Test #13:
score: 0
Accepted
time: 1ms
memory: 3604kb
input:
1 1 1
output:
1
result:
ok single line: '1'
Test #14:
score: 0
Accepted
time: 18ms
memory: 3668kb
input:
7052 171344 3 17 36 19 11 15 34 3 91 17 16 18 93 15 7 1 2 5 7 61 4 6 8 10 3 7 3 2 35 10 82 39 88 4 6 15 40 8 96 17 15 20 98 43 18 11 39 13 58 13 16 49 3 49 15 9 18 10 12 5 10 12 6 3 77 4 71 45 16 3 1 77 2 38 31 13 44 4 13 20 19 10 92 20 17 87 7 64 4 39 81 63 8 52 5 3 6 5 14 2 52 20 4 16 20 13 4 2 13...
output:
171344
result:
ok single line: '171344'
Test #15:
score: 0
Accepted
time: 18ms
memory: 3580kb
input:
7065 171538 8 9 13 92 8 15 4 16 30 12 10 69 68 15 57 16 4 83 5 81 15 67 6 2 40 18 8 9 4 16 19 17 14 16 53 20 7 20 48 91 13 40 14 19 10 13 10 33 88 32 9 100 14 33 64 83 12 78 9 7 9 20 93 8 11 11 11 1 16 8 1 16 9 5 5 17 12 1 5 10 49 14 16 17 8 19 70 35 18 8 17 10 5 5 86 11 19 2 6 48 5 13 12 6 20 20 68...
output:
171538
result:
ok single line: '171538'
Test #16:
score: 0
Accepted
time: 18ms
memory: 3564kb
input:
7063 170730 19 18 3 72 10 19 3 50 5 3 100 2 71 11 6 9 13 52 32 2 69 14 6 2 13 33 13 5 19 4 9 17 1 37 42 40 50 30 19 87 16 12 81 7 20 19 19 17 17 31 12 11 45 46 18 8 2 8 9 34 5 8 74 18 84 46 58 8 15 11 76 17 84 17 7 38 72 11 17 20 20 4 14 5 20 4 5 14 11 13 47 6 1 10 20 85 8 11 7 17 20 13 31 4 10 18 1...
output:
170730
result:
ok single line: '170730'
Test #17:
score: 0
Accepted
time: 15ms
memory: 3580kb
input:
7061 171010 7 5 19 69 15 74 8 18 67 10 18 20 11 16 16 65 13 40 60 38 15 13 12 95 85 42 19 17 5 16 76 1 61 4 9 85 19 1 17 8 15 11 1 13 14 93 6 15 8 16 15 18 7 12 10 15 10 6 1 58 7 6 13 3 20 66 13 8 17 13 11 6 10 10 19 4 7 33 13 11 18 13 18 12 6 57 7 18 9 20 65 7 19 13 14 9 7 18 6 16 1 43 50 7 10 8 12...
output:
171010
result:
ok single line: '171010'
Test #18:
score: 0
Accepted
time: 15ms
memory: 3572kb
input:
7062 171278 97 20 20 68 32 61 10 1 14 1 7 69 42 17 8 7 1 74 18 14 5 2 9 14 47 5 5 13 80 38 2 6 7 31 10 11 33 1 13 11 14 16 9 45 67 6 8 1 11 4 19 78 82 58 65 12 17 98 15 47 19 49 19 11 76 12 11 30 2 60 16 99 12 18 77 2 64 17 71 20 19 3 7 20 3 19 91 18 12 13 31 16 18 30 48 1 75 2 14 16 14 15 6 19 19 1...
output:
171278
result:
ok single line: '171278'
Test #19:
score: 0
Accepted
time: 78ms
memory: 3728kb
input:
32142 191489 6 5 4 7 4 7 11 3 4 4 14 3 13 7 4 3 6 7 4 3 7 6 6 7 5 10 7 5 6 6 7 8 4 4 4 6 12 7 7 5 7 7 5 4 10 5 5 3 7 4 4 15 3 12 3 4 6 6 7 6 7 4 3 7 4 4 3 6 4 10 7 5 5 14 7 7 3 3 5 6 8 3 6 3 5 6 4 7 15 7 7 4 3 4 5 6 7 7 7 11 3 14 3 10 7 4 14 5 7 4 5 5 5 6 6 5 7 7 7 5 11 5 4 13 5 6 6 3 13 3 4 6 5 7 3...
output:
191489
result:
ok single line: '191489'
Test #20:
score: 0
Accepted
time: 74ms
memory: 3772kb
input:
32112 191429 3 6 6 6 6 11 6 3 7 6 6 3 8 4 4 4 3 7 4 7 7 12 7 5 4 7 4 7 5 6 7 3 6 7 12 7 7 4 6 12 5 4 7 5 7 3 5 3 3 5 4 6 7 6 7 5 7 4 5 5 6 4 3 4 5 5 7 6 5 5 13 11 7 4 5 3 4 15 5 5 4 5 5 7 3 3 6 6 11 5 7 12 6 11 7 5 7 4 4 3 4 6 5 7 5 3 5 12 5 6 6 5 3 5 4 6 4 6 3 7 4 7 7 6 6 7 5 7 5 5 10 7 4 4 6 3 4 3...
output:
191429
result:
ok single line: '191429'
Test #21:
score: 0
Accepted
time: 78ms
memory: 3776kb
input:
32107 192846 5 3 7 5 7 3 9 6 3 7 6 7 7 10 4 7 7 6 5 7 7 6 6 12 3 7 7 3 4 13 5 7 5 7 6 6 7 4 6 6 4 5 7 16 5 7 4 4 5 4 4 6 6 10 11 7 7 4 4 7 4 4 5 4 8 6 3 4 5 4 3 3 4 3 3 6 7 6 4 5 12 6 3 11 7 6 7 3 6 7 3 7 6 6 5 7 7 6 6 14 7 12 7 6 3 6 7 6 10 5 3 4 4 3 5 4 7 7 8 7 3 7 6 3 4 5 3 7 4 6 3 3 6 7 5 5 4 4 ...
output:
192846
result:
ok single line: '192846'
Test #22:
score: 0
Accepted
time: 78ms
memory: 3672kb
input:
32136 191995 14 7 3 6 4 4 3 4 3 4 4 14 7 3 3 6 4 5 3 7 6 4 5 4 7 7 4 4 7 3 6 4 8 8 4 7 15 13 4 10 4 7 6 4 7 3 3 6 11 10 6 7 7 5 6 10 4 7 4 5 12 7 7 3 4 6 3 6 3 3 7 4 7 5 3 11 5 7 4 13 7 5 6 6 4 5 5 7 3 4 6 5 4 7 5 3 6 15 4 3 15 4 6 7 5 10 5 7 10 4 5 5 4 5 7 4 4 6 7 3 3 5 5 12 13 3 5 5 7 10 7 5 4 6 7...
output:
191995
result:
ok single line: '191995'
Test #23:
score: 0
Accepted
time: 78ms
memory: 3796kb
input:
32162 192563 6 3 6 4 7 5 4 10 7 7 5 5 3 6 12 5 5 4 6 7 6 5 5 5 5 3 4 5 3 5 13 4 7 5 5 5 4 3 3 4 10 6 3 15 4 3 6 4 5 7 3 5 4 8 5 4 3 11 7 5 7 12 8 10 3 3 5 6 3 3 7 13 7 4 3 3 10 4 3 10 4 5 6 6 3 3 10 6 3 5 4 5 6 4 4 4 7 6 5 3 6 5 5 5 4 4 4 5 3 6 3 6 4 3 5 4 5 3 9 4 8 6 5 13 6 5 5 5 3 5 6 4 4 4 5 4 4 ...
output:
192563
result:
ok single line: '192563'
Test #24:
score: 0
Accepted
time: 1ms
memory: 3556kb
input:
1 1 200000
output:
0
result:
ok single line: '0'
Test #25:
score: 0
Accepted
time: 1ms
memory: 3668kb
input:
3 10 2 3 6
output:
9
result:
ok single line: '9'
Test #26:
score: 0
Accepted
time: 1ms
memory: 3528kb
input:
10 500 1 2 3 4 5 6 400 491 412 492
output:
500
result:
ok single line: '500'
Test #27:
score: 0
Accepted
time: 1ms
memory: 3544kb
input:
2 200000 100000 100000
output:
200000
result:
ok single line: '200000'
Test #28:
score: 0
Accepted
time: 471ms
memory: 3900kb
input:
200000 200000 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ...
output:
200000
result:
ok single line: '200000'
Test #29:
score: 0
Accepted
time: 240ms
memory: 3688kb
input:
100000 100000 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 ...
output:
100000
result:
ok single line: '100000'
Test #30:
score: 0
Accepted
time: 116ms
memory: 3604kb
input:
49900 199570 3 3 3 4 4 5 3 3 5 3 4 5 3 5 5 3 3 3 5 3 3 5 4 4 3 5 3 4 3 5 4 4 3 4 5 5 5 4 3 4 5 4 4 5 4 5 5 4 3 3 5 3 4 4 3 3 3 3 4 5 4 4 5 3 4 4 5 5 3 4 3 4 3 5 3 4 5 3 4 4 3 4 4 4 4 3 5 3 3 5 3 3 3 5 3 4 4 4 5 3 4 4 5 4 5 4 4 4 5 3 5 4 3 5 3 3 5 5 3 3 4 3 4 5 5 4 4 3 4 4 5 3 3 3 3 5 5 4 5 4 3 4 4 3...
output:
199568
result:
ok single line: '199568'