QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#257487#7754. Rolling For Daysucup-team296AC ✓438ms34220kbC++2015.1kb2023-11-19 08:06:352023-11-19 08:06:35

Judging History

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

  • [2023-11-19 08:06:35]
  • 评测
  • 测评结果:AC
  • 用时:438ms
  • 内存:34220kb
  • [2023-11-19 08:06:35]
  • 提交

answer

#include <bits/stdc++.h>

/**
 * Author: Niyaz Nigmatullin
 *
 */

using namespace std;

string to_string(string s) {
  return '"' + s + '"';
}

string to_string(const char* s) {
  return to_string((string) s);
}

string to_string(bool b) {
  return (b ? "true" : "false");
}

template <typename A, typename B>
string to_string(pair<A, B> p) {
  return "(" + to_string(p.first) + ", " + to_string(p.second) + ")";
}

template <typename A>
string to_string(A v) {
  bool first = true;
  string res = "{";
  for (const auto &x : v) {
    if (!first) {
      res += ", ";
    }
    first = false;
    res += to_string(x);
  }
  res += "}";
  return res;
}

void debug_out() { cerr << endl; }

template <typename Head, typename... Tail>
void debug_out(Head H, Tail... T) {
  cerr << " " << to_string(H);
  debug_out(T...);
}

#ifdef LOCAL
#define debug(...) cerr << "[" << #__VA_ARGS__ << "]:", debug_out(__VA_ARGS__)
#else
#define debug(...) 42
#endif

template <typename T>
T inverse(T a, T m) {
  assert(a != 0);
  T u = 0, v = 1;
  while (a != 0) {
    T t = m / a;
    m -= t * a; swap(a, m);
    u -= t * v; swap(u, v);
  }
  assert(m == 1);
  return u;
}

template <typename T>
class Modular {
 public:
  using Type = typename decay<decltype(T::value)>::type;

  constexpr Modular() : value() {}
  template <typename U>
  Modular(const U& x) {
    value = normalize(x);
  }

  template <typename U>
  static Type normalize(const U& x) {
    Type v;
    if (-mod() <= x && x < mod()) v = static_cast<Type>(x);
    else v = static_cast<Type>(x % mod());
    if (v < 0) v += mod();
    return v;
  }

  const Type& operator()() const { return value; }
  template <typename U>
  explicit operator U() const { return static_cast<U>(value); }
  constexpr static Type mod() { return T::value; }

  Modular& operator+=(const Modular& other) { if ((value += other.value) >= mod()) value -= mod(); return *this; }
  Modular& operator-=(const Modular& other) { if ((value -= other.value) < 0) value += mod(); return *this; }
  template <typename U> Modular& operator+=(const U& other) { return *this += Modular(other); }
  template <typename U> Modular& operator-=(const U& other) { return *this -= Modular(other); }
  Modular& operator++() { return *this += 1; }
  Modular& operator--() { return *this -= 1; }
  Modular operator++(int) { Modular result(*this); *this += 1; return result; }
  Modular operator--(int) { Modular result(*this); *this -= 1; return result; }
  Modular operator-() const { return Modular(-value); }

  template <typename U = T>
  typename enable_if<is_same<typename Modular<U>::Type, int>::value, Modular>::type& operator*=(const Modular& rhs) {
#ifdef _WIN32
    uint64_t x = static_cast<int64_t>(value) * static_cast<int64_t>(rhs.value);
    uint32_t xh = static_cast<uint32_t>(x >> 32), xl = static_cast<uint32_t>(x), d, m;
    asm(
      "divl %4; \n\t"
      : "=a" (d), "=d" (m)
      : "d" (xh), "a" (xl), "r" (mod())
    );
    value = m;
#else
    value = normalize(static_cast<int64_t>(value) * static_cast<int64_t>(rhs.value));
#endif
    return *this;
  }
  template <typename U = T>
  typename enable_if<is_same<typename Modular<U>::Type, int64_t>::value, Modular>::type& operator*=(const Modular& rhs) {
    int64_t q = static_cast<int64_t>(static_cast<long double>(value) * rhs.value / mod());
    value = normalize(value * rhs.value - q * mod());
    return *this;
  }
  template <typename U = T>
  typename enable_if<!is_integral<typename Modular<U>::Type>::value, Modular>::type& operator*=(const Modular& rhs) {
    value = normalize(value * rhs.value);
    return *this;
  }

  Modular& operator/=(const Modular& other) { return *this *= Modular(inverse(other.value, mod())); }

  template <typename U>
  friend bool operator==(const Modular<U>& lhs, const Modular<U>& rhs);

  template <typename U>
  friend bool operator<(const Modular<U>& lhs, const Modular<U>& rhs);

  template <typename U>
  friend std::istream& operator>>(std::istream& stream, Modular<U>& number);

 private:
  Type value;
};

template <typename T> bool operator==(const Modular<T>& lhs, const Modular<T>& rhs) { return lhs.value == rhs.value; }
template <typename T, typename U> bool operator==(const Modular<T>& lhs, U rhs) { return lhs == Modular<T>(rhs); }
template <typename T, typename U> bool operator==(U lhs, const Modular<T>& rhs) { return Modular<T>(lhs) == rhs; }

template <typename T> bool operator!=(const Modular<T>& lhs, const Modular<T>& rhs) { return !(lhs == rhs); }
template <typename T, typename U> bool operator!=(const Modular<T>& lhs, U rhs) { return !(lhs == rhs); }
template <typename T, typename U> bool operator!=(U lhs, const Modular<T>& rhs) { return !(lhs == rhs); }

template <typename T> bool operator<(const Modular<T>& lhs, const Modular<T>& rhs) { return lhs.value < rhs.value; }

template <typename T> Modular<T> operator+(const Modular<T>& lhs, const Modular<T>& rhs) { return Modular<T>(lhs) += rhs; }
template <typename T, typename U> Modular<T> operator+(const Modular<T>& lhs, U rhs) { return Modular<T>(lhs) += rhs; }
template <typename T, typename U> Modular<T> operator+(U lhs, const Modular<T>& rhs) { return Modular<T>(lhs) += rhs; }

template <typename T> Modular<T> operator-(const Modular<T>& lhs, const Modular<T>& rhs) { return Modular<T>(lhs) -= rhs; }
template <typename T, typename U> Modular<T> operator-(const Modular<T>& lhs, U rhs) { return Modular<T>(lhs) -= rhs; }
template <typename T, typename U> Modular<T> operator-(U lhs, const Modular<T>& rhs) { return Modular<T>(lhs) -= rhs; }

template <typename T> Modular<T> operator*(const Modular<T>& lhs, const Modular<T>& rhs) { return Modular<T>(lhs) *= rhs; }
template <typename T, typename U> Modular<T> operator*(const Modular<T>& lhs, U rhs) { return Modular<T>(lhs) *= rhs; }
template <typename T, typename U> Modular<T> operator*(U lhs, const Modular<T>& rhs) { return Modular<T>(lhs) *= rhs; }

template <typename T> Modular<T> operator/(const Modular<T>& lhs, const Modular<T>& rhs) { return Modular<T>(lhs) /= rhs; }
template <typename T, typename U> Modular<T> operator/(const Modular<T>& lhs, U rhs) { return Modular<T>(lhs) /= rhs; }
template <typename T, typename U> Modular<T> operator/(U lhs, const Modular<T>& rhs) { return Modular<T>(lhs) /= rhs; }

template<typename T, typename U>
Modular<T> power(const Modular<T>& a, const U& b) {
  assert(b >= 0);
  Modular<T> x = a, res = 1;
  U p = b;
  while (p > 0) {
    if (p & 1) res *= x;
    x *= x;
    p >>= 1;
  }
  return res;
}

template <typename T>
string to_string(const Modular<T>& number) {

for (int i = 1; i < 100; i++) {
	if ((int) (number * i) < 1000) return to_string((int) (number * i)) + "/" + to_string(i);
}
  return to_string(number());
}

template <typename T>
std::ostream& operator<<(std::ostream& stream, const Modular<T>& number) {
  return stream << number();
}

template <typename T>
std::istream& operator>>(std::istream& stream, Modular<T>& number) {
  typename common_type<typename Modular<T>::Type, int64_t>::type x;
  stream >> x;
  number.value = Modular<T>::normalize(x);
  return stream;
}

/*
using ModType = int;

struct VarMod { static ModType value; };
ModType VarMod::value;
ModType& md = VarMod::value;
using Mint = Modular<VarMod>;
*/

constexpr int md = 998244353;
using Mint = Modular<std::integral_constant<decay<decltype(md)>::type, md>>;

Mint solve(int n, vector<int> const &a, vector<int> const &b) {
	int m = (int) a.size();
	vector<vector<Mint>> f(1 << m, vector<Mint>(n + 1));
	f[0][0] = 1;
	vector<vector<Mint>> ff(1 << m, vector<Mint>(n + 1));
	ff[0][0] = 1;
	vector<vector<Mint>> c(n + 1, vector<Mint>(n + 1));
	for (int i = 0; i <= n; i++) {
		c[i][0] = 1;
		for (int j = 1; j <= i; j++) {
			c[i][j] = c[i - 1][j - 1] + c[i - 1][j];
		}
	}
	for (int mask = 1; mask < (1 << m); mask++) {
		int any = 0;
		while (((mask >> any) & 1) == 0) ++any;
		// f[mask & ~(1 << any)], any
		int without = mask & ~(1 << any);
		for (int was = 0; was <= n; was++) {
			Mint numerator = 1;
			for (int get = 0; get + was <= n && get <= b[any]; get++) {
				numerator *= a[any] - get;
				ff[mask][get + was] += ff[without][was] * c[get + was][get] * numerator;
			}
			Mint value = f[without][was];
			if (value == 0) continue;
			numerator = 1;
			for (int get = 0; get + was <= n && get < b[any]; get++) {
				numerator *= a[any] - get;
				f[mask][get + was] += value * c[get + was][get] * numerator;
			}
		}
	}
	for (int mask = 0; mask < 1 << m; mask++) {
		for (int i = 0; i < m; i++) {
			if (((mask >> i) & 1) == 0) {
				Mint numerator = 1;
				for (int j = 0; j < b[i]; j++) {
					numerator *= a[i] - j;
				}
				for (int was = n - b[i]; was >= 0; was--) {
					f[mask][was + b[i]] += f[mask][was] * c[was + b[i]][b[i]] * numerator;
				}
			}
		}
	}
	int targetSum = 0;
	for (int x: b) targetSum += x;
	vector<int> sumB(1 << m);
	vector<int> sumA(1 << m);
	for (int mask = 0; mask < 1 << m; mask++) {
		for (int i = 0; i < m; i++) {
			if ((mask >> i) & 1) {
				sumB[mask] += b[i];
				sumA[mask] += a[i];
			}
		}
	}
	// vector<vector<Mint>> g(1 << m, vector<Mint>(targetSum + 1));
	// g[(1 << m) - 1][targetSum] = 0;
	// for (int mask = (1 << m) - 2; mask >= 0; mask--) {
	// 	for (int k = targetSum - 1; k >= sumB[mask]; k--) {
	// 		Mint sumAddBit = 0;
	// 		int left = k - sumB[mask];
	// 		Mint good = Mint(n) - Mint(sumA[mask]) - Mint(left);
	// 		Mint bad = sumA[mask] - sumB[mask];
	// 		// debug(good);
	// 		Mint expected = (good + bad) / good;
	// 		Mint allWays = f[((1 << m) - 1) ^ mask][left];
	// 		if (allWays == 0) continue;
	// 		for (int i = 0; i < m; i++) {
	// 			if (((mask >> i) & 1) == 1) continue;
	// 			if (left < b[i] - 1) continue;
	// 			Mint goodWays = f[((1 << m) - 1) ^ mask ^ (1 << i)][left - (b[i] - 1)] * c[left][b[i] - 1];
	// 			// debug(good);
	// 			Mint prob = goodWays / allWays * (a[i] - (b[i] - 1)) / good;
	// 			sumAddBit += prob;
	// 			g[mask][k] += (g[mask | (1 << i)][k + 1] + expected) * prob;
	// 		}
	// 		Mint probStay = 1 - sumAddBit;
	// 		g[mask][k] += (g[mask][k + 1] + expected) * probStay;
	// 		debug(mask, k, g[mask][k]);
	// 	}
	// }
	Mint answer = 0;
	for (int mask = (1 << m) - 2; mask >= 0; mask--) {
		for (int k = sumB[mask]; k < targetSum; k++) {
			int left = k - sumB[mask];
			int good = n - sumA[mask] - left;
			Mint denominator = 1;
			for (int i = 0; i < k; i++) {
				denominator *= good - i;
			}
			int bad = sumA[mask] - sumB[mask];
			// debug(good);
			Mint expected = Mint(good + bad) / good;
			Mint goodWays = f[((1 << m) - 1) ^ mask][left];
			for (int i = 0, count = left; i < m; i++) {
				if (((mask >> i) & 1) == 1) {
					goodWays *= c[count + b[i]][b[i]];
					count += b[i];
				}
			}
			Mint allWays = ff[((1 << m) - 1)][k];
			debug(mask, k, goodWays, allWays, expected);
			answer += goodWays / allWays * expected;
		}
	}
	// return g[0][0];
	return answer;
}


Mint solve2(int n, vector<int> a, vector<int> b) {
	int m = (int) a.size();
	vector<vector<Mint>> f(1 << m, vector<Mint>(n + 1));
	f[0][0] = 1;
	vector<vector<Mint>> c(n + 1, vector<Mint>(n + 1));
	for (int i = 0; i <= n; i++) {
		c[i][0] = 1;
		for (int j = 1; j <= i; j++) {
			c[i][j] = c[i - 1][j - 1] + c[i - 1][j];
		}
	}
	for (int mask = 1; mask < (1 << m); mask++) {
		int any = 0;
		while (((mask >> any) & 1) == 0) ++any;
		// f[mask & ~(1 << any)], any
		int without = mask & ~(1 << any);
		for (int was = 0; was <= n; was++) {
			Mint value = f[without][was];
			if (value == 0) continue;
			for (int get = 0; get + was <= n && get < b[any]; get++) {
				f[mask][get + was] += value * c[get + was][get];
				value *= a[any] - get;
			}
		}
	}
	int targetSum = 0;
	for (int x: b) targetSum += x;
	vector<int> sumB(1 << m);
	vector<int> sumA(1 << m);
	for (int mask = 0; mask < 1 << m; mask++) {
		for (int i = 0; i < m; i++) {
			if ((mask >> i) & 1) {
				sumB[mask] += b[i];
				sumA[mask] += a[i];
			}
		}
	}
	vector<vector<Mint>> fDen(1 << m, vector<Mint>(targetSum + 1));
	vector<Mint> fullNumerator(m);
	for (int i = 0; i < m; i++) {
		fullNumerator[i] = 1;
		for (int j = 0; j < b[i]; j++) {
			fullNumerator[i] *= a[i] - j;
		}
	}
	int initMask = 0;
	for (int i = 0; i < m; i++) {
		if (b[i] == 0) initMask |= 1 << i;
	}
	fDen[initMask][0] = 1;
	for (int mask = 0; mask < 1 << m; mask++) {
		for (int count = sumB[mask]; count < targetSum; count++) {
			Mint value = fDen[mask][count];
			if (value == 0) continue;
			int ways = (n - sumA[mask]) - (count - sumB[mask]);
			if (ways == 0) continue;
			value /= ways;
			for (int i = 0; i < m; i++) {
				if (((mask >> i) & 1) == 0 && count + 1 >= sumB[mask] + b[i]) {
					fDen[mask | (1 << i)][count + 1] += value * c[count - sumB[mask]][b[i] - 1] * fullNumerator[i];
				}
			}
			fDen[mask][count + 1] += value;
		}
	}
	Mint answer = 0;
	for (int mask = 0; mask + 1 < 1 << m; mask++) {
		for (int k = sumB[mask]; k < targetSum; k++) {
			int left = k - sumB[mask];
			int good = n - sumA[mask] - left;
			int bad = sumA[mask] - sumB[mask];
			Mint expected = Mint(good + bad) / good;
			Mint prob = f[((1 << m) - 1) ^ mask][left] * fDen[mask][k];
			answer += prob * expected;
		}
	}
	// return g[0][0];
	return answer;
}

struct state {
	vector<int> taken;

	bool operator==(state const &s) const {
		return s.taken == taken;
	}
};

namespace std {
	template<>
	struct hash<state> {
		size_t operator()(state const &s) const {
			size_t h = 0;
			for (int x : s.taken) {
				h = h * 239017 + x + 1;
			}
			return h;
		}
	};
};

string to_string(state const &s) {
	return to_string(s.taken);
}

Mint solveStupid(int n, vector<int> const &a, vector<int> const &b) {
	unordered_map<state, Mint> expected;
	expected[{b}] = 0;
	int m = (int) a.size();
	Mint ans2 = 0;
	function<Mint(state const &, Mint)> calc = [&](state const &s, Mint prob) {
		// if (expected.find(s) != expected.end()) {
		// 	return expected[s];
		// }
		if (s.taken == b) {
			return Mint(0);
		}
		int ways = 0;
		int allWays = 0;
		for (int i = 0; i < m; i++) {
			if (s.taken[i] < b[i]) {
				ways += a[i] - s.taken[i];
			}
			allWays += a[i] - s.taken[i];
		}
		Mint res = Mint(allWays) / Mint(ways);
		ans2 += prob * Mint(allWays) / Mint(ways);
		debug(s, prob, Mint(allWays) / Mint(ways));
		for (int i = 0; i < m; i++) {
			if (s.taken[i] < b[i]) {
				state ns = s;
				ns.taken[i]++;
				Mint got = calc(ns, prob * Mint(a[i] - s.taken[i]) / Mint(ways));
				res += got * Mint(a[i] - s.taken[i]) / ways;
			}
		}
		return expected[s] = res;
	};
	Mint res = calc({vector<int>(m, 0)}, 1);
	debug(expected);
	debug(res, ans2);
	return res;
}

void stress() {
	mt19937 rng(239);
	for (int it = 0; it < 10000; it++) {
		int n = 5;
		vector<int> a(n), b(n);
		for (int i = 0; i < n; i++) {
			b[i] = rng() % 2 + 1;
			a[i] = b[i] + rng() % 3;
		}
		int sum = accumulate(a.begin(), a.end(), 0);
		Mint ans1 = solve2(sum, a, b);
		Mint ans2 = solveStupid(sum, a, b);
		if (ans1 != ans2) {
			debug(a, b);
			debug(ans1, ans2);
			assert(ans1 == ans2);
		}
	}

}

int main() {
	std::cin.tie(NULL); std::ios::sync_with_stdio(false);
	// stress();
	int n, m;
	cin >> n >> m;
	vector<int> a(m);
	for (int &x: a) cin >> x;
	vector<int> b(m);
	for (int &x: b) cin >> x;
	Mint ans = solve2(n, a, b);
	// Mint ans2 = solveStupid(n, a, b);
	// for (int i = 1; i < 100; i++) {
	// 	if ((int) (ans * i) < 1000) {
	// 		cout << ans * i << '/' << i << endl;
	// 		break;
	// 	}
	// }
	// debug(ans);
	cout << ans << '\n';
}

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

Details

Tip: Click on the bar to expand more detailed information

Test #1:

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

input:

2 2
1 1
1 1

output:

2

result:

ok answer is '2'

Test #2:

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

input:

4 2
2 2
2 1

output:

582309210

result:

ok answer is '582309210'

Test #3:

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

input:

5 5
1 1 1 1 1
0 0 0 0 1

output:

5

result:

ok answer is '5'

Test #4:

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

input:

4 4
1 1 1 1
1 1 1 0

output:

831870299

result:

ok answer is '831870299'

Test #5:

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

input:

5 2
4 1
2 1

output:

598946616

result:

ok answer is '598946616'

Test #6:

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

input:

5 2
3 2
3 1

output:

482484776

result:

ok answer is '482484776'

Test #7:

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

input:

5 5
1 1 1 1 1
0 1 1 1 0

output:

665496242

result:

ok answer is '665496242'

Test #8:

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

input:

3 3
1 1 1
1 1 0

output:

499122180

result:

ok answer is '499122180'

Test #9:

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

input:

5 5
1 1 1 1 1
1 0 1 1 1

output:

582309212

result:

ok answer is '582309212'

Test #10:

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

input:

3 2
2 1
2 0

output:

499122180

result:

ok answer is '499122180'

Test #11:

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

input:

20 5
1 6 7 2 4
0 1 3 1 4

output:

75028873

result:

ok answer is '75028873'

Test #12:

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

input:

15 5
4 2 3 4 2
2 1 1 2 1

output:

585494868

result:

ok answer is '585494868'

Test #13:

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

input:

20 4
5 4 3 8
1 2 2 3

output:

156108321

result:

ok answer is '156108321'

Test #14:

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

input:

15 2
6 9
2 8

output:

672033760

result:

ok answer is '672033760'

Test #15:

score: 0
Accepted
time: 1ms
memory: 4648kb

input:

20 12
1 2 1 1 2 4 1 3 2 1 1 1
1 0 0 1 0 0 1 0 2 0 1 1

output:

691640771

result:

ok answer is '691640771'

Test #16:

score: 0
Accepted
time: 1ms
memory: 4660kb

input:

19 12
1 1 1 2 1 2 2 1 2 4 1 1
1 1 0 1 1 0 1 1 0 2 1 0

output:

777326448

result:

ok answer is '777326448'

Test #17:

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

input:

20 2
19 1
1 1

output:

299473325

result:

ok answer is '299473325'

Test #18:

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

input:

19 2
14 5
10 1

output:

497380388

result:

ok answer is '497380388'

Test #19:

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

input:

100 5
10 25 6 19 40
0 2 4 5 11

output:

773338801

result:

ok answer is '773338801'

Test #20:

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

input:

64 5
1 12 13 33 5
1 0 1 20 0

output:

571823997

result:

ok answer is '571823997'

Test #21:

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

input:

100 4
15 38 24 23
0 20 0 1

output:

635309463

result:

ok answer is '635309463'

Test #22:

score: 0
Accepted
time: 1ms
memory: 3620kb

input:

88 5
15 25 9 19 20
8 15 9 18 17

output:

400310961

result:

ok answer is '400310961'

Test #23:

score: 0
Accepted
time: 4ms
memory: 6288kb

input:

100 12
2 2 13 9 13 7 2 1 6 15 17 13
0 0 5 7 10 7 0 1 0 0 4 4

output:

552732942

result:

ok answer is '552732942'

Test #24:

score: 0
Accepted
time: 4ms
memory: 5468kb

input:

59 12
7 6 3 5 4 6 5 2 5 6 5 5
4 5 2 5 3 6 0 2 1 0 3 3

output:

27023521

result:

ok answer is '27023521'

Test #25:

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

input:

100 3
10 60 30
0 28 21

output:

261595276

result:

ok answer is '261595276'

Test #26:

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

input:

84 2
39 45
4 23

output:

897695217

result:

ok answer is '897695217'

Test #27:

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

input:

1000 5
370 136 129 182 183
312 47 112 22 119

output:

705415872

result:

ok answer is '705415872'

Test #28:

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

input:

766 5
372 194 98 90 12
165 123 53 27 0

output:

870555094

result:

ok answer is '870555094'

Test #29:

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

input:

1000 2
374 626
175 591

output:

501708945

result:

ok answer is '501708945'

Test #30:

score: 0
Accepted
time: 1ms
memory: 5252kb

input:

701 1
701
413

output:

413

result:

ok answer is '413'

Test #31:

score: 0
Accepted
time: 406ms
memory: 33232kb

input:

1000 12
101 43 34 281 23 24 12 25 66 222 145 24
37 43 27 257 5 11 12 19 62 41 87 13

output:

265294941

result:

ok answer is '265294941'

Test #32:

score: 0
Accepted
time: 47ms
memory: 26096kb

input:

942 12
83 142 96 10 3 10 60 93 398 13 11 23
37 56 36 0 3 0 10 35 33 1 9 19

output:

956409637

result:

ok answer is '956409637'

Test #33:

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

input:

1000 4
473 65 438 24
79 61 327 24

output:

491224221

result:

ok answer is '491224221'

Test #34:

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

input:

870 4
320 17 182 351
145 0 181 4

output:

664946681

result:

ok answer is '664946681'

Test #35:

score: 0
Accepted
time: 185ms
memory: 30856kb

input:

1000 12
102 2 110 62 106 176 37 27 6 208 92 72
57 0 106 20 36 4 20 12 3 134 8 61

output:

3888811

result:

ok answer is '3888811'

Test #36:

score: 0
Accepted
time: 233ms
memory: 32968kb

input:

1000 12
1 44 209 187 27 71 127 139 134 22 20 19
0 19 153 113 27 29 82 74 37 19 20 9

output:

278584590

result:

ok answer is '278584590'

Test #37:

score: 0
Accepted
time: 247ms
memory: 29756kb

input:

1000 12
193 84 261 36 75 7 70 12 38 22 8 194
68 15 11 20 16 7 53 1 6 6 6 189

output:

704313398

result:

ok answer is '704313398'

Test #38:

score: 0
Accepted
time: 325ms
memory: 34220kb

input:

1000 12
171 135 21 74 115 3 4 122 32 70 224 29
71 120 20 66 61 2 1 102 28 0 201 3

output:

608268027

result:

ok answer is '608268027'

Test #39:

score: 0
Accepted
time: 351ms
memory: 32772kb

input:

1000 12
54 20 201 182 16 66 23 153 36 39 151 59
33 5 189 80 13 56 13 38 7 22 92 21

output:

795531860

result:

ok answer is '795531860'

Test #40:

score: 0
Accepted
time: 438ms
memory: 32364kb

input:

1000 12
218 16 12 152 67 64 65 3 90 263 44 6
107 2 2 143 11 28 53 2 55 106 39 5

output:

903827471

result:

ok answer is '903827471'

Extra Test:

score: 0
Extra Test Passed