Submission #67648099
Source Code Expand
// #undef YOSUPO_LOCAL
#if 0 and !defined(__clang__)
#include <vector>
#pragma GCC target("avx2,bmi,bmi2,lzcnt,popcnt")
#pragma GCC optimize("Ofast")
#endif
#include <array>
#include <cassert>
#include <initializer_list>
#include <string>
#include <cstddef>
#include <ranges>
#include <utility>
namespace yosupo {
struct Coord {
public:
constexpr Coord() : d{0, 0} {}
constexpr Coord(int _r, int _c) : d{_r, _c} {}
constexpr Coord(const std::pair<int, int>& p) : d{p.first, p.second} {}
bool operator==(const Coord& other) const { return d == other.d; }
Coord& operator+=(const Coord& other) {
d[0] += other.d[0];
d[1] += other.d[1];
return *this;
}
Coord operator+(const Coord& other) const {
Coord result = *this;
result += other;
return result;
}
Coord& operator-=(const Coord& other) {
d[0] -= other.d[0];
d[1] -= other.d[1];
return *this;
}
Coord operator-(const Coord& other) const {
Coord result = *this;
result -= other;
return result;
}
int& r() { return d[0]; }
int& c() { return d[1]; }
const int& r() const { return d[0]; }
const int& c() const { return d[1]; }
int& operator[](int index) {
if (index == 0) return d[0];
if (index == 1) return d[1];
assert(false);
}
const int& operator[](int index) const {
if (index == 0) return d[0];
if (index == 1) return d[1];
assert(false);
}
operator std::pair<int, int>() const { return std::make_pair(d[0], d[1]); }
std::string dump() const {
return "(" + std::to_string(d[0]) + ", " + std::to_string(d[1]) + ")";
}
Coord move4(int dir) const {
static constexpr std::array<Coord, 4> d4 = {Coord(0, 1), Coord(1, 0),
Coord(0, -1), Coord(-1, 0)};
return *this + d4[dir];
}
auto move4() const {
return std::views::iota(0, 4) | std::views::transform([this](int dir) {
return this->move4(dir);
});
}
Coord move8(int dir) const {
static constexpr std::array<Coord, 8> d8 = {
Coord(0, 1), Coord(1, 1), Coord(1, 0), Coord(1, -1),
Coord(0, -1), Coord(-1, -1), Coord(-1, 0), Coord(-1, 1)};
assert(0 <= dir && dir < 8);
return *this + d8[dir];
}
auto move8() const {
return std::views::iota(0, 8) | std::views::transform([this](int dir) {
return this->move8(dir);
});
}
bool contains(const Coord& t) const {
return 0 <= t.r() && t.r() < r() && 0 <= t.c() && t.c() < c();
}
struct CellsRangeView {
struct Iterator {
using value_type = Coord;
using difference_type = std::ptrdiff_t;
int h, w, r, c;
value_type operator*() const { return Coord{r, c}; }
Iterator& operator++() {
if (++c == w) {
c = 0;
++r;
}
return *this;
}
Iterator operator++(int) {
Iterator tmp = *this;
++(*this);
return tmp;
}
bool operator==(const Iterator& other) const {
return r == other.r && c == other.c;
}
};
Iterator begin() const { return Iterator{h, w, 0, 0}; }
Iterator end() const { return Iterator{h, w, h, 0}; }
int h, w;
};
CellsRangeView cells() const { return CellsRangeView{r(), c()}; }
private:
std::array<int, 2> d;
};
} // namespace yosupo
#include <algorithm>
#include <concepts>
#include <map>
#include <set>
#include <tuple>
#include <vector>
#include <cstdint>
namespace yosupo {
using i8 = int8_t;
using u8 = uint8_t;
using i16 = int16_t;
using u16 = uint16_t;
using i32 = int32_t;
using u32 = uint32_t;
using i64 = int64_t;
using u64 = uint64_t;
using i128 = __int128;
using u128 = unsigned __int128;
using f32 = float;
using f64 = double;
} // namespace yosupo
namespace yosupo {
inline std::string dump(const std::string& t) { return t; }
inline std::string dump(const char* t) { return t; }
template <std::integral T> std::string dump(T t) { return std::to_string(t); }
inline std::string dump(const u128& t) {
if (t == 0) {
return "0";
}
std::string s;
u128 x = t;
while (x) {
s += char(x % 10 + '0');
x /= 10;
}
std::ranges::reverse(s);
return s;
}
inline std::string dump(const i128& t) {
if (t < 0) {
return "-" + dump((u128)(-t));
} else {
return dump((u128)(t));
}
}
template <std::floating_point T> std::string dump(T t) {
return std::to_string(t);
}
template <class T>
requires requires(T t) { t.dump(); }
std::string dump(T t);
template <class T>
requires(!requires(T t) { t.dump(); }) && (requires(T t) { t.val(); })
std::string dump(T t);
template <class T, std::size_t N> std::string dump(const std::array<T, N>&);
template <class T> std::string dump(const std::vector<T>&);
template <class T1, class T2> std::string dump(const std::pair<T1, T2>&);
template <class K, class V> std::string dump(const std::map<K, V>&);
template <class T> std::string dump(const std::set<T>&);
template <class... Ts> std::string dump(const std::tuple<Ts...>& t);
template <class T>
requires requires(T t) { t.dump(); }
std::string dump(T t) {
return dump(t.dump());
}
template <class T>
requires(!requires(T t) { t.dump(); }) && (requires(T t) { t.val(); })
std::string dump(T t) {
return dump(t.val());
}
template <class T, std::size_t N> std::string dump(const std::array<T, N>& a) {
std::string s = "[";
for (size_t i = 0; i < N; i++) {
if (i) {
s += ", ";
}
s += dump(a[i]);
}
s += "]";
return s;
}
template <class T> std::string dump(const std::vector<T>& v) {
std::string s = "[";
for (std::size_t i = 0; i < v.size(); ++i) {
s += dump(v[i]);
if (i + 1 != v.size()) {
s += ", ";
}
}
s += "]";
return s;
}
template <class T1, class T2> std::string dump(const std::pair<T1, T2>& p) {
std::string s = "(";
s += dump(p.first);
s += ", ";
s += dump(p.second);
s += ")";
return s;
}
template <class K, class V> std::string dump(const std::map<K, V>& m) {
std::string s = "{";
for (auto it = m.begin(); it != m.end(); ++it) {
if (it != m.begin()) {
s += ", ";
}
s += dump(it->first);
s += ": ";
s += dump(it->second);
}
s += "}";
return s;
}
template <class T> std::string dump(const std::set<T>& s) {
std::string str = "{";
for (auto it = s.begin(); it != s.end(); ++it) {
if (it != s.begin()) {
str += ", ";
}
str += dump(*it);
}
str += "}";
return str;
}
template <class... Ts> std::string dump(const std::tuple<Ts...>& t) {
std::string s = "(";
[&]<std::size_t... I>(std::index_sequence<I...>) {
((s += dump(std::get<I>(t)) + ((I < sizeof...(Ts) - 1) ? ", " : "")),
...);
}(std::make_index_sequence<sizeof...(Ts)>());
s += ")";
return s;
}
} // namespace yosupo
namespace yosupo {
template <class T, int H, int W> struct Array2D {
static_assert(H >= 0 && W >= 0);
std::array<T, H * W> d;
Array2D() : d{} {}
Array2D(const T& val) { d.fill(val); }
Array2D(std::initializer_list<std::initializer_list<T>> list) {
assert(static_cast<int>(list.size()) == H);
int i = 0;
for (const auto& inner_list : list) {
assert(static_cast<int>(inner_list.size()) == W);
std::copy_n(inner_list.begin(), W, d.data() + i * W);
i++;
}
}
T& operator[](const Coord& idx) {
assert(0 <= idx.r() && idx.r() < H);
assert(0 <= idx.c() && idx.c() < W);
return d[idx.r() * W + idx.c()];
}
const T& operator[](const Coord& idx) const {
assert(0 <= idx.r() && idx.r() < H);
assert(0 <= idx.c() && idx.c() < W);
return d[idx.r() * W + idx.c()];
}
static Array2D e() {
static_assert(H == W);
Array2D mat;
for (int i = 0; i < H; i++) {
mat[{i, i}] = T(1);
}
return mat;
}
Array2D& operator+=(const Array2D& rhs) {
for (int i = 0; i < H * W; i++) {
d[i] += rhs.d[i];
}
return *this;
}
Array2D& operator-=(const Array2D& rhs) {
for (int i = 0; i < H * W; i++) {
d[i] -= rhs.d[i];
}
return *this;
}
friend Array2D operator+(const Array2D& lhs, const Array2D& rhs) {
return Array2D(lhs) += rhs;
}
friend Array2D operator-(const Array2D& lhs, const Array2D& rhs) {
return Array2D(lhs) -= rhs;
}
template <int K>
friend Array2D<T, H, K> operator*(const Array2D& lhs,
const Array2D<T, W, K>& rhs) {
Array2D<T, H, K> res;
Array2D<T, K, W> rhs_t = rhs.transpose();
for (int i = 0; i < H; i++) {
for (int j = 0; j < K; j++) {
for (int k = 0; k < W; k++) {
res[{i, j}] += lhs[{i, k}] * rhs_t[{j, k}];
}
}
}
return res;
}
Array2D& operator*=(const Array2D& r) {
static_assert(H == W);
return *this = *this * r;
}
Array2D<T, W, H> transpose() const {
Array2D<T, W, H> res;
for (int i = 0; i < H; i++) {
for (int j = 0; j < W; j++) {
res[{j, i}] = (*this)[{i, j}];
}
}
return res;
}
Array2D pow(long long n) const {
static_assert(H == W);
Array2D x = *this, r = e();
while (n) {
if (n & 1) r *= x;
x *= x;
n >>= 1;
}
return r;
}
std::string dump() const {
std::string res;
for (int i = 0; i < H; i++) {
if (i) res += "\n";
for (int j = 0; j < W; j++) {
if (j) res += " ";
res += yosupo::dump((*this)[{i, j}]);
}
}
return res;
}
constexpr int height() const { return H; }
constexpr int width() const { return W; }
};
} // namespace yosupo
#include <stdio.h>
#include <unistd.h>
#include <bit>
#include <cctype>
#include <cstdio>
#include <cstring>
#include <sstream>
#include <type_traits>
namespace yosupo {
namespace internal {
template <class T>
using is_signed_int128 =
typename std::conditional<std::is_same<T, __int128_t>::value ||
std::is_same<T, __int128>::value,
std::true_type,
std::false_type>::type;
template <class T>
using is_unsigned_int128 =
typename std::conditional<std::is_same<T, __uint128_t>::value ||
std::is_same<T, unsigned __int128>::value,
std::true_type,
std::false_type>::type;
template <class T>
using make_unsigned_int128 =
typename std::conditional<std::is_same<T, __int128_t>::value,
__uint128_t,
unsigned __int128>;
template <class T>
using is_integral =
typename std::conditional<std::is_integral<T>::value ||
internal::is_signed_int128<T>::value ||
internal::is_unsigned_int128<T>::value,
std::true_type,
std::false_type>::type;
template <class T>
using is_signed_int = typename std::conditional<(is_integral<T>::value &&
std::is_signed<T>::value) ||
is_signed_int128<T>::value,
std::true_type,
std::false_type>::type;
template <class T>
using is_unsigned_int =
typename std::conditional<(is_integral<T>::value &&
std::is_unsigned<T>::value) ||
is_unsigned_int128<T>::value,
std::true_type,
std::false_type>::type;
template <class T>
using to_unsigned = typename std::conditional<
is_signed_int128<T>::value,
make_unsigned_int128<T>,
typename std::conditional<std::is_signed<T>::value,
std::make_unsigned<T>,
std::common_type<T>>::type>::type;
template <class T>
using is_integral_t = std::enable_if_t<is_integral<T>::value>;
template <class T>
using is_signed_int_t = std::enable_if_t<is_signed_int<T>::value>;
template <class T>
using is_unsigned_int_t = std::enable_if_t<is_unsigned_int<T>::value>;
template <class T> using to_unsigned_t = typename to_unsigned<T>::type;
} // namespace internal
} // namespace yosupo
namespace yosupo {
struct Scanner {
public:
Scanner(const Scanner&) = delete;
Scanner& operator=(const Scanner&) = delete;
Scanner(FILE* fp) : fd(fileno(fp)) { line[0] = 127; }
void read() {}
template <class H, class... T> void read(H& h, T&... t) {
bool f = read_single(h);
assert(f);
read(t...);
}
int read_unsafe() { return 0; }
template <class H, class... T> int read_unsafe(H& h, T&... t) {
bool f = read_single(h);
if (!f) return 0;
return 1 + read_unsafe(t...);
}
int close() { return ::close(fd); }
private:
static constexpr int SIZE = 1 << 15;
int fd = -1;
std::array<char, SIZE + 1> line;
int st = 0, ed = 0;
bool eof = false;
bool read_single(std::string& ref) {
if (!skip_space()) return false;
ref = "";
while (true) {
char c = top();
if (c <= ' ') break;
ref += c;
st++;
}
return true;
}
bool read_single(double& ref) {
std::string s;
if (!read_single(s)) return false;
ref = std::stod(s);
return true;
}
template <class T,
std::enable_if_t<std::is_same<T, char>::value>* = nullptr>
bool read_single(T& ref) {
if (!skip_space<50>()) return false;
ref = top();
st++;
return true;
}
template <class T,
internal::is_signed_int_t<T>* = nullptr,
std::enable_if_t<!std::is_same<T, char>::value>* = nullptr>
bool read_single(T& sref) {
using U = internal::to_unsigned_t<T>;
if (!skip_space<50>()) return false;
bool neg = false;
if (line[st] == '-') {
neg = true;
st++;
}
U ref = 0;
do {
ref = 10 * ref + (line[st++] & 0x0f);
} while (line[st] >= '0');
sref = neg ? -ref : ref;
return true;
}
template <class U,
internal::is_unsigned_int_t<U>* = nullptr,
std::enable_if_t<!std::is_same<U, char>::value>* = nullptr>
bool read_single(U& ref) {
if (!skip_space<50>()) return false;
ref = 0;
do {
ref = 10 * ref + (line[st++] & 0x0f);
} while (line[st] >= '0');
return true;
}
bool reread() {
if (ed - st >= 50) return true;
if (st > SIZE / 2) {
std::memmove(line.data(), line.data() + st, ed - st);
ed -= st;
st = 0;
}
if (eof) return false;
auto u = ::read(fd, line.data() + ed, SIZE - ed);
if (u == 0) {
eof = true;
line[ed] = '\0';
u = 1;
}
ed += int(u);
line[ed] = char(127);
return true;
}
char top() {
if (st == ed) {
bool f = reread();
assert(f);
}
return line[st];
}
template <int TOKEN_LEN = 0> bool skip_space() {
while (true) {
while (line[st] <= ' ') st++;
if (ed - st > TOKEN_LEN) return true;
if (st > ed) st = ed;
for (auto i = st; i < ed; i++) {
if (line[i] <= ' ') return true;
}
if (!reread()) return false;
}
}
};
struct Printer {
public:
template <char sep = ' ', bool F = false> void write() {}
template <char sep = ' ', bool F = false, class H, class... T>
void write(const H& h, const T&... t) {
if (F) write_single(sep);
write_single(h);
write<true>(t...);
}
template <char sep = ' ', class... T> void writeln(const T&... t) {
write<sep>(t...);
write_single('\n');
}
Printer(FILE* _fp) : fd(fileno(_fp)) {}
~Printer() { flush(); }
int close() {
flush();
return ::close(fd);
}
void flush() {
if (pos) {
auto res = ::write(fd, line.data(), pos);
assert(res != -1);
pos = 0;
}
}
private:
static std::array<std::array<char, 2>, 100> small;
static std::array<unsigned long long, 20> tens;
static constexpr size_t SIZE = 1 << 15;
int fd;
std::array<char, SIZE> line;
size_t pos = 0;
std::stringstream ss;
template <class T,
std::enable_if_t<std::is_same<char, T>::value>* = nullptr>
void write_single(const T& val) {
if (pos == SIZE) flush();
line[pos++] = val;
}
template <class T,
internal::is_signed_int_t<T>* = nullptr,
std::enable_if_t<!std::is_same<char, T>::value>* = nullptr>
void write_single(const T& val) {
using U = internal::to_unsigned_t<T>;
if (val == 0) {
write_single('0');
return;
}
if (pos > SIZE - 50) flush();
U uval = val;
if (val < 0) {
write_single('-');
uval = -uval;
}
write_unsigned(uval);
}
template <class U,
internal::is_unsigned_int_t<U>* = nullptr,
std::enable_if_t<!std::is_same<char, U>::value>* = nullptr>
void write_single(U uval) {
if (uval == 0) {
write_single('0');
return;
}
if (pos > SIZE - 50) flush();
write_unsigned(uval);
}
static int calc_len(uint64_t x) {
int i = ((63 - std::countl_zero(x)) * 3 + 3) / 10;
if (x < tens[i])
return i;
else
return i + 1;
}
template <class U,
internal::is_unsigned_int_t<U>* = nullptr,
std::enable_if_t<2 >= sizeof(U)>* = nullptr>
void write_unsigned(U uval) {
size_t len = calc_len(uval);
pos += len;
char* ptr = line.data() + pos;
while (uval >= 100) {
ptr -= 2;
memcpy(ptr, small[uval % 100].data(), 2);
uval /= 100;
}
if (uval >= 10) {
memcpy(ptr - 2, small[uval].data(), 2);
} else {
*(ptr - 1) = char('0' + uval);
}
}
template <class U,
internal::is_unsigned_int_t<U>* = nullptr,
std::enable_if_t<4 == sizeof(U)>* = nullptr>
void write_unsigned(U uval) {
std::array<char, 8> buf;
memcpy(buf.data() + 6, small[uval % 100].data(), 2);
memcpy(buf.data() + 4, small[uval / 100 % 100].data(), 2);
memcpy(buf.data() + 2, small[uval / 10000 % 100].data(), 2);
memcpy(buf.data() + 0, small[uval / 1000000 % 100].data(), 2);
if (uval >= 100000000) {
if (uval >= 1000000000) {
memcpy(line.data() + pos, small[uval / 100000000 % 100].data(),
2);
pos += 2;
} else {
line[pos] = char('0' + uval / 100000000);
pos++;
}
memcpy(line.data() + pos, buf.data(), 8);
pos += 8;
} else {
size_t len = calc_len(uval);
memcpy(line.data() + pos, buf.data() + (8 - len), len);
pos += len;
}
}
template <class U,
internal::is_unsigned_int_t<U>* = nullptr,
std::enable_if_t<8 == sizeof(U)>* = nullptr>
void write_unsigned(U uval) {
size_t len = calc_len(uval);
pos += len;
char* ptr = line.data() + pos;
while (uval >= 100) {
ptr -= 2;
memcpy(ptr, small[uval % 100].data(), 2);
uval /= 100;
}
if (uval >= 10) {
memcpy(ptr - 2, small[uval].data(), 2);
} else {
*(ptr - 1) = char('0' + uval);
}
}
template <
class U,
std::enable_if_t<internal::is_unsigned_int128<U>::value>* = nullptr>
void write_unsigned(U uval) {
static std::array<char, 50> buf;
size_t len = 0;
while (uval > 0) {
buf[len++] = char((uval % 10) + '0');
uval /= 10;
}
std::reverse(buf.begin(), buf.begin() + len);
memcpy(line.data() + pos, buf.data(), len);
pos += len;
}
void write_single(const std::string& s) {
for (char c : s) write_single(c);
}
void write_single(const char* s) {
size_t len = strlen(s);
for (size_t i = 0; i < len; i++) write_single(s[i]);
}
template <class T> void write_single(const std::vector<T>& val) {
auto n = val.size();
for (size_t i = 0; i < n; i++) {
if (i) write_single(' ');
write_single(val[i]);
}
}
};
inline std::array<std::array<char, 2>, 100> Printer::small = [] {
std::array<std::array<char, 2>, 100> table;
for (int i = 0; i <= 99; i++) {
table[i][1] = char('0' + (i % 10));
table[i][0] = char('0' + (i / 10 % 10));
}
return table;
}();
inline std::array<unsigned long long, 20> Printer::tens = [] {
std::array<unsigned long long, 20> table;
for (int i = 0; i < 20; i++) {
table[i] = 1;
for (int j = 0; j < i; j++) {
table[i] *= 10;
}
}
return table;
}();
} // namespace yosupo
#include <cmath>
#include <limits>
#include <random>
namespace yosupo {
struct Xoshiro256StarStar {
public:
using result_type = u64;
Xoshiro256StarStar() : Xoshiro256StarStar(0) {}
explicit Xoshiro256StarStar(u64 seed) {
// use splitmix64
// Reference: http://xoshiro.di.unimi.it/splitmix64.c
for (int i = 0; i < 4; i++) {
u64 z = (seed += 0x9e3779b97f4a7c15);
z = (z ^ (z >> 30)) * 0xbf58476d1ce4e5b9;
z = (z ^ (z >> 27)) * 0x94d049bb133111eb;
s[i] = z ^ (z >> 31);
}
}
static constexpr result_type min() { return 0; }
static constexpr result_type max() { return -1; }
result_type operator()() {
const u64 result_starstar = rotl(s[1] * 5, 7) * 9;
const u64 t = s[1] << 17;
s[2] ^= s[0];
s[3] ^= s[1];
s[1] ^= s[2];
s[0] ^= s[3];
s[2] ^= t;
s[3] = rotl(s[3], 45);
return result_starstar;
}
private:
// Use xoshiro256**
// Refereces: http://xoshiro.di.unimi.it/xoshiro256starstar.c
static u64 rotl(const u64 x, int k) { return (x << k) | (x >> (64 - k)); }
std::array<u64, 4> s;
};
// https://github.com/wangyi-fudan/wyhash
struct WYRand {
public:
using result_type = u64;
explicit WYRand(u64 seed) : s(seed) {}
static constexpr result_type min() { return 0; }
static constexpr result_type max() { return -1; }
result_type operator()() {
s += 0x2d358dccaa6c78a5;
auto x = (u128)s * (s ^ 0x8bb84b93962eacc9);
return (u64)(x ^ (x >> 64));
}
private:
uint64_t s;
};
using Random = WYRand;
inline Random get_random() { return Random(std::random_device()()); }
namespace internal {
inline Random global_gen = get_random();
}
inline Random& global_gen() { return internal::global_gen; }
template <class G>
concept random_64 = std::uniform_random_bit_generator<G> &&
std::same_as<u64, std::invoke_result_t<G&>> &&
G::min() == u64(0) && G::max() == u64(-1);
namespace internal {
// random choice from [0, upper]
template <random_64 G> u64 uniform_u64(u64 upper, G& gen) {
if (upper == 0) return 0;
u64 mask = (std::bit_floor(upper) << 1) - 1;
while (true) {
u64 r = gen() & mask;
if (r <= upper) return r;
}
}
// random choice from [0, upper], faster than uniform_u64
template <random_64 G> u64 random_u64(u64 upper, G& gen) {
return (u64)(((u128)(upper) + 1) * gen() >> 64);
}
} // namespace internal
template <class T, random_64 G> T uniform(T lower, T upper, G& gen) {
return T(lower + internal::uniform_u64(u64(upper) - u64(lower), gen));
}
template <class T> T uniform(T lower, T upper) {
return uniform(lower, upper, global_gen());
}
template <std::unsigned_integral T, random_64 G> T uniform(G& gen) {
return T(gen());
}
template <std::signed_integral T, random_64 G> T uniform(G& gen) {
return T(gen() + (u64)std::numeric_limits<T>::min());
}
template <class T, random_64 G>
requires requires {
{ T::mod() } -> std::integral;
}
T uniform(G& gen) {
return T(uniform(0, T::mod() - 1, gen));
}
template <class T> T uniform() { return uniform<T>(global_gen()); }
template <class T, random_64 G> T random(T lower, T upper, G& gen) {
return T(lower + internal::random_u64(u64(upper) - u64(lower), gen));
}
template <class T> T random(T lower, T upper) {
return random(lower, upper, global_gen());
}
template <random_64 G> bool uniform_bool(G& gen) { return gen() & 1; }
inline bool uniform_bool() { return uniform_bool(global_gen()); }
// select 2 elements from [lower, uppper]
template <class T, random_64 G>
std::pair<T, T> uniform_pair(T lower, T upper, G& gen) {
assert(upper - lower >= 1);
T a, b;
do {
a = uniform(lower, upper, gen);
b = uniform(lower, upper, gen);
} while (a == b);
if (a > b) std::swap(a, b);
return {a, b};
}
template <class T> std::pair<T, T> uniform_pair(T lower, T upper) {
return uniform_pair(lower, upper, global_gen());
}
// random 0.0 <= X < 1.0
template <class G> inline double random_01(G& gen) {
constexpr double inv = 1.0 / ((double)(u64(1) << 63) * 2);
return double(gen()) * inv;
}
inline double random_01() { return random_01(global_gen()); }
} // namespace yosupo
#include <chrono>
namespace yosupo {
struct StopWatch {
std::chrono::steady_clock::time_point begin;
StopWatch() : begin(std::chrono::steady_clock::now()) {}
int msecs() {
auto now = std::chrono::steady_clock::now();
return int(
duration_cast<std::chrono::milliseconds>(now - begin).count());
}
};
} // namespace yosupo
#include <bitset>
#include <iostream>
#include <queue>
#include <functional>
#include <span>
namespace yosupo {
template <class T> bool chmin(T& a, const T& b) {
if (a > b) {
a = b;
return true;
}
return false;
}
template <class T> bool chmax(T& a, const T& b) {
if (a < b) {
a = b;
return true;
}
return false;
}
template <class T> T floor_div(T x, T y) {
auto d = x / y;
auto r = x % y;
if (r == 0) return d;
if ((r > 0) == (y > 0)) return d;
return d - 1;
}
template <class T> T ceil_div(T x, T y) {
auto d = x / y;
auto r = x % y;
if (r == 0) return d;
if ((r > 0) == (y > 0)) return d + 1;
return d;
}
template <std::ranges::input_range R>
std::vector<std::ranges::range_value_t<R>> to_vec(R&& r) {
auto common = r | std::views::common;
return std::vector(common.begin(), common.end());
}
template <class T, class Comp = std::equal_to<>>
void dedup(std::vector<T>& v, Comp comp = Comp{}) {
auto it = std::ranges::unique(v, comp);
v.erase(it.begin(), it.end());
}
template <size_t N, class T> std::span<T, N> subspan(std::span<T> a, int idx) {
return a.subspan(idx).template first<N>();
}
inline auto rep(int l, int r) {
if (l > r) return std::views::iota(l, l);
return std::views::iota(l, r);
}
} // namespace yosupo
using namespace yosupo;
using std::abs, std::pow, std::sqrt;
using std::array, std::vector, std::string, std::queue, std::deque;
using std::countl_zero, std::countl_one, std::countr_zero, std::countr_one;
using std::istream, std::ostream, std::cerr, std::endl;
using std::min, std::max, std::swap;
using std::pair, std::tuple, std::bitset;
using std::popcount;
using std::priority_queue, std::set, std::multiset, std::map;
using std::views::iota, std::views::reverse;
namespace ranges = std::ranges;
using ranges::sort, ranges::copy_n;
using uint = unsigned int;
using ll = long long;
using ull = unsigned long long;
constexpr ll TEN(int n) { return (n == 0) ? 1 : 10 * TEN(n - 1); }
template <class T> using V = vector<T>;
template <class T> using VV = V<V<T>>;
#ifdef YOSUPO_LOCAL
struct PrettyOS {
ostream& os;
bool first;
template <class T> auto operator<<(T&& x) {
if (!first) os << ", ";
first = false;
os << yosupo::dump(x);
return *this;
}
};
template <class... T> void dbg0(T&&... t) {
(PrettyOS{cerr, true} << ... << t);
}
#define dbg(...) \
do { \
cerr << __LINE__ << " : " << #__VA_ARGS__ << " = "; \
dbg0(__VA_ARGS__); \
cerr << endl; \
} while (false);
#else
#define dbg(...)
#endif
static inline Scanner sc = Scanner(stdin);
const int N = 30;
const Coord BOARD_SIZE = Coord(N, N); // Board size
const int M = []() { // # of robots
int m;
sc.read(m, m); // skip N
return m;
}();
const auto [ROBOTS, GOALS] = []() {
V<Coord> robots(M), goals(M);
for (int i : iota(0, M)) {
int r, c, gr, gc;
sc.read(r, c, gr, gc);
robots[i] = Coord(r, c);
goals[i] = Coord(gr, gc);
}
return make_pair(robots, goals);
}();
using Wall = Array2D<bool, 2 * N - 1, 2 * N - 1>;
const Wall WALL = []() {
Wall wall;
for (int r : iota(0, N)) {
string s;
sc.read(s);
for (int c : iota(0, N - 1)) {
wall[{2 * r, 2 * c + 1}] = (s[c] == '1');
}
}
for (int r : iota(0, N - 1)) {
string s;
sc.read(s);
for (int c : iota(0, N)) {
wall[{2 * r + 1, 2 * c}] = (s[c] == '1');
}
}
return wall;
}();
// Check if a robot can move from coord in the given direction
static inline bool can_move(Coord coord, const Wall& wall, int dir) {
Coord next_coord = coord.move4(dir);
// Check bounds
if (!BOARD_SIZE.contains(next_coord)) {
return false;
}
// Check wall between coord and next_coord
bool has_wall = false;
if (dir == 0) { // right
has_wall = wall[{2 * coord.r(), 2 * coord.c() + 1}];
} else if (dir == 1) { // down
has_wall = wall[{2 * coord.r() + 1, 2 * coord.c()}];
} else if (dir == 2) { // left
has_wall = wall[{2 * next_coord.r(), 2 * next_coord.c() + 1}];
} else { // up
has_wall = wall[{2 * next_coord.r() + 1, 2 * next_coord.c()}];
}
return !has_wall;
}
// Function to calculate distance to goal for each robot given a wall
// configuration
static inline V<Array2D<int, N, N>> calc_distances_to_goals(const Wall& wall) {
V<Array2D<int, N, N>> dist_arrays(M);
for (int robot_id = 0; robot_id < M; robot_id++) {
Coord goal = GOALS[robot_id];
Array2D<int, N, N>& dist = dist_arrays[robot_id];
// Initialize distances to 10000 (unreachable)
for (int r = 0; r < N; r++) {
for (int c = 0; c < N; c++) {
dist[{r, c}] = 10000;
}
}
// BFS from goal
queue<Coord> q;
q.push(goal);
dist[goal] = 0;
while (!q.empty()) {
Coord cur = q.front();
q.pop();
for (int d = 0; d < 4; d++) {
Coord nxt = cur.move4(d);
// Check if move is valid using can_move function
if (!can_move(cur, wall, d)) continue;
// Check if already visited
if (dist[nxt] != 10000) continue;
// Valid move
dist[nxt] = dist[cur] + 1;
q.push(nxt);
}
}
}
return dist_arrays;
}
// Direction mapping: 0=right, 1=down, 2=left, 3=up
static inline Printer pr = Printer(stdout);
struct OP {
bool is_group; // true: group operation, false: single operation
int id; // group id or robot id
int dir; // 0: right, 1: down, 2: left, 3: up
static OP single(int robot_id, int dir) { return {false, robot_id, dir}; }
static OP group(int group_id, int dir) { return {true, group_id, dir}; }
};
using Group = VV<int>;
struct Board {
Wall wall; // additional wall
Group group; // robot grouping information
V<Array2D<int, N, N>> dist_to_goal; // distance arrays for each robot
Board() = default;
Board(const Wall& wall, const VV<int>& group) : wall(wall), group(group) {
// Validate that original walls are preserved
for (auto r : iota(0, 2 * N - 1)) {
for (auto c : iota(0, 2 * N - 1)) {
if (WALL[{r, c}]) {
bool has_wall = wall[{r, c}];
assert(has_wall);
}
}
}
dist_to_goal = calc_distances_to_goals(wall);
}
};
struct Answer {
Board board;
V<OP> ops;
};
static inline void print_answer(const Answer& answer) {
// Print vertical walls
for (int r = 0; r < N; r++) {
for (int c = 0; c < N - 1; c++) {
bool original_wall = WALL[{2 * r, 2 * c + 1}];
bool additional_wall = answer.board.wall[{2 * r, 2 * c + 1}];
bool has_wall = additional_wall || original_wall;
// Assert: if original wall exists, we must output 1
if (original_wall) {
assert(has_wall && "Original wall position must output 1");
}
pr.write(has_wall ? '1' : '0');
}
pr.writeln();
}
// Print horizontal walls
for (int r = 0; r < N - 1; r++) {
for (int c = 0; c < N; c++) {
bool original_wall = WALL[{2 * r + 1, 2 * c}];
bool additional_wall = answer.board.wall[{2 * r + 1, 2 * c}];
bool has_wall = additional_wall || original_wall;
// Assert: if original wall exists, we must output 1
if (original_wall) {
assert(has_wall && "Original wall position must output 1");
}
pr.write(has_wall ? '1' : '0');
}
pr.writeln();
}
V<int> group_id(M);
int K = int(answer.board.group.size());
for (int i : iota(0, K)) {
for (int j : answer.board.group[i]) {
group_id[j] = i;
}
}
for (int i = 0; i < M; i++) {
if (i > 0) pr.write(' ');
pr.write(group_id[i]);
}
pr.writeln();
// Print operations
for (const auto& op : answer.ops) {
pr.write(op.is_group ? 'g' : 'i');
pr.write(' ');
if (op.is_group) {
// Use compressed group ID for group operations
pr.write(op.id);
} else {
// Robot ID remains the same
pr.write(op.id);
}
pr.write(' ');
// Convert direction: 0=right, 1=down, 2=left, 3=up
const char dir_chars[] = {'R', 'D', 'L', 'U'};
pr.write(dir_chars[op.dir]);
pr.writeln();
}
}
class State {
public:
V<Coord> positions;
array<u32, N> occupied;
State() : positions(M) {
// Initialize occupied grid
for (int r = 0; r < N; r++) {
occupied[r] = 0;
}
}
State(const V<Coord>& pos) : positions(pos) {
// Initialize occupied grid
for (int r = 0; r < N; r++) {
occupied[r] = 0;
}
// Mark occupied positions
for (const auto& coord : positions) {
occupied[coord.r()] |= (1u << coord.c());
}
}
// Move robot and update occupied grid
void move_robot(int robot_id, Coord new_pos) {
// Clear old position
occupied[positions[robot_id].r()] &= ~(1u << positions[robot_id].c());
// Set new position
positions[robot_id] = new_pos;
occupied[new_pos.r()] |= (1u << new_pos.c());
}
// Check if position is occupied
bool is_occupied(Coord pos) const {
return (occupied[pos.r()] >> pos.c()) & 1;
}
// Equality operator for comparison
bool operator==(const State& other) const {
return positions == other.positions;
}
};
// Apply an operation to a state (modifies state in-place)
static inline void next_state(const Board& board, State& state, const OP& op) {
if (op.is_group) {
// Group operation: move all robots in the group sequentially
// starting from the one furthest in the specified direction
// Get robots in this group (much faster lookup)
const V<int>& group_robots = board.group[op.id];
// Sort robots by position based on movement direction
V<int> sorted_robots =
group_robots; // Make a copy since group_robots is const
if (op.dir == 0) { // right - start from rightmost
ranges::sort(sorted_robots, [&](int a, int b) {
return state.positions[a].c() > state.positions[b].c();
});
} else if (op.dir == 1) { // down - start from bottommost
ranges::sort(sorted_robots, [&](int a, int b) {
return state.positions[a].r() > state.positions[b].r();
});
} else if (op.dir == 2) { // left - start from leftmost
ranges::sort(sorted_robots, [&](int a, int b) {
return state.positions[a].c() < state.positions[b].c();
});
} else { // up - start from topmost
ranges::sort(sorted_robots, [&](int a, int b) {
return state.positions[a].r() < state.positions[b].r();
});
}
// Move each robot in the sorted order
for (int robot_id : sorted_robots) {
// Check if move is valid using can_move function
if (!can_move(state.positions[robot_id], board.wall, op.dir)) {
continue;
}
Coord new_pos = state.positions[robot_id].move4(op.dir);
// Check collision with other robots using faster occupied grid
if (state.is_occupied(new_pos)) continue;
// Valid move - update immediately so next robot sees the new
// position
state.move_robot(robot_id, new_pos);
}
} else {
// Individual operation
int robot_id = op.id;
Coord new_pos = state.positions[robot_id].move4(op.dir);
// Check if move is valid using can_move function
if (can_move(state.positions[robot_id], board.wall, op.dir) &&
!state.is_occupied(new_pos)) {
state.move_robot(robot_id, new_pos);
}
}
}
static inline int calc_score(const Answer& answer) {
// Simulate the answer and calculate score
State positions(ROBOTS);
for (const auto& op : answer.ops) {
next_state(answer.board, positions, op);
}
// Calculate final score
int T = static_cast<int>(answer.ops.size());
int total_distance = 0;
for (int i = 0; i < M; i++) {
int dist = abs(positions.positions[i].r() - GOALS[i].r()) +
abs(positions.positions[i].c() - GOALS[i].c());
total_distance += dist;
}
return T + 100 * total_distance;
}
const int TL = 2000;
Random gen = Random(12345);
StopWatch global_sw = StopWatch();
// BFS to find path from start to goal
V<int> bfs_find_path(Coord start,
Coord goal,
const State& state,
const Wall& wall) {
if (start == goal) return {};
static Array2D<Coord, N, N> parent;
static Array2D<int, N, N> dir_taken;
array<u32, N> visited = {};
static V<Coord> st;
st.clear();
st.push_back(start);
parent[start] = start;
visited[start.r()] |= (1u << start.c());
int pos = 0;
while (pos < int(st.size())) {
Coord cur = st[pos++];
for (int d = 0; d < 4; d++) {
Coord nxt = cur.move4(d);
// Check bounds
if (!BOARD_SIZE.contains(nxt)) {
continue;
}
// Check if move is valid using can_move function
if (!can_move(cur, wall, d)) continue;
// Occupied
if (state.is_occupied(nxt)) continue;
// If not visited
if (visited[nxt.r()] & (1u << nxt.c())) continue;
visited[nxt.r()] |= (1u << nxt.c());
parent[nxt] = cur;
dir_taken[nxt] = d;
st.push_back(nxt);
if (nxt == goal) {
// Reconstruct path
V<int> path;
Coord p = goal;
while (p != start) {
path.push_back(dir_taken[p]);
p = parent[p];
}
ranges::reverse(path);
return path;
}
}
}
return {}; // No path found
}
// Greedy strategy: find reachable robots and move them to goals
V<OP> greedy(const Board& board, State state) {
V<OP> ops;
while (true) {
bool moved = false;
// Try to move each robot to its goal
for (int i = 0; i < M; i++) {
if (state.positions[i] == GOALS[i]) continue;
// Try to find path to goal
V<int> path =
bfs_find_path(state.positions[i], GOALS[i], state, board.wall);
if (int(path.size()) !=
board.dist_to_goal[i][{state.positions[i]}]) {
// If path length doesn't match expected distance, skip
continue;
}
if (!path.empty()) {
// Move robot along the path
for (int dir : path) {
OP op = OP::single(i, dir);
ops.push_back(op);
// Update position using next_state
next_state(board, state, op);
}
assert(state.positions[i] == GOALS[i]);
moved = true;
break;
}
}
// If no robot could move, we're stuck
if (moved) continue;
// Try to move each robot to its goal
for (int i = 0; i < M; i++) {
if (state.positions[i] == GOALS[i]) continue;
// Try to find path to goal
V<int> path =
bfs_find_path(state.positions[i], GOALS[i], state, board.wall);
if (!path.empty()) {
// Move robot along the path
for (int dir : path) {
OP op = OP::single(i, dir);
ops.push_back(op);
// Update position using next_state
next_state(board, state, op);
}
// If we reached the goal, break
assert(state.positions[i] == GOALS[i]);
moved = true;
break;
}
}
if (moved) continue;
// stucked
break;
}
return ops;
}
// Evaluation function: sum of Manhattan distances to goals
int evaluate_state(const Board& board, const State& state) {
int total_distance = 0;
for (int i = 0; i < M; i++) {
total_distance += board.dist_to_goal[i][{state.positions[i]}];
}
return total_distance;
}
// Calculate score difference without copying state
// Returns the improvement (positive means better)
int calculate_group_move_delta(const Board& board,
const State& state,
int gid,
int dir,
const V<int>& group_robots) {
int delta = 0;
auto temp_occupied_mask = state.occupied;
// Calculate delta for each robot that can move
for (int robot_id : group_robots) {
// 現在の位置は元のstateから取得
Coord cur_pos = state.positions[robot_id];
Coord new_pos = cur_pos.move4(dir);
// temp_state.is_occupied(new_pos) の代わりに、
// コピーしたビットマスクで占有判定を行う
bool is_new_pos_occupied =
(temp_occupied_mask[new_pos.r()] >> new_pos.c()) & 1u;
if (can_move(cur_pos, board.wall, dir) &&
BOARD_SIZE.contains(new_pos) && !is_new_pos_occupied) {
// This robot can move
delta += board.dist_to_goal[robot_id][{cur_pos}] -
board.dist_to_goal[robot_id][{new_pos}];
// Update temp mask for next robot check
// temp_state.move_robot(robot_id, new_pos) の代わりに、
// ビットマスクを直接操作する
temp_occupied_mask[cur_pos.r()] &= ~(1u << cur_pos.c());
temp_occupied_mask[new_pos.r()] |= (1u << new_pos.c());
}
}
return delta;
}
int calculate_move_delta(const Board& board, const State& state, OP op) {
int delta = 0;
if (!op.is_group) {
// Single robot move (変更なし)
int robot_id = op.id;
Coord cur_pos = state.positions[robot_id];
Coord new_pos = cur_pos.move4(op.dir);
// Check if move is valid
if (!can_move(cur_pos, board.wall, op.dir) ||
!BOARD_SIZE.contains(new_pos) || state.is_occupied(new_pos)) {
return 0; // No improvement if move is invalid
}
// Calculate distance change
delta = board.dist_to_goal[robot_id][{cur_pos}] -
board.dist_to_goal[robot_id][{new_pos}];
} else {
// Group move
V<int> group_robots = board.group[op.id]; // Make a copy for sorting
// Sort robots based on movement direction (変更なし)
if (op.dir == 0) { // Right
sort(group_robots.begin(), group_robots.end(), [&](int a, int b) {
return state.positions[a].c() > state.positions[b].c();
});
} else if (op.dir == 1) { // Down
sort(group_robots.begin(), group_robots.end(), [&](int a, int b) {
return state.positions[a].r() > state.positions[b].r();
});
} else if (op.dir == 2) { // Left
sort(group_robots.begin(), group_robots.end(), [&](int a, int b) {
return state.positions[a].c() < state.positions[b].c();
});
} else { // Up
sort(group_robots.begin(), group_robots.end(), [&](int a, int b) {
return state.positions[a].r() < state.positions[b].r();
});
}
// --- ここからが最適化のポイント ---
// State全体ではなく、occupied_maskのみをコピーする
auto temp_occupied_mask = state.occupied;
// Calculate delta for each robot that can move
for (int robot_id : group_robots) {
// 現在の位置は元のstateから取得
Coord cur_pos = state.positions[robot_id];
Coord new_pos = cur_pos.move4(op.dir);
// temp_state.is_occupied(new_pos) の代わりに、
// コピーしたビットマスクで占有判定を行う
bool is_new_pos_occupied =
(temp_occupied_mask[new_pos.r()] >> new_pos.c()) & 1u;
if (can_move(cur_pos, board.wall, op.dir) &&
BOARD_SIZE.contains(new_pos) && !is_new_pos_occupied) {
// This robot can move
delta += board.dist_to_goal[robot_id][{cur_pos}] -
board.dist_to_goal[robot_id][{new_pos}];
// Update temp mask for next robot check
// temp_state.move_robot(robot_id, new_pos) の代わりに、
// ビットマスクを直接操作する
temp_occupied_mask[cur_pos.r()] &= ~(1u << cur_pos.c());
temp_occupied_mask[new_pos.r()] |= (1u << new_pos.c());
}
}
}
return delta;
}
/*
// Calculate score difference without copying state
// Returns the improvement (positive means better)
int calculate_move_delta(const Board& board, const State& state, OP op) {
int delta = 0;
if (!op.is_group) {
// Single robot move
int robot_id = op.id;
Coord cur_pos = state.positions[robot_id];
Coord new_pos = cur_pos.move4(op.dir);
// Check if move is valid
if (!can_move(cur_pos, board.wall, op.dir) ||
!BOARD_SIZE.contains(new_pos) ||
state.is_occupied(new_pos)) {
return 0; // No improvement if move is invalid
}
// Calculate distance change
delta = board.dist_to_goal[robot_id][{cur_pos}] -
board.dist_to_goal[robot_id][{new_pos}];
} else {
// Group move
V<int> group_robots = board.group[op.id]; // Make a copy for sorting
// Sort robots based on movement direction
if (op.dir == 0) { // Right
sort(group_robots.begin(), group_robots.end(), [&](int a, int b) {
return state.positions[a].c() > state.positions[b].c();
});
} else if (op.dir == 1) { // Down
sort(group_robots.begin(), group_robots.end(), [&](int a, int b) {
return state.positions[a].r() > state.positions[b].r();
});
} else if (op.dir == 2) { // Left
sort(group_robots.begin(), group_robots.end(), [&](int a, int b) {
return state.positions[a].c() < state.positions[b].c();
});
} else { // Up
sort(group_robots.begin(), group_robots.end(), [&](int a, int b) {
return state.positions[a].r() < state.positions[b].r();
});
}
// Track which positions will be occupied after moves
State temp_state = state;
// Calculate delta for each robot that can move
for (int robot_id : group_robots) {
Coord cur_pos = temp_state.positions[robot_id];
Coord new_pos = cur_pos.move4(op.dir);
if (can_move(cur_pos, board.wall, op.dir) &&
BOARD_SIZE.contains(new_pos) &&
!temp_state.is_occupied(new_pos)) {
// This robot can move
delta += board.dist_to_goal[robot_id][{cur_pos}] -
board.dist_to_goal[robot_id][{new_pos}];
// Update temp state for next robot check
temp_state.move_robot(robot_id, new_pos);
}
}
}
return delta;
}*/
struct OPBlock {
int gid; // group ID
int dir;
};
struct ANNState {
Board board;
V<OPBlock> blocks;
};
int score_ann_state(const ANNState& ann_state) {
State state(ROBOTS);
int current_eval = evaluate_state(ann_state.board, state);
int ops_count = 0;
// Execute op blocks
for (const auto& block : ann_state.blocks) {
// Group move
V<int> group_robots =
ann_state.board.group[block.gid]; // Make a copy for sorting
// Sort robots based on movement direction (変更なし)
if (block.dir == 0) { // Right
sort(group_robots.begin(), group_robots.end(), [&](int a, int b) {
return state.positions[a].c() > state.positions[b].c();
});
} else if (block.dir == 1) { // Down
sort(group_robots.begin(), group_robots.end(), [&](int a, int b) {
return state.positions[a].r() > state.positions[b].r();
});
} else if (block.dir == 2) { // Left
sort(group_robots.begin(), group_robots.end(), [&](int a, int b) {
return state.positions[a].c() < state.positions[b].c();
});
} else { // Up
sort(group_robots.begin(), group_robots.end(), [&](int a, int b) {
return state.positions[a].r() < state.positions[b].r();
});
}
while (true) {
// Calculate improvement without state copy
int improvement = calculate_group_move_delta(
ann_state.board, state, block.gid, block.dir, group_robots);
if (improvement >= 1) {
OP candidate_op = OP::group(block.gid, block.dir);
next_state(ann_state.board, state, candidate_op);
current_eval -= improvement;
ops_count++;
} else {
break;
}
}
}
return ops_count + current_eval;
}
ANNState good_ann_state(int tl) {
StopWatch sw = StopWatch();
// Start with all robots in separate groups (each robot is its own group)
ANNState cur_state = [&]() {
VV<int> cur_groups;
for (int i = 0; i < M; i++) {
cur_groups.push_back({i});
}
V<OPBlock> cur_blocks;
for (int i : iota(0, M)) {
for (int d : iota(0, 4)) {
cur_blocks.push_back({i, d});
}
}
return ANNState(Board(WALL, cur_groups), cur_blocks);
}();
int cur_score = score_ann_state(cur_state);
int try_count = 0;
int best_score = cur_score;
ANNState best_state = cur_state;
dbg(cur_score);
const double START_TEMP = 8.0;
const double END_TEMP = 0.01;
// Simulated annealing
while (true) {
// remove empty vectors from cur_state
for (auto& g : cur_state.board.group) {
assert(!g.empty());
}
int msecs = sw.msecs();
if (msecs > tl) {
break;
}
double t = (double)msecs / tl;
double temperature = std::lerp(START_TEMP, END_TEMP, t);
try_count++;
if (try_count % 100 == 0) {
dbg(try_count, temperature, best_score, cur_score);
}
int K = int(cur_state.board.group.size());
// Randomly decide transition type
int type = random(0, 99, gen);
auto try_apply = [&]() {
int new_score = score_ann_state(cur_state);
// Simulated annealing acceptance
int delta = new_score - cur_score;
if (delta <= 0 || random_01(gen) < exp(-delta / temperature)) {
cur_score = new_score;
// Update best if we found a better solution
if (new_score < best_score) {
best_score = new_score;
best_state = cur_state;
dbg(best_score);
}
return true;
} else {
return false;
}
};
if (type < 20) {
if (K < 2) {
continue; // Cannot merge if only one group
}
// Group transition: move element
// Pick two different groups
int from_group =
random(0, (int)cur_state.board.group.size() - 1, gen);
int to_group =
random(0, (int)cur_state.board.group.size() - 1, gen);
if (from_group == to_group) continue; // No move needed
auto pre_group = cur_state.board.group;
auto pre_blocks = cur_state.blocks;
// Move one element from from_group to to_group
int idx = random(
0, (int)cur_state.board.group[from_group].size() - 1, gen);
int robot_id = cur_state.board.group[from_group][idx];
cur_state.board.group[from_group].erase(
cur_state.board.group[from_group].begin() + idx);
cur_state.board.group[to_group].push_back(robot_id);
// If from_group becomes empty, remove it and adjust OPBlock gids
if (cur_state.board.group[from_group].empty()) {
cur_state.board.group.erase(cur_state.board.group.begin() +
from_group);
// Adjust all OPBlock gids
for (auto& block : cur_state.blocks) {
if (block.gid > from_group) {
block.gid--;
} else if (block.gid == from_group) {
// Mark for deletion
block.gid = -1;
}
}
// Remove blocks with invalid gid
std::erase_if(cur_state.blocks, [](const OPBlock& block) {
return block.gid < 0;
});
}
if (!try_apply()) {
// Revert if not accepted
cur_state.board.group = pre_group;
cur_state.blocks = pre_blocks;
}
} else if (type < 40) {
if (K == 1) continue;
// Group transition: swap elements
// Pick two different groups
int group1 = random(0, (int)cur_state.board.group.size() - 1, gen);
int group2 = random(0, (int)cur_state.board.group.size() - 1, gen);
if (group1 == group2) continue; // No swap needed
auto pre_group = cur_state.board.group;
// Swap one element from each group
int idx1 =
random(0, (int)cur_state.board.group[group1].size() - 1, gen);
int idx2 =
random(0, (int)cur_state.board.group[group2].size() - 1, gen);
swap(cur_state.board.group[group1][idx1],
cur_state.board.group[group2][idx2]);
if (!try_apply()) {
// Revert if not accepted
cur_state.board.group = pre_group;
}
} else if (type < 55) {
if (K == 0) continue;
int group_idx = random(0, K - 1, gen);
if (cur_state.board.group[group_idx].size() <= 1) {
// If the group has only one element, skip
continue;
}
auto pre_group = cur_state.board.group;
auto pre_blocks = cur_state.blocks;
int elem_idx = random(
0, (int)cur_state.board.group[group_idx].size() - 1, gen);
int robot_id = cur_state.board.group[group_idx][elem_idx];
cur_state.board.group[group_idx].erase(
cur_state.board.group[group_idx].begin() + elem_idx);
cur_state.board.group.push_back({robot_id});
if (!try_apply()) {
// Revert if not accepted
cur_state.board.group = pre_group;
cur_state.blocks = pre_blocks;
}
} else if (type < 70) {
auto pre_blocks = cur_state.blocks;
// Op block transition: add op block
// Pick random group and direction
int gid = random(0, (int)K - 1, gen);
int dir = random(0, 3, gen);
// Insert at random position
int pos = random(0, (int)cur_state.blocks.size(), gen);
cur_state.blocks.insert(cur_state.blocks.begin() + pos, {gid, dir});
if (!try_apply()) {
// Revert if not accepted
cur_state.blocks = pre_blocks;
}
} else if (type < 80) { // 遷移の確率を10%割り当てる
if (cur_state.blocks.size() < 2) continue;
auto pre_blocks = cur_state.blocks;
// OPブロックリストからランダムに2つ選んで入れ替える
int pos1 = random(0, (int)cur_state.blocks.size() - 2, gen);
int pos2 = random(pos1 + 1, min((int)cur_state.blocks.size() - 1, pos1 + 3), gen);
if (pos1 == pos2) continue;
swap(cur_state.blocks[pos1], cur_state.blocks[pos2]);
if (!try_apply()) {
// 悪化したら元に戻す
cur_state.blocks = pre_blocks;
}
} else {
if (cur_state.blocks.empty()) continue;
auto pre_blocks = cur_state.blocks;
// Op block transition: remove op block
// Remove random op block
int pos = random(0, (int)cur_state.blocks.size() - 1, gen);
cur_state.blocks.erase(cur_state.blocks.begin() + pos);
if (!try_apply()) {
// Revert if not accepted
cur_state.blocks = pre_blocks;
}
}
}
dbg(best_score, global_sw.msecs(), try_count);
return best_state;
}
ANNState good_board(int tl) {
ANNState ann_state = good_ann_state(tl);
return ann_state;
}
V<OP> solve_board(const ANNState& ann_state) {
V<OP> ops;
State state(ROBOTS);
// Execute op blocks according to the ANNState
{
int current_eval = evaluate_state(ann_state.board, state);
// Execute op blocks
for (const auto& block : ann_state.blocks) {
// Group move
V<int> group_robots =
ann_state.board.group[block.gid]; // Make a copy for sorting
// Sort robots based on movement direction (変更なし)
if (block.dir == 0) { // Right
sort(group_robots.begin(), group_robots.end(),
[&](int a, int b) {
return state.positions[a].c() > state.positions[b].c();
});
} else if (block.dir == 1) { // Down
sort(group_robots.begin(), group_robots.end(),
[&](int a, int b) {
return state.positions[a].r() > state.positions[b].r();
});
} else if (block.dir == 2) { // Left
sort(group_robots.begin(), group_robots.end(),
[&](int a, int b) {
return state.positions[a].c() < state.positions[b].c();
});
} else { // Up
sort(group_robots.begin(), group_robots.end(),
[&](int a, int b) {
return state.positions[a].r() < state.positions[b].r();
});
}
while (true) {
// Calculate improvement without state copy
int improvement = calculate_group_move_delta(
ann_state.board, state, block.gid, block.dir, group_robots);
if (improvement >= 1) {
OP candidate_op = OP::group(block.gid, block.dir);
next_state(ann_state.board, state, candidate_op);
current_eval -= improvement;
ops.push_back(candidate_op);
} else {
break;
}
}
}
}
// for (const auto& block : ann_state.blocks) {
// OP candidate_op = OP::group(block.gid, block.dir);
// // Execute this operation multiple times while it improves the state
// while (true) {
// // Calculate improvement without state copy
// int improvement =
// calculate_move_delta(ann_state.board, state, candidate_op);
// if (improvement >= 2) {
// ops.push_back(candidate_op);
// next_state(ann_state.board, state, candidate_op);
// } else {
// break;
// }
// }
// }
int current_eval = evaluate_state(ann_state.board, state);
while (true) {
bool applied = false;
// Try all possible group moves
for (int g : iota(0, (int)ann_state.board.group.size())) {
for (int dir = 0; dir < 4; dir++) {
while (true) {
OP candidate_op = OP::group(g, dir);
State test_state = state;
next_state(ann_state.board, test_state, candidate_op);
int new_eval = evaluate_state(ann_state.board, test_state);
int improvement = current_eval - new_eval;
if (improvement >= 2 && new_eval < current_eval) {
next_state(ann_state.board, state, candidate_op);
current_eval = new_eval;
ops.push_back(candidate_op);
applied = true;
} else {
break;
}
}
}
}
if (!applied) break;
break;
}
// After executing all op blocks, run greedy to complete the solution
V<OP> greedy_ops = greedy(ann_state.board, state);
for (const auto& op : greedy_ops) {
ops.push_back(op);
}
return ops;
}
int main() {
ANNState ann_state = good_board(int(TL * 0.9));
V<OP> ops = solve_board(ann_state);
Answer answer{ann_state.board, ops};
dbg(calc_score(answer));
print_answer(answer);
return 0;
}
Submission Info
Compile Error
./Main.cpp:1620:36: warning: unused parameter 'gid' [-Wunused-parameter]
int gid,
^
./Main.cpp:2093:13: warning: variable 'current_eval' set but not used [-Wunused-but-set-variable]
int current_eval = evaluate_state(ann_state.board, state);
^
./Main.cpp:1452:19: warning: unused function 'calc_score' [-Wunused-function]
static inline int calc_score(const Answer& answer) {
^
3 warnings generated.
Judge Result
Set Name |
test_0000 |
test_0001 |
test_0002 |
test_0003 |
test_0004 |
test_0005 |
test_0006 |
test_0007 |
test_0008 |
test_0009 |
test_0010 |
test_0011 |
test_0012 |
test_0013 |
test_0014 |
test_0015 |
test_0016 |
test_0017 |
test_0018 |
test_0019 |
test_0020 |
test_0021 |
test_0022 |
test_0023 |
test_0024 |
test_0025 |
test_0026 |
test_0027 |
test_0028 |
test_0029 |
test_0030 |
test_0031 |
test_0032 |
test_0033 |
test_0034 |
test_0035 |
test_0036 |
test_0037 |
test_0038 |
test_0039 |
test_0040 |
test_0041 |
test_0042 |
test_0043 |
test_0044 |
test_0045 |
test_0046 |
test_0047 |
test_0048 |
test_0049 |
test_0050 |
test_0051 |
test_0052 |
test_0053 |
test_0054 |
test_0055 |
test_0056 |
test_0057 |
test_0058 |
test_0059 |
test_0060 |
test_0061 |
test_0062 |
test_0063 |
test_0064 |
test_0065 |
test_0066 |
test_0067 |
test_0068 |
test_0069 |
test_0070 |
test_0071 |
test_0072 |
test_0073 |
test_0074 |
test_0075 |
test_0076 |
test_0077 |
test_0078 |
test_0079 |
test_0080 |
test_0081 |
test_0082 |
test_0083 |
test_0084 |
test_0085 |
test_0086 |
test_0087 |
test_0088 |
test_0089 |
test_0090 |
test_0091 |
test_0092 |
test_0093 |
test_0094 |
test_0095 |
test_0096 |
test_0097 |
test_0098 |
test_0099 |
test_0100 |
test_0101 |
test_0102 |
test_0103 |
test_0104 |
test_0105 |
test_0106 |
test_0107 |
test_0108 |
test_0109 |
test_0110 |
test_0111 |
test_0112 |
test_0113 |
test_0114 |
test_0115 |
test_0116 |
test_0117 |
test_0118 |
test_0119 |
test_0120 |
test_0121 |
test_0122 |
test_0123 |
test_0124 |
test_0125 |
test_0126 |
test_0127 |
test_0128 |
test_0129 |
test_0130 |
test_0131 |
test_0132 |
test_0133 |
test_0134 |
test_0135 |
test_0136 |
test_0137 |
test_0138 |
test_0139 |
test_0140 |
test_0141 |
test_0142 |
test_0143 |
test_0144 |
test_0145 |
test_0146 |
test_0147 |
test_0148 |
test_0149 |
test_0150 |
test_0151 |
test_0152 |
test_0153 |
test_0154 |
test_0155 |
test_0156 |
test_0157 |
test_0158 |
test_0159 |
test_0160 |
test_0161 |
test_0162 |
test_0163 |
test_0164 |
test_0165 |
test_0166 |
test_0167 |
test_0168 |
test_0169 |
test_0170 |
test_0171 |
test_0172 |
test_0173 |
test_0174 |
test_0175 |
test_0176 |
test_0177 |
test_0178 |
test_0179 |
test_0180 |
test_0181 |
test_0182 |
test_0183 |
test_0184 |
test_0185 |
test_0186 |
test_0187 |
test_0188 |
test_0189 |
test_0190 |
test_0191 |
test_0192 |
test_0193 |
test_0194 |
test_0195 |
test_0196 |
test_0197 |
test_0198 |
test_0199 |
test_0200 |
test_0201 |
test_0202 |
test_0203 |
test_0204 |
test_0205 |
test_0206 |
test_0207 |
test_0208 |
test_0209 |
test_0210 |
test_0211 |
test_0212 |
test_0213 |
test_0214 |
test_0215 |
test_0216 |
test_0217 |
test_0218 |
test_0219 |
test_0220 |
test_0221 |
test_0222 |
test_0223 |
test_0224 |
test_0225 |
test_0226 |
test_0227 |
test_0228 |
test_0229 |
test_0230 |
test_0231 |
test_0232 |
test_0233 |
test_0234 |
test_0235 |
test_0236 |
test_0237 |
test_0238 |
test_0239 |
test_0240 |
test_0241 |
test_0242 |
test_0243 |
test_0244 |
test_0245 |
test_0246 |
test_0247 |
test_0248 |
test_0249 |
test_0250 |
test_0251 |
test_0252 |
test_0253 |
test_0254 |
test_0255 |
test_0256 |
test_0257 |
test_0258 |
test_0259 |
test_0260 |
test_0261 |
test_0262 |
test_0263 |
test_0264 |
test_0265 |
test_0266 |
test_0267 |
test_0268 |
test_0269 |
test_0270 |
test_0271 |
test_0272 |
test_0273 |
test_0274 |
test_0275 |
test_0276 |
test_0277 |
test_0278 |
test_0279 |
test_0280 |
test_0281 |
test_0282 |
test_0283 |
test_0284 |
test_0285 |
test_0286 |
test_0287 |
test_0288 |
test_0289 |
test_0290 |
test_0291 |
test_0292 |
test_0293 |
test_0294 |
test_0295 |
test_0296 |
test_0297 |
test_0298 |
test_0299 |
test_0300 |
test_0301 |
test_0302 |
test_0303 |
test_0304 |
test_0305 |
test_0306 |
test_0307 |
test_0308 |
test_0309 |
test_0310 |
test_0311 |
test_0312 |
test_0313 |
test_0314 |
test_0315 |
test_0316 |
test_0317 |
test_0318 |
test_0319 |
test_0320 |
test_0321 |
test_0322 |
test_0323 |
test_0324 |
test_0325 |
test_0326 |
test_0327 |
test_0328 |
test_0329 |
test_0330 |
test_0331 |
test_0332 |
test_0333 |
test_0334 |
test_0335 |
test_0336 |
test_0337 |
test_0338 |
test_0339 |
test_0340 |
test_0341 |
test_0342 |
test_0343 |
test_0344 |
test_0345 |
test_0346 |
test_0347 |
test_0348 |
test_0349 |
test_0350 |
test_0351 |
test_0352 |
test_0353 |
test_0354 |
test_0355 |
test_0356 |
test_0357 |
test_0358 |
test_0359 |
test_0360 |
test_0361 |
test_0362 |
test_0363 |
test_0364 |
test_0365 |
test_0366 |
test_0367 |
test_0368 |
test_0369 |
test_0370 |
test_0371 |
test_0372 |
test_0373 |
test_0374 |
test_0375 |
test_0376 |
test_0377 |
test_0378 |
test_0379 |
test_0380 |
test_0381 |
test_0382 |
test_0383 |
test_0384 |
test_0385 |
test_0386 |
test_0387 |
test_0388 |
test_0389 |
test_0390 |
test_0391 |
test_0392 |
test_0393 |
test_0394 |
test_0395 |
test_0396 |
test_0397 |
test_0398 |
test_0399 |
test_0400 |
test_0401 |
test_0402 |
test_0403 |
test_0404 |
test_0405 |
test_0406 |
test_0407 |
test_0408 |
test_0409 |
test_0410 |
test_0411 |
test_0412 |
test_0413 |
test_0414 |
test_0415 |
test_0416 |
test_0417 |
test_0418 |
test_0419 |
test_0420 |
test_0421 |
test_0422 |
test_0423 |
test_0424 |
test_0425 |
test_0426 |
test_0427 |
test_0428 |
test_0429 |
test_0430 |
test_0431 |
test_0432 |
test_0433 |
test_0434 |
test_0435 |
test_0436 |
test_0437 |
test_0438 |
test_0439 |
test_0440 |
test_0441 |
test_0442 |
test_0443 |
test_0444 |
test_0445 |
test_0446 |
test_0447 |
test_0448 |
test_0449 |
test_0450 |
test_0451 |
test_0452 |
test_0453 |
test_0454 |
test_0455 |
test_0456 |
test_0457 |
test_0458 |
test_0459 |
test_0460 |
test_0461 |
test_0462 |
test_0463 |
test_0464 |
test_0465 |
test_0466 |
test_0467 |
test_0468 |
test_0469 |
test_0470 |
test_0471 |
test_0472 |
test_0473 |
test_0474 |
test_0475 |
test_0476 |
test_0477 |
test_0478 |
test_0479 |
test_0480 |
test_0481 |
test_0482 |
test_0483 |
test_0484 |
test_0485 |
test_0486 |
test_0487 |
test_0488 |
test_0489 |
test_0490 |
test_0491 |
test_0492 |
test_0493 |
test_0494 |
test_0495 |
test_0496 |
test_0497 |
test_0498 |
test_0499 |
test_0500 |
test_0501 |
test_0502 |
test_0503 |
test_0504 |
test_0505 |
test_0506 |
test_0507 |
test_0508 |
test_0509 |
test_0510 |
test_0511 |
test_0512 |
test_0513 |
test_0514 |
test_0515 |
test_0516 |
test_0517 |
test_0518 |
test_0519 |
test_0520 |
test_0521 |
test_0522 |
test_0523 |
test_0524 |
test_0525 |
test_0526 |
test_0527 |
test_0528 |
test_0529 |
test_0530 |
test_0531 |
test_0532 |
test_0533 |
test_0534 |
test_0535 |
test_0536 |
test_0537 |
test_0538 |
test_0539 |
test_0540 |
test_0541 |
test_0542 |
test_0543 |
test_0544 |
test_0545 |
test_0546 |
test_0547 |
test_0548 |
test_0549 |
test_0550 |
test_0551 |
test_0552 |
test_0553 |
test_0554 |
test_0555 |
test_0556 |
test_0557 |
test_0558 |
test_0559 |
test_0560 |
test_0561 |
test_0562 |
test_0563 |
test_0564 |
test_0565 |
test_0566 |
test_0567 |
test_0568 |
test_0569 |
test_0570 |
test_0571 |
test_0572 |
test_0573 |
test_0574 |
test_0575 |
test_0576 |
test_0577 |
test_0578 |
test_0579 |
test_0580 |
test_0581 |
test_0582 |
test_0583 |
test_0584 |
test_0585 |
test_0586 |
test_0587 |
test_0588 |
test_0589 |
test_0590 |
test_0591 |
test_0592 |
test_0593 |
test_0594 |
test_0595 |
test_0596 |
test_0597 |
test_0598 |
test_0599 |
test_0600 |
test_0601 |
test_0602 |
test_0603 |
test_0604 |
test_0605 |
test_0606 |
test_0607 |
test_0608 |
test_0609 |
test_0610 |
test_0611 |
test_0612 |
test_0613 |
test_0614 |
test_0615 |
test_0616 |
test_0617 |
test_0618 |
test_0619 |
test_0620 |
test_0621 |
test_0622 |
test_0623 |
test_0624 |
test_0625 |
test_0626 |
test_0627 |
test_0628 |
test_0629 |
test_0630 |
test_0631 |
test_0632 |
test_0633 |
test_0634 |
test_0635 |
test_0636 |
test_0637 |
test_0638 |
test_0639 |
test_0640 |
test_0641 |
test_0642 |
test_0643 |
test_0644 |
test_0645 |
test_0646 |
test_0647 |
test_0648 |
test_0649 |
test_0650 |
test_0651 |
test_0652 |
test_0653 |
test_0654 |
test_0655 |
test_0656 |
test_0657 |
test_0658 |
test_0659 |
test_0660 |
test_0661 |
test_0662 |
test_0663 |
test_0664 |
test_0665 |
test_0666 |
test_0667 |
test_0668 |
test_0669 |
test_0670 |
test_0671 |
test_0672 |
test_0673 |
test_0674 |
test_0675 |
test_0676 |
test_0677 |
test_0678 |
test_0679 |
test_0680 |
test_0681 |
test_0682 |
test_0683 |
test_0684 |
test_0685 |
test_0686 |
test_0687 |
test_0688 |
test_0689 |
test_0690 |
test_0691 |
test_0692 |
test_0693 |
test_0694 |
test_0695 |
test_0696 |
test_0697 |
test_0698 |
test_0699 |
test_0700 |
test_0701 |
test_0702 |
test_0703 |
test_0704 |
test_0705 |
test_0706 |
test_0707 |
test_0708 |
test_0709 |
test_0710 |
test_0711 |
test_0712 |
test_0713 |
test_0714 |
test_0715 |
test_0716 |
test_0717 |
test_0718 |
test_0719 |
test_0720 |
test_0721 |
test_0722 |
test_0723 |
test_0724 |
test_0725 |
test_0726 |
test_0727 |
test_0728 |
test_0729 |
test_0730 |
test_0731 |
test_0732 |
test_0733 |
test_0734 |
test_0735 |
test_0736 |
test_0737 |
test_0738 |
test_0739 |
test_0740 |
test_0741 |
test_0742 |
test_0743 |
test_0744 |
test_0745 |
test_0746 |
test_0747 |
test_0748 |
test_0749 |
test_0750 |
test_0751 |
test_0752 |
test_0753 |
test_0754 |
test_0755 |
test_0756 |
test_0757 |
test_0758 |
test_0759 |
test_0760 |
test_0761 |
test_0762 |
test_0763 |
test_0764 |
test_0765 |
test_0766 |
test_0767 |
test_0768 |
test_0769 |
test_0770 |
test_0771 |
test_0772 |
test_0773 |
test_0774 |
test_0775 |
test_0776 |
test_0777 |
test_0778 |
test_0779 |
test_0780 |
test_0781 |
test_0782 |
test_0783 |
test_0784 |
test_0785 |
test_0786 |
test_0787 |
test_0788 |
test_0789 |
test_0790 |
test_0791 |
test_0792 |
test_0793 |
test_0794 |
test_0795 |
test_0796 |
test_0797 |
test_0798 |
test_0799 |
test_0800 |
test_0801 |
test_0802 |
test_0803 |
test_0804 |
test_0805 |
test_0806 |
test_0807 |
test_0808 |
test_0809 |
test_0810 |
test_0811 |
test_0812 |
test_0813 |
test_0814 |
test_0815 |
test_0816 |
test_0817 |
test_0818 |
test_0819 |
test_0820 |
test_0821 |
test_0822 |
test_0823 |
test_0824 |
test_0825 |
test_0826 |
test_0827 |
test_0828 |
test_0829 |
test_0830 |
test_0831 |
test_0832 |
test_0833 |
test_0834 |
test_0835 |
test_0836 |
test_0837 |
test_0838 |
test_0839 |
test_0840 |
test_0841 |
test_0842 |
test_0843 |
test_0844 |
test_0845 |
test_0846 |
test_0847 |
test_0848 |
test_0849 |
test_0850 |
test_0851 |
test_0852 |
test_0853 |
test_0854 |
test_0855 |
test_0856 |
test_0857 |
test_0858 |
test_0859 |
test_0860 |
test_0861 |
test_0862 |
test_0863 |
test_0864 |
test_0865 |
test_0866 |
test_0867 |
test_0868 |
test_0869 |
test_0870 |
test_0871 |
test_0872 |
test_0873 |
test_0874 |
test_0875 |
test_0876 |
test_0877 |
test_0878 |
test_0879 |
test_0880 |
test_0881 |
test_0882 |
test_0883 |
test_0884 |
test_0885 |
test_0886 |
test_0887 |
test_0888 |
test_0889 |
test_0890 |
test_0891 |
test_0892 |
test_0893 |
test_0894 |
test_0895 |
test_0896 |
test_0897 |
test_0898 |
test_0899 |
test_0900 |
test_0901 |
test_0902 |
test_0903 |
test_0904 |
test_0905 |
test_0906 |
test_0907 |
test_0908 |
test_0909 |
test_0910 |
test_0911 |
test_0912 |
test_0913 |
test_0914 |
test_0915 |
test_0916 |
test_0917 |
test_0918 |
test_0919 |
test_0920 |
test_0921 |
test_0922 |
test_0923 |
test_0924 |
test_0925 |
test_0926 |
test_0927 |
test_0928 |
test_0929 |
test_0930 |
test_0931 |
test_0932 |
test_0933 |
test_0934 |
test_0935 |
test_0936 |
test_0937 |
test_0938 |
test_0939 |
test_0940 |
test_0941 |
test_0942 |
test_0943 |
test_0944 |
test_0945 |
test_0946 |
test_0947 |
test_0948 |
test_0949 |
test_0950 |
test_0951 |
test_0952 |
test_0953 |
test_0954 |
test_0955 |
test_0956 |
test_0957 |
test_0958 |
test_0959 |
test_0960 |
test_0961 |
test_0962 |
test_0963 |
test_0964 |
test_0965 |
test_0966 |
test_0967 |
test_0968 |
test_0969 |
test_0970 |
test_0971 |
test_0972 |
test_0973 |
test_0974 |
test_0975 |
test_0976 |
test_0977 |
test_0978 |
test_0979 |
test_0980 |
test_0981 |
test_0982 |
test_0983 |
test_0984 |
test_0985 |
test_0986 |
test_0987 |
test_0988 |
test_0989 |
test_0990 |
test_0991 |
test_0992 |
test_0993 |
test_0994 |
test_0995 |
test_0996 |
test_0997 |
test_0998 |
test_0999 |
test_1000 |
test_1001 |
test_1002 |
test_1003 |
test_1004 |
test_1005 |
test_1006 |
test_1007 |
test_1008 |
test_1009 |
test_1010 |
test_1011 |
test_1012 |
test_1013 |
test_1014 |
test_1015 |
test_1016 |
test_1017 |
test_1018 |
test_1019 |
test_1020 |
test_1021 |
test_1022 |
test_1023 |
test_1024 |
test_1025 |
test_1026 |
test_1027 |
test_1028 |
test_1029 |
test_1030 |
test_1031 |
test_1032 |
test_1033 |
test_1034 |
test_1035 |
test_1036 |
test_1037 |
test_1038 |
test_1039 |
test_1040 |
test_1041 |
test_1042 |
test_1043 |
test_1044 |
test_1045 |
test_1046 |
test_1047 |
test_1048 |
test_1049 |
test_1050 |
test_1051 |
test_1052 |
test_1053 |
test_1054 |
test_1055 |
test_1056 |
test_1057 |
test_1058 |
test_1059 |
test_1060 |
test_1061 |
test_1062 |
test_1063 |
test_1064 |
test_1065 |
test_1066 |
test_1067 |
test_1068 |
test_1069 |
test_1070 |
test_1071 |
test_1072 |
test_1073 |
test_1074 |
test_1075 |
test_1076 |
test_1077 |
test_1078 |
test_1079 |
test_1080 |
test_1081 |
test_1082 |
test_1083 |
test_1084 |
test_1085 |
test_1086 |
test_1087 |
test_1088 |
test_1089 |
test_1090 |
test_1091 |
test_1092 |
test_1093 |
test_1094 |
test_1095 |
test_1096 |
test_1097 |
test_1098 |
test_1099 |
test_1100 |
test_1101 |
test_1102 |
test_1103 |
test_1104 |
test_1105 |
test_1106 |
test_1107 |
test_1108 |
test_1109 |
test_1110 |
test_1111 |
test_1112 |
test_1113 |
test_1114 |
test_1115 |
test_1116 |
test_1117 |
test_1118 |
test_1119 |
test_1120 |
test_1121 |
test_1122 |
test_1123 |
test_1124 |
test_1125 |
test_1126 |
test_1127 |
test_1128 |
test_1129 |
test_1130 |
test_1131 |
test_1132 |
test_1133 |
test_1134 |
test_1135 |
test_1136 |
test_1137 |
test_1138 |
test_1139 |
test_1140 |
test_1141 |
test_1142 |
test_1143 |
test_1144 |
test_1145 |
test_1146 |
test_1147 |
test_1148 |
test_1149 |
test_1150 |
test_1151 |
test_1152 |
test_1153 |
test_1154 |
test_1155 |
test_1156 |
test_1157 |
test_1158 |
test_1159 |
test_1160 |
test_1161 |
test_1162 |
test_1163 |
test_1164 |
test_1165 |
test_1166 |
test_1167 |
test_1168 |
test_1169 |
test_1170 |
test_1171 |
test_1172 |
test_1173 |
test_1174 |
test_1175 |
test_1176 |
test_1177 |
test_1178 |
test_1179 |
test_1180 |
test_1181 |
test_1182 |
test_1183 |
test_1184 |
test_1185 |
test_1186 |
test_1187 |
test_1188 |
test_1189 |
test_1190 |
test_1191 |
test_1192 |
test_1193 |
test_1194 |
test_1195 |
test_1196 |
test_1197 |
test_1198 |
test_1199 |
test_1200 |
test_1201 |
test_1202 |
test_1203 |
test_1204 |
test_1205 |
test_1206 |
test_1207 |
test_1208 |
test_1209 |
test_1210 |
test_1211 |
test_1212 |
test_1213 |
test_1214 |
test_1215 |
test_1216 |
test_1217 |
test_1218 |
test_1219 |
test_1220 |
test_1221 |
test_1222 |
test_1223 |
test_1224 |
test_1225 |
test_1226 |
test_1227 |
test_1228 |
test_1229 |
test_1230 |
test_1231 |
test_1232 |
test_1233 |
test_1234 |
test_1235 |
test_1236 |
test_1237 |
test_1238 |
test_1239 |
test_1240 |
test_1241 |
test_1242 |
test_1243 |
test_1244 |
test_1245 |
test_1246 |
test_1247 |
test_1248 |
test_1249 |
test_1250 |
test_1251 |
test_1252 |
test_1253 |
test_1254 |
test_1255 |
test_1256 |
test_1257 |
test_1258 |
test_1259 |
test_1260 |
test_1261 |
test_1262 |
test_1263 |
test_1264 |
test_1265 |
test_1266 |
test_1267 |
test_1268 |
test_1269 |
test_1270 |
test_1271 |
test_1272 |
test_1273 |
test_1274 |
test_1275 |
test_1276 |
test_1277 |
test_1278 |
test_1279 |
test_1280 |
test_1281 |
test_1282 |
test_1283 |
test_1284 |
test_1285 |
test_1286 |
test_1287 |
test_1288 |
test_1289 |
test_1290 |
test_1291 |
test_1292 |
test_1293 |
test_1294 |
test_1295 |
test_1296 |
test_1297 |
test_1298 |
test_1299 |
test_1300 |
test_1301 |
test_1302 |
test_1303 |
test_1304 |
test_1305 |
test_1306 |
test_1307 |
test_1308 |
test_1309 |
test_1310 |
test_1311 |
test_1312 |
test_1313 |
test_1314 |
test_1315 |
test_1316 |
test_1317 |
test_1318 |
test_1319 |
test_1320 |
test_1321 |
test_1322 |
test_1323 |
test_1324 |
test_1325 |
test_1326 |
test_1327 |
test_1328 |
test_1329 |
test_1330 |
test_1331 |
test_1332 |
test_1333 |
test_1334 |
test_1335 |
test_1336 |
test_1337 |
test_1338 |
test_1339 |
test_1340 |
test_1341 |
test_1342 |
test_1343 |
test_1344 |
test_1345 |
test_1346 |
test_1347 |
test_1348 |
test_1349 |
test_1350 |
test_1351 |
test_1352 |
test_1353 |
test_1354 |
test_1355 |
test_1356 |
test_1357 |
test_1358 |
test_1359 |
test_1360 |
test_1361 |
test_1362 |
test_1363 |
test_1364 |
test_1365 |
test_1366 |
test_1367 |
test_1368 |
test_1369 |
test_1370 |
test_1371 |
test_1372 |
test_1373 |
test_1374 |
test_1375 |
test_1376 |
test_1377 |
test_1378 |
test_1379 |
test_1380 |
test_1381 |
test_1382 |
test_1383 |
test_1384 |
test_1385 |
test_1386 |
test_1387 |
test_1388 |
test_1389 |
test_1390 |
test_1391 |
test_1392 |
test_1393 |
test_1394 |
test_1395 |
test_1396 |
test_1397 |
test_1398 |
test_1399 |
test_1400 |
test_1401 |
test_1402 |
test_1403 |
test_1404 |
test_1405 |
test_1406 |
test_1407 |
test_1408 |
test_1409 |
test_1410 |
test_1411 |
test_1412 |
test_1413 |
test_1414 |
test_1415 |
test_1416 |
test_1417 |
test_1418 |
test_1419 |
test_1420 |
test_1421 |
test_1422 |
test_1423 |
test_1424 |
test_1425 |
test_1426 |
test_1427 |
test_1428 |
test_1429 |
test_1430 |
test_1431 |
test_1432 |
test_1433 |
test_1434 |
test_1435 |
test_1436 |
test_1437 |
test_1438 |
test_1439 |
test_1440 |
test_1441 |
test_1442 |
test_1443 |
test_1444 |
test_1445 |
test_1446 |
test_1447 |
test_1448 |
test_1449 |
test_1450 |
test_1451 |
test_1452 |
test_1453 |
test_1454 |
test_1455 |
test_1456 |
test_1457 |
test_1458 |
test_1459 |
test_1460 |
test_1461 |
test_1462 |
test_1463 |
test_1464 |
test_1465 |
test_1466 |
test_1467 |
test_1468 |
test_1469 |
test_1470 |
test_1471 |
test_1472 |
test_1473 |
test_1474 |
test_1475 |
test_1476 |
test_1477 |
test_1478 |
test_1479 |
test_1480 |
test_1481 |
test_1482 |
test_1483 |
test_1484 |
test_1485 |
test_1486 |
test_1487 |
test_1488 |
test_1489 |
test_1490 |
test_1491 |
test_1492 |
test_1493 |
test_1494 |
test_1495 |
test_1496 |
test_1497 |
test_1498 |
test_1499 |
test_1500 |
test_1501 |
test_1502 |
test_1503 |
test_1504 |
test_1505 |
test_1506 |
test_1507 |
test_1508 |
test_1509 |
test_1510 |
test_1511 |
test_1512 |
test_1513 |
test_1514 |
test_1515 |
test_1516 |
test_1517 |
test_1518 |
test_1519 |
test_1520 |
test_1521 |
test_1522 |
test_1523 |
test_1524 |
test_1525 |
test_1526 |
test_1527 |
test_1528 |
test_1529 |
test_1530 |
test_1531 |
test_1532 |
test_1533 |
test_1534 |
test_1535 |
test_1536 |
test_1537 |
test_1538 |
test_1539 |
test_1540 |
test_1541 |
test_1542 |
test_1543 |
test_1544 |
test_1545 |
test_1546 |
test_1547 |
test_1548 |
test_1549 |
test_1550 |
test_1551 |
test_1552 |
test_1553 |
test_1554 |
test_1555 |
test_1556 |
test_1557 |
test_1558 |
test_1559 |
test_1560 |
test_1561 |
test_1562 |
test_1563 |
test_1564 |
test_1565 |
test_1566 |
test_1567 |
test_1568 |
test_1569 |
test_1570 |
test_1571 |
test_1572 |
test_1573 |
test_1574 |
test_1575 |
test_1576 |
test_1577 |
test_1578 |
test_1579 |
test_1580 |
test_1581 |
test_1582 |
test_1583 |
test_1584 |
test_1585 |
test_1586 |
test_1587 |
test_1588 |
test_1589 |
test_1590 |
test_1591 |
test_1592 |
test_1593 |
test_1594 |
test_1595 |
test_1596 |
test_1597 |
test_1598 |
test_1599 |
test_1600 |
test_1601 |
test_1602 |
test_1603 |
test_1604 |
test_1605 |
test_1606 |
test_1607 |
test_1608 |
test_1609 |
test_1610 |
test_1611 |
test_1612 |
test_1613 |
test_1614 |
test_1615 |
test_1616 |
test_1617 |
test_1618 |
test_1619 |
test_1620 |
test_1621 |
test_1622 |
test_1623 |
test_1624 |
test_1625 |
test_1626 |
test_1627 |
test_1628 |
test_1629 |
test_1630 |
test_1631 |
test_1632 |
test_1633 |
test_1634 |
test_1635 |
test_1636 |
test_1637 |
test_1638 |
test_1639 |
test_1640 |
test_1641 |
test_1642 |
test_1643 |
test_1644 |
test_1645 |
test_1646 |
test_1647 |
test_1648 |
test_1649 |
test_1650 |
test_1651 |
test_1652 |
test_1653 |
test_1654 |
test_1655 |
test_1656 |
test_1657 |
test_1658 |
test_1659 |
test_1660 |
test_1661 |
test_1662 |
test_1663 |
test_1664 |
test_1665 |
test_1666 |
test_1667 |
test_1668 |
test_1669 |
test_1670 |
test_1671 |
test_1672 |
test_1673 |
test_1674 |
test_1675 |
test_1676 |
test_1677 |
test_1678 |
test_1679 |
test_1680 |
test_1681 |
test_1682 |
test_1683 |
test_1684 |
test_1685 |
test_1686 |
test_1687 |
test_1688 |
test_1689 |
test_1690 |
test_1691 |
test_1692 |
test_1693 |
test_1694 |
test_1695 |
test_1696 |
test_1697 |
test_1698 |
test_1699 |
test_1700 |
test_1701 |
test_1702 |
test_1703 |
test_1704 |
test_1705 |
test_1706 |
test_1707 |
test_1708 |
test_1709 |
test_1710 |
test_1711 |
test_1712 |
test_1713 |
test_1714 |
test_1715 |
test_1716 |
test_1717 |
test_1718 |
test_1719 |
test_1720 |
test_1721 |
test_1722 |
test_1723 |
test_1724 |
test_1725 |
test_1726 |
test_1727 |
test_1728 |
test_1729 |
test_1730 |
test_1731 |
test_1732 |
test_1733 |
test_1734 |
test_1735 |
test_1736 |
test_1737 |
test_1738 |
test_1739 |
test_1740 |
test_1741 |
test_1742 |
test_1743 |
test_1744 |
test_1745 |
test_1746 |
test_1747 |
test_1748 |
test_1749 |
test_1750 |
test_1751 |
test_1752 |
test_1753 |
test_1754 |
test_1755 |
test_1756 |
test_1757 |
test_1758 |
test_1759 |
test_1760 |
test_1761 |
test_1762 |
test_1763 |
test_1764 |
test_1765 |
test_1766 |
test_1767 |
test_1768 |
test_1769 |
test_1770 |
test_1771 |
test_1772 |
test_1773 |
test_1774 |
test_1775 |
test_1776 |
test_1777 |
test_1778 |
test_1779 |
test_1780 |
test_1781 |
test_1782 |
test_1783 |
test_1784 |
test_1785 |
test_1786 |
test_1787 |
test_1788 |
test_1789 |
test_1790 |
test_1791 |
test_1792 |
test_1793 |
test_1794 |
test_1795 |
test_1796 |
test_1797 |
test_1798 |
test_1799 |
test_1800 |
test_1801 |
test_1802 |
test_1803 |
test_1804 |
test_1805 |
test_1806 |
test_1807 |
test_1808 |
test_1809 |
test_1810 |
test_1811 |
test_1812 |
test_1813 |
test_1814 |
test_1815 |
test_1816 |
test_1817 |
test_1818 |
test_1819 |
test_1820 |
test_1821 |
test_1822 |
test_1823 |
test_1824 |
test_1825 |
test_1826 |
test_1827 |
test_1828 |
test_1829 |
test_1830 |
test_1831 |
test_1832 |
test_1833 |
test_1834 |
test_1835 |
test_1836 |
test_1837 |
test_1838 |
test_1839 |
test_1840 |
test_1841 |
test_1842 |
test_1843 |
test_1844 |
test_1845 |
test_1846 |
test_1847 |
test_1848 |
test_1849 |
test_1850 |
test_1851 |
test_1852 |
test_1853 |
test_1854 |
test_1855 |
test_1856 |
test_1857 |
test_1858 |
test_1859 |
test_1860 |
test_1861 |
test_1862 |
test_1863 |
test_1864 |
test_1865 |
test_1866 |
test_1867 |
test_1868 |
test_1869 |
test_1870 |
test_1871 |
test_1872 |
test_1873 |
test_1874 |
test_1875 |
test_1876 |
test_1877 |
test_1878 |
test_1879 |
test_1880 |
test_1881 |
test_1882 |
test_1883 |
test_1884 |
test_1885 |
test_1886 |
test_1887 |
test_1888 |
test_1889 |
test_1890 |
test_1891 |
test_1892 |
test_1893 |
test_1894 |
test_1895 |
test_1896 |
test_1897 |
test_1898 |
test_1899 |
test_1900 |
test_1901 |
test_1902 |
test_1903 |
test_1904 |
test_1905 |
test_1906 |
test_1907 |
test_1908 |
test_1909 |
test_1910 |
test_1911 |
test_1912 |
test_1913 |
test_1914 |
test_1915 |
test_1916 |
test_1917 |
test_1918 |
test_1919 |
test_1920 |
test_1921 |
test_1922 |
test_1923 |
test_1924 |
test_1925 |
test_1926 |
test_1927 |
test_1928 |
test_1929 |
test_1930 |
test_1931 |
test_1932 |
test_1933 |
test_1934 |
test_1935 |
test_1936 |
test_1937 |
test_1938 |
test_1939 |
test_1940 |
test_1941 |
test_1942 |
test_1943 |
test_1944 |
test_1945 |
test_1946 |
test_1947 |
test_1948 |
test_1949 |
test_1950 |
test_1951 |
test_1952 |
test_1953 |
test_1954 |
test_1955 |
test_1956 |
test_1957 |
test_1958 |
test_1959 |
test_1960 |
test_1961 |
test_1962 |
test_1963 |
test_1964 |
test_1965 |
test_1966 |
test_1967 |
test_1968 |
test_1969 |
test_1970 |
test_1971 |
test_1972 |
test_1973 |
test_1974 |
test_1975 |
test_1976 |
test_1977 |
test_1978 |
test_1979 |
test_1980 |
test_1981 |
test_1982 |
test_1983 |
test_1984 |
test_1985 |
test_1986 |
test_1987 |
test_1988 |
test_1989 |
test_1990 |
test_1991 |
test_1992 |
test_1993 |
test_1994 |
test_1995 |
test_1996 |
test_1997 |
test_1998 |
test_1999 |
Score / Max Score |
570 / 1000000000 |
818 / 1000000000 |
347 / 1000000000 |
865 / 1000000000 |
778 / 1000000000 |
104 / 1000000000 |
221 / 1000000000 |
138 / 1000000000 |
154 / 1000000000 |
435 / 1000000000 |
1048 / 1000000000 |
1179 / 1000000000 |
216 / 1000000000 |
227 / 1000000000 |
1158 / 1000000000 |
396 / 1000000000 |
1054 / 1000000000 |
555 / 1000000000 |
402 / 1000000000 |
706 / 1000000000 |
397 / 1000000000 |
852 / 1000000000 |
611 / 1000000000 |
217 / 1000000000 |
1009 / 1000000000 |
831 / 1000000000 |
669 / 1000000000 |
764 / 1000000000 |
619 / 1000000000 |
424 / 1000000000 |
352 / 1000000000 |
1103 / 1000000000 |
247 / 1000000000 |
648 / 1000000000 |
652 / 1000000000 |
144 / 1000000000 |
196 / 1000000000 |
240 / 1000000000 |
382 / 1000000000 |
607 / 1000000000 |
395 / 1000000000 |
497 / 1000000000 |
692 / 1000000000 |
688 / 1000000000 |
1011 / 1000000000 |
346 / 1000000000 |
1002 / 1000000000 |
265 / 1000000000 |
304 / 1000000000 |
505 / 1000000000 |
614 / 1000000000 |
408 / 1000000000 |
1062 / 1000000000 |
938 / 1000000000 |
607 / 1000000000 |
258 / 1000000000 |
1122 / 1000000000 |
652 / 1000000000 |
582 / 1000000000 |
632 / 1000000000 |
310 / 1000000000 |
222 / 1000000000 |
161 / 1000000000 |
220 / 1000000000 |
155 / 1000000000 |
1251 / 1000000000 |
1272 / 1000000000 |
1091 / 1000000000 |
758 / 1000000000 |
952 / 1000000000 |
813 / 1000000000 |
1085 / 1000000000 |
280 / 1000000000 |
912 / 1000000000 |
302 / 1000000000 |
99 / 1000000000 |
656 / 1000000000 |
1027 / 1000000000 |
1023 / 1000000000 |
165 / 1000000000 |
649 / 1000000000 |
814 / 1000000000 |
183 / 1000000000 |
368 / 1000000000 |
313 / 1000000000 |
1184 / 1000000000 |
556 / 1000000000 |
279 / 1000000000 |
528 / 1000000000 |
959 / 1000000000 |
437 / 1000000000 |
338 / 1000000000 |
995 / 1000000000 |
406 / 1000000000 |
242 / 1000000000 |
1369 / 1000000000 |
293 / 1000000000 |
428 / 1000000000 |
1264 / 1000000000 |
857 / 1000000000 |
292 / 1000000000 |
496 / 1000000000 |
603 / 1000000000 |
221 / 1000000000 |
602 / 1000000000 |
249 / 1000000000 |
268 / 1000000000 |
234 / 1000000000 |
1229 / 1000000000 |
1013 / 1000000000 |
931 / 1000000000 |
1218 / 1000000000 |
179 / 1000000000 |
540 / 1000000000 |
791 / 1000000000 |
278 / 1000000000 |
803 / 1000000000 |
766 / 1000000000 |
640 / 1000000000 |
370 / 1000000000 |
717 / 1000000000 |
1055 / 1000000000 |
289 / 1000000000 |
420 / 1000000000 |
224 / 1000000000 |
845 / 1000000000 |
604 / 1000000000 |
646 / 1000000000 |
206 / 1000000000 |
595 / 1000000000 |
261 / 1000000000 |
136 / 1000000000 |
476 / 1000000000 |
1335 / 1000000000 |
295 / 1000000000 |
702 / 1000000000 |
887 / 1000000000 |
226 / 1000000000 |
738 / 1000000000 |
666 / 1000000000 |
705 / 1000000000 |
788 / 1000000000 |
804 / 1000000000 |
996 / 1000000000 |
763 / 1000000000 |
1379 / 1000000000 |
263 / 1000000000 |
976 / 1000000000 |
504 / 1000000000 |
1146 / 1000000000 |
327 / 1000000000 |
861 / 1000000000 |
811 / 1000000000 |
1348 / 1000000000 |
370 / 1000000000 |
263 / 1000000000 |
573 / 1000000000 |
809 / 1000000000 |
913 / 1000000000 |
459 / 1000000000 |
804 / 1000000000 |
1175 / 1000000000 |
276 / 1000000000 |
1097 / 1000000000 |
415 / 1000000000 |
1614 / 1000000000 |
328 / 1000000000 |
600 / 1000000000 |
1068 / 1000000000 |
156 / 1000000000 |
653 / 1000000000 |
505 / 1000000000 |
758 / 1000000000 |
783 / 1000000000 |
313 / 1000000000 |
340 / 1000000000 |
406 / 1000000000 |
274 / 1000000000 |
1046 / 1000000000 |
723 / 1000000000 |
1187 / 1000000000 |
163 / 1000000000 |
417 / 1000000000 |
538 / 1000000000 |
313 / 1000000000 |
753 / 1000000000 |
558 / 1000000000 |
767 / 1000000000 |
323 / 1000000000 |
800 / 1000000000 |
795 / 1000000000 |
1280 / 1000000000 |
397 / 1000000000 |
630 / 1000000000 |
223 / 1000000000 |
993 / 1000000000 |
459 / 1000000000 |
185 / 1000000000 |
243 / 1000000000 |
333 / 1000000000 |
581 / 1000000000 |
1073 / 1000000000 |
692 / 1000000000 |
761 / 1000000000 |
180 / 1000000000 |
333 / 1000000000 |
277 / 1000000000 |
271 / 1000000000 |
446 / 1000000000 |
1325 / 1000000000 |
156 / 1000000000 |
805 / 1000000000 |
1137 / 1000000000 |
463 / 1000000000 |
994 / 1000000000 |
585 / 1000000000 |
172 / 1000000000 |
847 / 1000000000 |
1162 / 1000000000 |
184 / 1000000000 |
1321 / 1000000000 |
246 / 1000000000 |
1149 / 1000000000 |
1232 / 1000000000 |
994 / 1000000000 |
1128 / 1000000000 |
990 / 1000000000 |
507 / 1000000000 |
1043 / 1000000000 |
616 / 1000000000 |
954 / 1000000000 |
532 / 1000000000 |
202 / 1000000000 |
546 / 1000000000 |
1134 / 1000000000 |
643 / 1000000000 |
496 / 1000000000 |
746 / 1000000000 |
211 / 1000000000 |
518 / 1000000000 |
142 / 1000000000 |
519 / 1000000000 |
472 / 1000000000 |
554 / 1000000000 |
183 / 1000000000 |
793 / 1000000000 |
87 / 1000000000 |
632 / 1000000000 |
313 / 1000000000 |
374 / 1000000000 |
202 / 1000000000 |
439 / 1000000000 |
142 / 1000000000 |
341 / 1000000000 |
961 / 1000000000 |
399 / 1000000000 |
1203 / 1000000000 |
152 / 1000000000 |
405 / 1000000000 |
152 / 1000000000 |
693 / 1000000000 |
417 / 1000000000 |
560 / 1000000000 |
240 / 1000000000 |
1000 / 1000000000 |
860 / 1000000000 |
515 / 1000000000 |
410 / 1000000000 |
734 / 1000000000 |
321 / 1000000000 |
281 / 1000000000 |
184 / 1000000000 |
908 / 1000000000 |
536 / 1000000000 |
323 / 1000000000 |
765 / 1000000000 |
537 / 1000000000 |
684 / 1000000000 |
403 / 1000000000 |
452 / 1000000000 |
197 / 1000000000 |
419 / 1000000000 |
375 / 1000000000 |
485 / 1000000000 |
345 / 1000000000 |
936 / 1000000000 |
1078 / 1000000000 |
517 / 1000000000 |
723 / 1000000000 |
78148 / 1000000000 |
852 / 1000000000 |
633 / 1000000000 |
1218 / 1000000000 |
559 / 1000000000 |
857 / 1000000000 |
655 / 1000000000 |
1100 / 1000000000 |
453 / 1000000000 |
734 / 1000000000 |
694 / 1000000000 |
601 / 1000000000 |
152 / 1000000000 |
805 / 1000000000 |
815 / 1000000000 |
317 / 1000000000 |
128 / 1000000000 |
389 / 1000000000 |
279 / 1000000000 |
1316 / 1000000000 |
196 / 1000000000 |
1114 / 1000000000 |
658 / 1000000000 |
460 / 1000000000 |
483 / 1000000000 |
159 / 1000000000 |
750 / 1000000000 |
823 / 1000000000 |
460 / 1000000000 |
1229 / 1000000000 |
369 / 1000000000 |
880 / 1000000000 |
800 / 1000000000 |
465 / 1000000000 |
180 / 1000000000 |
136 / 1000000000 |
886 / 1000000000 |
320 / 1000000000 |
666 / 1000000000 |
193 / 1000000000 |
473 / 1000000000 |
437 / 1000000000 |
900 / 1000000000 |
1477 / 1000000000 |
824 / 1000000000 |
486 / 1000000000 |
320 / 1000000000 |
1249 / 1000000000 |
811 / 1000000000 |
846 / 1000000000 |
465 / 1000000000 |
116 / 1000000000 |
468 / 1000000000 |
482 / 1000000000 |
183 / 1000000000 |
1058 / 1000000000 |
205 / 1000000000 |
290 / 1000000000 |
479 / 1000000000 |
361 / 1000000000 |
574 / 1000000000 |
923 / 1000000000 |
459 / 1000000000 |
1021 / 1000000000 |
383 / 1000000000 |
886 / 1000000000 |
871 / 1000000000 |
298 / 1000000000 |
298 / 1000000000 |
483 / 1000000000 |
706 / 1000000000 |
121 / 1000000000 |
1035 / 1000000000 |
697 / 1000000000 |
1101 / 1000000000 |
171 / 1000000000 |
470 / 1000000000 |
250 / 1000000000 |
385 / 1000000000 |
764 / 1000000000 |
1028 / 1000000000 |
279 / 1000000000 |
619 / 1000000000 |
299 / 1000000000 |
345 / 1000000000 |
287 / 1000000000 |
910 / 1000000000 |
613 / 1000000000 |
1103 / 1000000000 |
205 / 1000000000 |
324 / 1000000000 |
540 / 1000000000 |
201 / 1000000000 |
507 / 1000000000 |
928 / 1000000000 |
347 / 1000000000 |
271 / 1000000000 |
956 / 1000000000 |
1007 / 1000000000 |
124 / 1000000000 |
264 / 1000000000 |
498 / 1000000000 |
381 / 1000000000 |
270 / 1000000000 |
997 / 1000000000 |
349 / 1000000000 |
380 / 1000000000 |
103 / 1000000000 |
390 / 1000000000 |
724 / 1000000000 |
792 / 1000000000 |
422 / 1000000000 |
984 / 1000000000 |
460 / 1000000000 |
326 / 1000000000 |
187 / 1000000000 |
470 / 1000000000 |
833 / 1000000000 |
560 / 1000000000 |
332 / 1000000000 |
459 / 1000000000 |
1190 / 1000000000 |
1233 / 1000000000 |
1054 / 1000000000 |
501 / 1000000000 |
977 / 1000000000 |
195 / 1000000000 |
671 / 1000000000 |
955 / 1000000000 |
481 / 1000000000 |
602 / 1000000000 |
547 / 1000000000 |
132 / 1000000000 |
252 / 1000000000 |
307 / 1000000000 |
139 / 1000000000 |
473 / 1000000000 |
369 / 1000000000 |
579 / 1000000000 |
189 / 1000000000 |
1203 / 1000000000 |
1059 / 1000000000 |
998 / 1000000000 |
1254 / 1000000000 |
983 / 1000000000 |
433 / 1000000000 |
844 / 1000000000 |
713 / 1000000000 |
168 / 1000000000 |
625 / 1000000000 |
132 / 1000000000 |
1014 / 1000000000 |
561 / 1000000000 |
155 / 1000000000 |
232 / 1000000000 |
685 / 1000000000 |
244 / 1000000000 |
279 / 1000000000 |
1320 / 1000000000 |
740 / 1000000000 |
509 / 1000000000 |
877 / 1000000000 |
684 / 1000000000 |
196 / 1000000000 |
889 / 1000000000 |
236 / 1000000000 |
147 / 1000000000 |
710 / 1000000000 |
515 / 1000000000 |
647 / 1000000000 |
495 / 1000000000 |
1073 / 1000000000 |
509 / 1000000000 |
518 / 1000000000 |
610 / 1000000000 |
798 / 1000000000 |
852 / 1000000000 |
994 / 1000000000 |
751 / 1000000000 |
560 / 1000000000 |
365 / 1000000000 |
366 / 1000000000 |
173 / 1000000000 |
255 / 1000000000 |
198 / 1000000000 |
550 / 1000000000 |
160 / 1000000000 |
604 / 1000000000 |
776 / 1000000000 |
540 / 1000000000 |
401 / 1000000000 |
779 / 1000000000 |
234 / 1000000000 |
349 / 1000000000 |
607 / 1000000000 |
576 / 1000000000 |
991 / 1000000000 |
538 / 1000000000 |
997 / 1000000000 |
933 / 1000000000 |
205 / 1000000000 |
847 / 1000000000 |
298 / 1000000000 |
579 / 1000000000 |
213 / 1000000000 |
430 / 1000000000 |
204 / 1000000000 |
1505 / 1000000000 |
581 / 1000000000 |
537 / 1000000000 |
338 / 1000000000 |
910 / 1000000000 |
788 / 1000000000 |
813 / 1000000000 |
296 / 1000000000 |
211 / 1000000000 |
878 / 1000000000 |
181 / 1000000000 |
857 / 1000000000 |
947 / 1000000000 |
426 / 1000000000 |
756 / 1000000000 |
466 / 1000000000 |
310 / 1000000000 |
843 / 1000000000 |
322 / 1000000000 |
1169 / 1000000000 |
729 / 1000000000 |
1076 / 1000000000 |
933 / 1000000000 |
757 / 1000000000 |
603 / 1000000000 |
721 / 1000000000 |
987 / 1000000000 |
519 / 1000000000 |
871 / 1000000000 |
301 / 1000000000 |
265 / 1000000000 |
802 / 1000000000 |
561 / 1000000000 |
461 / 1000000000 |
893 / 1000000000 |
938 / 1000000000 |
308 / 1000000000 |
456 / 1000000000 |
975 / 1000000000 |
168 / 1000000000 |
619 / 1000000000 |
257 / 1000000000 |
354 / 1000000000 |
361 / 1000000000 |
770 / 1000000000 |
439 / 1000000000 |
213 / 1000000000 |
177 / 1000000000 |
482 / 1000000000 |
160 / 1000000000 |
273 / 1000000000 |
184 / 1000000000 |
1000 / 1000000000 |
208 / 1000000000 |
1066 / 1000000000 |
789 / 1000000000 |
426 / 1000000000 |
219 / 1000000000 |
128 / 1000000000 |
217 / 1000000000 |
471 / 1000000000 |
1050 / 1000000000 |
378 / 1000000000 |
678 / 1000000000 |
533 / 1000000000 |
632 / 1000000000 |
450 / 1000000000 |
165 / 1000000000 |
921 / 1000000000 |
209 / 1000000000 |
240 / 1000000000 |
756 / 1000000000 |
731 / 1000000000 |
815 / 1000000000 |
329 / 1000000000 |
223 / 1000000000 |
562 / 1000000000 |
770 / 1000000000 |
536 / 1000000000 |
181 / 1000000000 |
676 / 1000000000 |
430 / 1000000000 |
941 / 1000000000 |
188 / 1000000000 |
945 / 1000000000 |
399 / 1000000000 |
241 / 1000000000 |
251 / 1000000000 |
720 / 1000000000 |
779 / 1000000000 |
1183 / 1000000000 |
773 / 1000000000 |
346 / 1000000000 |
682 / 1000000000 |
443 / 1000000000 |
204 / 1000000000 |
923 / 1000000000 |
154 / 1000000000 |
141 / 1000000000 |
266 / 1000000000 |
851 / 1000000000 |
847 / 1000000000 |
954 / 1000000000 |
186 / 1000000000 |
299 / 1000000000 |
1018 / 1000000000 |
891 / 1000000000 |
784 / 1000000000 |
281 / 1000000000 |
457 / 1000000000 |
1020 / 1000000000 |
271 / 1000000000 |
614 / 1000000000 |
186 / 1000000000 |
249 / 1000000000 |
631 / 1000000000 |
142 / 1000000000 |
154 / 1000000000 |
294 / 1000000000 |
815 / 1000000000 |
1080 / 1000000000 |
1378 / 1000000000 |
1102 / 1000000000 |
128 / 1000000000 |
1089 / 1000000000 |
374 / 1000000000 |
765 / 1000000000 |
709 / 1000000000 |
233 / 1000000000 |
365 / 1000000000 |
304 / 1000000000 |
1098 / 1000000000 |
587 / 1000000000 |
176 / 1000000000 |
331 / 1000000000 |
204 / 1000000000 |
574 / 1000000000 |
524 / 1000000000 |
824 / 1000000000 |
464 / 1000000000 |
868 / 1000000000 |
257 / 1000000000 |
561 / 1000000000 |
171 / 1000000000 |
479 / 1000000000 |
168 / 1000000000 |
564 / 1000000000 |
1986 / 1000000000 |
160 / 1000000000 |
626 / 1000000000 |
521 / 1000000000 |
397 / 1000000000 |
590 / 1000000000 |
1176 / 1000000000 |
1024 / 1000000000 |
235 / 1000000000 |
200 / 1000000000 |
287 / 1000000000 |
177 / 1000000000 |
2619 / 1000000000 |
406 / 1000000000 |
629 / 1000000000 |
360 / 1000000000 |
605 / 1000000000 |
466 / 1000000000 |
1067 / 1000000000 |
307 / 1000000000 |
102 / 1000000000 |
307 / 1000000000 |
781 / 1000000000 |
240 / 1000000000 |
215 / 1000000000 |
944 / 1000000000 |
276 / 1000000000 |
973 / 1000000000 |
669 / 1000000000 |
1342 / 1000000000 |
239 / 1000000000 |
1218 / 1000000000 |
405 / 1000000000 |
285 / 1000000000 |
565 / 1000000000 |
229 / 1000000000 |
1092 / 1000000000 |
888 / 1000000000 |
383 / 1000000000 |
765 / 1000000000 |
628 / 1000000000 |
505 / 1000000000 |
606 / 1000000000 |
829 / 1000000000 |
3308 / 1000000000 |
729 / 1000000000 |
1088 / 1000000000 |
636 / 1000000000 |
384 / 1000000000 |
324 / 1000000000 |
468 / 1000000000 |
153 / 1000000000 |
260 / 1000000000 |
613 / 1000000000 |
282 / 1000000000 |
606 / 1000000000 |
613 / 1000000000 |
871 / 1000000000 |
369 / 1000000000 |
128 / 1000000000 |
804 / 1000000000 |
498 / 1000000000 |
228 / 1000000000 |
327 / 1000000000 |
243 / 1000000000 |
160 / 1000000000 |
559 / 1000000000 |
221 / 1000000000 |
703 / 1000000000 |
1086 / 1000000000 |
1084 / 1000000000 |
286 / 1000000000 |
251 / 1000000000 |
828 / 1000000000 |
598 / 1000000000 |
265 / 1000000000 |
996 / 1000000000 |
885 / 1000000000 |
567 / 1000000000 |
730 / 1000000000 |
1215 / 1000000000 |
451 / 1000000000 |
1077 / 1000000000 |
694 / 1000000000 |
526 / 1000000000 |
284 / 1000000000 |
355 / 1000000000 |
229 / 1000000000 |
998 / 1000000000 |
856 / 1000000000 |
504 / 1000000000 |
288 / 1000000000 |
925 / 1000000000 |
856 / 1000000000 |
842 / 1000000000 |
426 / 1000000000 |
292 / 1000000000 |
701 / 1000000000 |
3579 / 1000000000 |
852 / 1000000000 |
767 / 1000000000 |
310 / 1000000000 |
947 / 1000000000 |
816 / 1000000000 |
847 / 1000000000 |
833 / 1000000000 |
597 / 1000000000 |
448 / 1000000000 |
774 / 1000000000 |
950 / 1000000000 |
814 / 1000000000 |
888 / 1000000000 |
622 / 1000000000 |
324 / 1000000000 |
178 / 1000000000 |
425 / 1000000000 |
933 / 1000000000 |
610 / 1000000000 |
1102 / 1000000000 |
973 / 1000000000 |
939 / 1000000000 |
769 / 1000000000 |
947 / 1000000000 |
391 / 1000000000 |
500 / 1000000000 |
563 / 1000000000 |
738 / 1000000000 |
1158 / 1000000000 |
342 / 1000000000 |
1235 / 1000000000 |
574 / 1000000000 |
765 / 1000000000 |
209 / 1000000000 |
674 / 1000000000 |
951 / 1000000000 |
597 / 1000000000 |
433 / 1000000000 |
1081 / 1000000000 |
151 / 1000000000 |
217 / 1000000000 |
322 / 1000000000 |
1259 / 1000000000 |
358 / 1000000000 |
571 / 1000000000 |
218 / 1000000000 |
1044 / 1000000000 |
543 / 1000000000 |
161 / 1000000000 |
887 / 1000000000 |
441 / 1000000000 |
806 / 1000000000 |
214 / 1000000000 |
493 / 1000000000 |
135 / 1000000000 |
466 / 1000000000 |
317 / 1000000000 |
1185 / 1000000000 |
916 / 1000000000 |
1206 / 1000000000 |
631 / 1000000000 |
412 / 1000000000 |
775 / 1000000000 |
142 / 1000000000 |
896 / 1000000000 |
1146 / 1000000000 |
148 / 1000000000 |
512 / 1000000000 |
813 / 1000000000 |
257 / 1000000000 |
571 / 1000000000 |
178 / 1000000000 |
867 / 1000000000 |
716 / 1000000000 |
548 / 1000000000 |
217 / 1000000000 |
945 / 1000000000 |
892 / 1000000000 |
862 / 1000000000 |
291 / 1000000000 |
864 / 1000000000 |
151 / 1000000000 |
200 / 1000000000 |
829 / 1000000000 |
1032 / 1000000000 |
1390 / 1000000000 |
1053 / 1000000000 |
481 / 1000000000 |
552 / 1000000000 |
722 / 1000000000 |
332 / 1000000000 |
109 / 1000000000 |
727 / 1000000000 |
853 / 1000000000 |
701 / 1000000000 |
799 / 1000000000 |
1040 / 1000000000 |
1014 / 1000000000 |
198 / 1000000000 |
334 / 1000000000 |
154 / 1000000000 |
957 / 1000000000 |
1352 / 1000000000 |
1051 / 1000000000 |
295 / 1000000000 |
450 / 1000000000 |
656 / 1000000000 |
650 / 1000000000 |
429 / 1000000000 |
226 / 1000000000 |
566 / 1000000000 |
892 / 1000000000 |
625 / 1000000000 |
208 / 1000000000 |
719 / 1000000000 |
370 / 1000000000 |
429 / 1000000000 |
502 / 1000000000 |
491 / 1000000000 |
259 / 1000000000 |
258 / 1000000000 |
946 / 1000000000 |
385 / 1000000000 |
140 / 1000000000 |
1158 / 1000000000 |
578 / 1000000000 |
744 / 1000000000 |
759 / 1000000000 |
189 / 1000000000 |
140 / 1000000000 |
298 / 1000000000 |
435 / 1000000000 |
536 / 1000000000 |
858 / 1000000000 |
559 / 1000000000 |
829 / 1000000000 |
610 / 1000000000 |
538 / 1000000000 |
1249 / 1000000000 |
1621 / 1000000000 |
1791 / 1000000000 |
960 / 1000000000 |
968 / 1000000000 |
770 / 1000000000 |
509 / 1000000000 |
1079 / 1000000000 |
203 / 1000000000 |
250 / 1000000000 |
929 / 1000000000 |
704 / 1000000000 |
877 / 1000000000 |
553 / 1000000000 |
1172 / 1000000000 |
968 / 1000000000 |
600 / 1000000000 |
1115 / 1000000000 |
363 / 1000000000 |
196 / 1000000000 |
400 / 1000000000 |
1033 / 1000000000 |
682 / 1000000000 |
721 / 1000000000 |
928 / 1000000000 |
297 / 1000000000 |
659 / 1000000000 |
374 / 1000000000 |
435 / 1000000000 |
314 / 1000000000 |
926 / 1000000000 |
332 / 1000000000 |
659 / 1000000000 |
1068 / 1000000000 |
189 / 1000000000 |
487 / 1000000000 |
372 / 1000000000 |
843 / 1000000000 |
211 / 1000000000 |
373 / 1000000000 |
907 / 1000000000 |
269 / 1000000000 |
802 / 1000000000 |
480 / 1000000000 |
737 / 1000000000 |
286 / 1000000000 |
530 / 1000000000 |
355 / 1000000000 |
450 / 1000000000 |
244 / 1000000000 |
886 / 1000000000 |
290 / 1000000000 |
854 / 1000000000 |
476 / 1000000000 |
348 / 1000000000 |
438 / 1000000000 |
362 / 1000000000 |
427 / 1000000000 |
153 / 1000000000 |
1028 / 1000000000 |
464 / 1000000000 |
544 / 1000000000 |
650 / 1000000000 |
728 / 1000000000 |
422 / 1000000000 |
969 / 1000000000 |
346 / 1000000000 |
334 / 1000000000 |
696 / 1000000000 |
175 / 1000000000 |
295 / 1000000000 |
295 / 1000000000 |
468 / 1000000000 |
372 / 1000000000 |
1160 / 1000000000 |
538 / 1000000000 |
348 / 1000000000 |
163 / 1000000000 |
273 / 1000000000 |
821 / 1000000000 |
216 / 1000000000 |
542 / 1000000000 |
685 / 1000000000 |
736 / 1000000000 |
1037 / 1000000000 |
956 / 1000000000 |
993 / 1000000000 |
232 / 1000000000 |
1176 / 1000000000 |
1111 / 1000000000 |
594 / 1000000000 |
514 / 1000000000 |
944 / 1000000000 |
740 / 1000000000 |
904 / 1000000000 |
262 / 1000000000 |
455 / 1000000000 |
415 / 1000000000 |
447 / 1000000000 |
236 / 1000000000 |
268 / 1000000000 |
610 / 1000000000 |
333 / 1000000000 |
595 / 1000000000 |
554 / 1000000000 |
846 / 1000000000 |
1104 / 1000000000 |
1216 / 1000000000 |
657 / 1000000000 |
541 / 1000000000 |
155 / 1000000000 |
539 / 1000000000 |
232 / 1000000000 |
356 / 1000000000 |
867 / 1000000000 |
507 / 1000000000 |
464 / 1000000000 |
517 / 1000000000 |
740 / 1000000000 |
939 / 1000000000 |
237 / 1000000000 |
1098 / 1000000000 |
99 / 1000000000 |
347 / 1000000000 |
1029 / 1000000000 |
207 / 1000000000 |
452 / 1000000000 |
696 / 1000000000 |
1224 / 1000000000 |
898 / 1000000000 |
398 / 1000000000 |
756 / 1000000000 |
1120 / 1000000000 |
296 / 1000000000 |
780 / 1000000000 |
1207 / 1000000000 |
558 / 1000000000 |
970 / 1000000000 |
970 / 1000000000 |
591 / 1000000000 |
641 / 1000000000 |
424 / 1000000000 |
981 / 1000000000 |
519 / 1000000000 |
217 / 1000000000 |
269 / 1000000000 |
783 / 1000000000 |
1104 / 1000000000 |
701 / 1000000000 |
185 / 1000000000 |
358 / 1000000000 |
200 / 1000000000 |
482 / 1000000000 |
762 / 1000000000 |
1395 / 1000000000 |
1004 / 1000000000 |
576 / 1000000000 |
532 / 1000000000 |
1031 / 1000000000 |
569 / 1000000000 |
507 / 1000000000 |
200 / 1000000000 |
1020 / 1000000000 |
367 / 1000000000 |
193 / 1000000000 |
111 / 1000000000 |
492 / 1000000000 |
1076 / 1000000000 |
1127 / 1000000000 |
729 / 1000000000 |
256 / 1000000000 |
639 / 1000000000 |
538 / 1000000000 |
1028 / 1000000000 |
502 / 1000000000 |
929 / 1000000000 |
658 / 1000000000 |
1096 / 1000000000 |
611 / 1000000000 |
729 / 1000000000 |
223 / 1000000000 |
620 / 1000000000 |
695 / 1000000000 |
356 / 1000000000 |
341 / 1000000000 |
291 / 1000000000 |
1060 / 1000000000 |
428 / 1000000000 |
435 / 1000000000 |
628 / 1000000000 |
725 / 1000000000 |
375 / 1000000000 |
378 / 1000000000 |
527 / 1000000000 |
824 / 1000000000 |
1053 / 1000000000 |
367 / 1000000000 |
890 / 1000000000 |
131 / 1000000000 |
945 / 1000000000 |
855 / 1000000000 |
311 / 1000000000 |
180 / 1000000000 |
430 / 1000000000 |
808 / 1000000000 |
1116 / 1000000000 |
806 / 1000000000 |
741 / 1000000000 |
1031 / 1000000000 |
314 / 1000000000 |
200 / 1000000000 |
1163 / 1000000000 |
1043 / 1000000000 |
228 / 1000000000 |
283 / 1000000000 |
971 / 1000000000 |
152 / 1000000000 |
923 / 1000000000 |
807 / 1000000000 |
236 / 1000000000 |
996 / 1000000000 |
262 / 1000000000 |
819 / 1000000000 |
628 / 1000000000 |
617 / 1000000000 |
505 / 1000000000 |
526 / 1000000000 |
1272 / 1000000000 |
172 / 1000000000 |
641 / 1000000000 |
1203 / 1000000000 |
443 / 1000000000 |
412 / 1000000000 |
1195 / 1000000000 |
850 / 1000000000 |
513 / 1000000000 |
344 / 1000000000 |
583 / 1000000000 |
1049 / 1000000000 |
298 / 1000000000 |
224 / 1000000000 |
255 / 1000000000 |
907 / 1000000000 |
159 / 1000000000 |
1065 / 1000000000 |
545 / 1000000000 |
825 / 1000000000 |
174 / 1000000000 |
516 / 1000000000 |
535 / 1000000000 |
838 / 1000000000 |
350 / 1000000000 |
154 / 1000000000 |
692 / 1000000000 |
533 / 1000000000 |
969 / 1000000000 |
638 / 1000000000 |
407 / 1000000000 |
164 / 1000000000 |
1070 / 1000000000 |
638 / 1000000000 |
691 / 1000000000 |
443 / 1000000000 |
251 / 1000000000 |
181 / 1000000000 |
833 / 1000000000 |
1234 / 1000000000 |
706 / 1000000000 |
509 / 1000000000 |
1111 / 1000000000 |
811 / 1000000000 |
191 / 1000000000 |
858 / 1000000000 |
963 / 1000000000 |
1183 / 1000000000 |
1191 / 1000000000 |
685 / 1000000000 |
1298 / 1000000000 |
430 / 1000000000 |
508 / 1000000000 |
606 / 1000000000 |
282 / 1000000000 |
161 / 1000000000 |
393 / 1000000000 |
314 / 1000000000 |
336 / 1000000000 |
533 / 1000000000 |
336 / 1000000000 |
439 / 1000000000 |
816 / 1000000000 |
522 / 1000000000 |
337 / 1000000000 |
1229 / 1000000000 |
778 / 1000000000 |
1072 / 1000000000 |
226 / 1000000000 |
1077 / 1000000000 |
960 / 1000000000 |
979 / 1000000000 |
939 / 1000000000 |
1086 / 1000000000 |
332 / 1000000000 |
724 / 1000000000 |
919 / 1000000000 |
447 / 1000000000 |
411 / 1000000000 |
1182 / 1000000000 |
166 / 1000000000 |
645 / 1000000000 |
725 / 1000000000 |
913 / 1000000000 |
194 / 1000000000 |
223 / 1000000000 |
875 / 1000000000 |
522 / 1000000000 |
369 / 1000000000 |
388 / 1000000000 |
294 / 1000000000 |
490 / 1000000000 |
801 / 1000000000 |
561 / 1000000000 |
822 / 1000000000 |
807 / 1000000000 |
785 / 1000000000 |
805 / 1000000000 |
246 / 1000000000 |
159 / 1000000000 |
454 / 1000000000 |
487 / 1000000000 |
943 / 1000000000 |
849 / 1000000000 |
818 / 1000000000 |
1239 / 1000000000 |
226 / 1000000000 |
316 / 1000000000 |
236 / 1000000000 |
694 / 1000000000 |
248 / 1000000000 |
1037 / 1000000000 |
286 / 1000000000 |
1176 / 1000000000 |
306 / 1000000000 |
235 / 1000000000 |
691 / 1000000000 |
823 / 1000000000 |
656 / 1000000000 |
623 / 1000000000 |
410 / 1000000000 |
626 / 1000000000 |
839 / 1000000000 |
692 / 1000000000 |
159 / 1000000000 |
1016 / 1000000000 |
400 / 1000000000 |
410 / 1000000000 |
1018 / 1000000000 |
609 / 1000000000 |
297 / 1000000000 |
186 / 1000000000 |
182 / 1000000000 |
443 / 1000000000 |
466 / 1000000000 |
563 / 1000000000 |
627 / 1000000000 |
825 / 1000000000 |
427 / 1000000000 |
574 / 1000000000 |
1097 / 1000000000 |
815 / 1000000000 |
341 / 1000000000 |
433 / 1000000000 |
125 / 1000000000 |
584 / 1000000000 |
130 / 1000000000 |
485 / 1000000000 |
688 / 1000000000 |
265 / 1000000000 |
565 / 1000000000 |
676 / 1000000000 |
182 / 1000000000 |
897 / 1000000000 |
150 / 1000000000 |
704 / 1000000000 |
416 / 1000000000 |
113 / 1000000000 |
143 / 1000000000 |
795 / 1000000000 |
359 / 1000000000 |
996 / 1000000000 |
942 / 1000000000 |
1146 / 1000000000 |
294 / 1000000000 |
1141 / 1000000000 |
367 / 1000000000 |
1058 / 1000000000 |
638 / 1000000000 |
553 / 1000000000 |
270 / 1000000000 |
361 / 1000000000 |
351 / 1000000000 |
945 / 1000000000 |
332 / 1000000000 |
504 / 1000000000 |
296 / 1000000000 |
275 / 1000000000 |
230 / 1000000000 |
1251 / 1000000000 |
217 / 1000000000 |
1112 / 1000000000 |
276 / 1000000000 |
145 / 1000000000 |
823 / 1000000000 |
407 / 1000000000 |
148 / 1000000000 |
935 / 1000000000 |
178 / 1000000000 |
1137 / 1000000000 |
481 / 1000000000 |
794 / 1000000000 |
117 / 1000000000 |
670 / 1000000000 |
839 / 1000000000 |
655 / 1000000000 |
1039 / 1000000000 |
841 / 1000000000 |
826 / 1000000000 |
991 / 1000000000 |
223 / 1000000000 |
1020 / 1000000000 |
1145 / 1000000000 |
180 / 1000000000 |
682 / 1000000000 |
564 / 1000000000 |
672 / 1000000000 |
1114 / 1000000000 |
561 / 1000000000 |
805 / 1000000000 |
384 / 1000000000 |
196 / 1000000000 |
337 / 1000000000 |
1129 / 1000000000 |
136 / 1000000000 |
396 / 1000000000 |
322 / 1000000000 |
870 / 1000000000 |
1367 / 1000000000 |
215 / 1000000000 |
634 / 1000000000 |
243 / 1000000000 |
231 / 1000000000 |
131 / 1000000000 |
1307 / 1000000000 |
716 / 1000000000 |
448 / 1000000000 |
170 / 1000000000 |
1039 / 1000000000 |
233 / 1000000000 |
1458 / 1000000000 |
695 / 1000000000 |
217 / 1000000000 |
773 / 1000000000 |
344 / 1000000000 |
590 / 1000000000 |
564 / 1000000000 |
298 / 1000000000 |
806 / 1000000000 |
156 / 1000000000 |
3347 / 1000000000 |
554 / 1000000000 |
1160 / 1000000000 |
762 / 1000000000 |
679 / 1000000000 |
800 / 1000000000 |
143 / 1000000000 |
761 / 1000000000 |
491 / 1000000000 |
376 / 1000000000 |
471 / 1000000000 |
566 / 1000000000 |
149 / 1000000000 |
199 / 1000000000 |
1202 / 1000000000 |
234 / 1000000000 |
899 / 1000000000 |
257 / 1000000000 |
574 / 1000000000 |
236 / 1000000000 |
615 / 1000000000 |
400 / 1000000000 |
1369 / 1000000000 |
209 / 1000000000 |
229 / 1000000000 |
253 / 1000000000 |
503 / 1000000000 |
450 / 1000000000 |
350 / 1000000000 |
804 / 1000000000 |
738 / 1000000000 |
905 / 1000000000 |
480 / 1000000000 |
690 / 1000000000 |
306 / 1000000000 |
743 / 1000000000 |
947 / 1000000000 |
481 / 1000000000 |
947 / 1000000000 |
565 / 1000000000 |
1121 / 1000000000 |
440 / 1000000000 |
798 / 1000000000 |
1629 / 1000000000 |
1020 / 1000000000 |
312 / 1000000000 |
272 / 1000000000 |
604 / 1000000000 |
206 / 1000000000 |
208 / 1000000000 |
643 / 1000000000 |
1477 / 1000000000 |
533 / 1000000000 |
566 / 1000000000 |
296 / 1000000000 |
812 / 1000000000 |
1021 / 1000000000 |
156 / 1000000000 |
1097 / 1000000000 |
998 / 1000000000 |
1074 / 1000000000 |
376 / 1000000000 |
282 / 1000000000 |
375 / 1000000000 |
227 / 1000000000 |
608 / 1000000000 |
422 / 1000000000 |
1136 / 1000000000 |
960 / 1000000000 |
1105 / 1000000000 |
1033 / 1000000000 |
363 / 1000000000 |
1021 / 1000000000 |
788 / 1000000000 |
378 / 1000000000 |
2214 / 1000000000 |
450 / 1000000000 |
274 / 1000000000 |
526 / 1000000000 |
1133 / 1000000000 |
367 / 1000000000 |
1159 / 1000000000 |
198 / 1000000000 |
527 / 1000000000 |
1255 / 1000000000 |
191 / 1000000000 |
1136 / 1000000000 |
235 / 1000000000 |
864 / 1000000000 |
163 / 1000000000 |
271 / 1000000000 |
866 / 1000000000 |
163 / 1000000000 |
566 / 1000000000 |
1020 / 1000000000 |
1323 / 1000000000 |
260 / 1000000000 |
840 / 1000000000 |
284 / 1000000000 |
359 / 1000000000 |
558 / 1000000000 |
1095 / 1000000000 |
1257 / 1000000000 |
498 / 1000000000 |
788 / 1000000000 |
880 / 1000000000 |
744 / 1000000000 |
562 / 1000000000 |
715 / 1000000000 |
1144 / 1000000000 |
424 / 1000000000 |
312 / 1000000000 |
254 / 1000000000 |
1010 / 1000000000 |
431 / 1000000000 |
752 / 1000000000 |
896 / 1000000000 |
295 / 1000000000 |
847 / 1000000000 |
1123 / 1000000000 |
895 / 1000000000 |
535 / 1000000000 |
373 / 1000000000 |
254 / 1000000000 |
328 / 1000000000 |
730 / 1000000000 |
504 / 1000000000 |
1300 / 1000000000 |
515 / 1000000000 |
904 / 1000000000 |
456 / 1000000000 |
152 / 1000000000 |
560 / 1000000000 |
529 / 1000000000 |
547 / 1000000000 |
451 / 1000000000 |
1092 / 1000000000 |
489 / 1000000000 |
817 / 1000000000 |
1096 / 1000000000 |
1181 / 1000000000 |
1028 / 1000000000 |
1946 / 1000000000 |
278 / 1000000000 |
695 / 1000000000 |
881 / 1000000000 |
201 / 1000000000 |
1677 / 1000000000 |
986 / 1000000000 |
552 / 1000000000 |
168 / 1000000000 |
1393 / 1000000000 |
264 / 1000000000 |
611 / 1000000000 |
786 / 1000000000 |
453 / 1000000000 |
176 / 1000000000 |
1228 / 1000000000 |
1035 / 1000000000 |
503 / 1000000000 |
19336 / 1000000000 |
417 / 1000000000 |
216 / 1000000000 |
354 / 1000000000 |
555 / 1000000000 |
1377 / 1000000000 |
948 / 1000000000 |
285 / 1000000000 |
321 / 1000000000 |
701 / 1000000000 |
161 / 1000000000 |
222 / 1000000000 |
460 / 1000000000 |
255 / 1000000000 |
601 / 1000000000 |
1559 / 1000000000 |
451 / 1000000000 |
711 / 1000000000 |
348 / 1000000000 |
566 / 1000000000 |
779 / 1000000000 |
565 / 1000000000 |
124 / 1000000000 |
2150 / 1000000000 |
282 / 1000000000 |
384 / 1000000000 |
1063 / 1000000000 |
1326 / 1000000000 |
550 / 1000000000 |
307 / 1000000000 |
249 / 1000000000 |
583 / 1000000000 |
176 / 1000000000 |
277 / 1000000000 |
631 / 1000000000 |
182 / 1000000000 |
919 / 1000000000 |
964 / 1000000000 |
1023 / 1000000000 |
909 / 1000000000 |
1437 / 1000000000 |
987 / 1000000000 |
924 / 1000000000 |
471 / 1000000000 |
385 / 1000000000 |
574 / 1000000000 |
756 / 1000000000 |
651 / 1000000000 |
598 / 1000000000 |
315 / 1000000000 |
208 / 1000000000 |
1110 / 1000000000 |
509 / 1000000000 |
235 / 1000000000 |
1003 / 1000000000 |
295 / 1000000000 |
815 / 1000000000 |
234 / 1000000000 |
706 / 1000000000 |
548 / 1000000000 |
795 / 1000000000 |
198 / 1000000000 |
1045 / 1000000000 |
499 / 1000000000 |
1225 / 1000000000 |
203 / 1000000000 |
497 / 1000000000 |
653 / 1000000000 |
942 / 1000000000 |
619 / 1000000000 |
699 / 1000000000 |
471 / 1000000000 |
1160 / 1000000000 |
475 / 1000000000 |
430 / 1000000000 |
360 / 1000000000 |
215 / 1000000000 |
243 / 1000000000 |
444 / 1000000000 |
412 / 1000000000 |
469 / 1000000000 |
357 / 1000000000 |
1091 / 1000000000 |
911 / 1000000000 |
527 / 1000000000 |
564 / 1000000000 |
940 / 1000000000 |
968 / 1000000000 |
1108 / 1000000000 |
144 / 1000000000 |
1587 / 1000000000 |
918 / 1000000000 |
919 / 1000000000 |
785 / 1000000000 |
908 / 1000000000 |
602 / 1000000000 |
496 / 1000000000 |
370 / 1000000000 |
372 / 1000000000 |
384 / 1000000000 |
684 / 1000000000 |
705 / 1000000000 |
236 / 1000000000 |
473 / 1000000000 |
436 / 1000000000 |
332 / 1000000000 |
197 / 1000000000 |
1641 / 1000000000 |
824 / 1000000000 |
808 / 1000000000 |
214 / 1000000000 |
1207 / 1000000000 |
801 / 1000000000 |
385 / 1000000000 |
287 / 1000000000 |
785 / 1000000000 |
1007 / 1000000000 |
686 / 1000000000 |
121 / 1000000000 |
502 / 1000000000 |
503 / 1000000000 |
712 / 1000000000 |
1042 / 1000000000 |
340 / 1000000000 |
471 / 1000000000 |
399 / 1000000000 |
3546 / 1000000000 |
839 / 1000000000 |
181 / 1000000000 |
431 / 1000000000 |
951 / 1000000000 |
816 / 1000000000 |
462 / 1000000000 |
1188 / 1000000000 |
654 / 1000000000 |
125 / 1000000000 |
814 / 1000000000 |
303 / 1000000000 |
720 / 1000000000 |
1025 / 1000000000 |
168 / 1000000000 |
1056 / 1000000000 |
312 / 1000000000 |
454 / 1000000000 |
443 / 1000000000 |
921 / 1000000000 |
1170 / 1000000000 |
953 / 1000000000 |
938 / 1000000000 |
806 / 1000000000 |
286 / 1000000000 |
973 / 1000000000 |
241 / 1000000000 |
1303 / 1000000000 |
312 / 1000000000 |
401 / 1000000000 |
582 / 1000000000 |
239 / 1000000000 |
373 / 1000000000 |
983 / 1000000000 |
718 / 1000000000 |
1570 / 1000000000 |
392 / 1000000000 |
549 / 1000000000 |
709 / 1000000000 |
353 / 1000000000 |
204 / 1000000000 |
356 / 1000000000 |
830 / 1000000000 |
1055 / 1000000000 |
551 / 1000000000 |
931 / 1000000000 |
664 / 1000000000 |
913 / 1000000000 |
568 / 1000000000 |
341 / 1000000000 |
155 / 1000000000 |
519 / 1000000000 |
233 / 1000000000 |
709 / 1000000000 |
1018 / 1000000000 |
226 / 1000000000 |
779 / 1000000000 |
461 / 1000000000 |
1042 / 1000000000 |
1036 / 1000000000 |
311 / 1000000000 |
453 / 1000000000 |
537 / 1000000000 |
1040 / 1000000000 |
175 / 1000000000 |
174 / 1000000000 |
741 / 1000000000 |
233 / 1000000000 |
799 / 1000000000 |
523 / 1000000000 |
461 / 1000000000 |
737 / 1000000000 |
585 / 1000000000 |
835 / 1000000000 |
890 / 1000000000 |
268 / 1000000000 |
505 / 1000000000 |
502 / 1000000000 |
3769 / 1000000000 |
229 / 1000000000 |
485 / 1000000000 |
306 / 1000000000 |
1168 / 1000000000 |
646 / 1000000000 |
654 / 1000000000 |
668 / 1000000000 |
1200 / 1000000000 |
192 / 1000000000 |
525 / 1000000000 |
225 / 1000000000 |
564 / 1000000000 |
390 / 1000000000 |
646 / 1000000000 |
227 / 1000000000 |
704 / 1000000000 |
425 / 1000000000 |
181 / 1000000000 |
173 / 1000000000 |
349 / 1000000000 |
293 / 1000000000 |
590 / 1000000000 |
871 / 1000000000 |
881 / 1000000000 |
352 / 1000000000 |
705 / 1000000000 |
587 / 1000000000 |
548 / 1000000000 |
316 / 1000000000 |
548 / 1000000000 |
1019 / 1000000000 |
789 / 1000000000 |
422 / 1000000000 |
444 / 1000000000 |
335 / 1000000000 |
289 / 1000000000 |
229 / 1000000000 |
927 / 1000000000 |
2463 / 1000000000 |
376 / 1000000000 |
904 / 1000000000 |
1295 / 1000000000 |
408 / 1000000000 |
161 / 1000000000 |
186 / 1000000000 |
871 / 1000000000 |
348 / 1000000000 |
525 / 1000000000 |
533 / 1000000000 |
806 / 1000000000 |
389 / 1000000000 |
203 / 1000000000 |
547 / 1000000000 |
440 / 1000000000 |
629 / 1000000000 |
1068 / 1000000000 |
708 / 1000000000 |
229 / 1000000000 |
364 / 1000000000 |
466 / 1000000000 |
505 / 1000000000 |
791 / 1000000000 |
586 / 1000000000 |
779 / 1000000000 |
196 / 1000000000 |
646 / 1000000000 |
429 / 1000000000 |
632 / 1000000000 |
654 / 1000000000 |
615 / 1000000000 |
845 / 1000000000 |
1083 / 1000000000 |
199 / 1000000000 |
332 / 1000000000 |
1040 / 1000000000 |
328 / 1000000000 |
859 / 1000000000 |
326 / 1000000000 |
933 / 1000000000 |
158 / 1000000000 |
130 / 1000000000 |
883 / 1000000000 |
639 / 1000000000 |
990 / 1000000000 |
246 / 1000000000 |
275 / 1000000000 |
903 / 1000000000 |
147 / 1000000000 |
818 / 1000000000 |
979 / 1000000000 |
1104 / 1000000000 |
594 / 1000000000 |
193 / 1000000000 |
770 / 1000000000 |
214 / 1000000000 |
653 / 1000000000 |
963 / 1000000000 |
1083 / 1000000000 |
422 / 1000000000 |
1260 / 1000000000 |
529 / 1000000000 |
1084 / 1000000000 |
1096 / 1000000000 |
513 / 1000000000 |
724 / 1000000000 |
153 / 1000000000 |
1215 / 1000000000 |
1002 / 1000000000 |
733 / 1000000000 |
538 / 1000000000 |
230 / 1000000000 |
320 / 1000000000 |
301 / 1000000000 |
502 / 1000000000 |
489 / 1000000000 |
746 / 1000000000 |
960 / 1000000000 |
451 / 1000000000 |
300 / 1000000000 |
180 / 1000000000 |
1085 / 1000000000 |
463 / 1000000000 |
855 / 1000000000 |
1253 / 1000000000 |
584 / 1000000000 |
244 / 1000000000 |
471 / 1000000000 |
1104 / 1000000000 |
317 / 1000000000 |
610 / 1000000000 |
529 / 1000000000 |
1228 / 1000000000 |
553 / 1000000000 |
245 / 1000000000 |
671 / 1000000000 |
283 / 1000000000 |
968 / 1000000000 |
259 / 1000000000 |
1004 / 1000000000 |
603 / 1000000000 |
347 / 1000000000 |
235 / 1000000000 |
650 / 1000000000 |
701 / 1000000000 |
1146 / 1000000000 |
219 / 1000000000 |
891 / 1000000000 |
172 / 1000000000 |
415 / 1000000000 |
336 / 1000000000 |
585 / 1000000000 |
472 / 1000000000 |
963 / 1000000000 |
441 / 1000000000 |
599 / 1000000000 |
160 / 1000000000 |
347 / 1000000000 |
911 / 1000000000 |
966 / 1000000000 |
941 / 1000000000 |
223 / 1000000000 |
317 / 1000000000 |
589 / 1000000000 |
723 / 1000000000 |
284 / 1000000000 |
395 / 1000000000 |
785 / 1000000000 |
538 / 1000000000 |
900 / 1000000000 |
969 / 1000000000 |
944 / 1000000000 |
790 / 1000000000 |
1041 / 1000000000 |
624 / 1000000000 |
641 / 1000000000 |
800 / 1000000000 |
248 / 1000000000 |
401 / 1000000000 |
1035 / 1000000000 |
951 / 1000000000 |
99 / 1000000000 |
139 / 1000000000 |
326 / 1000000000 |
1228 / 1000000000 |
134 / 1000000000 |
786 / 1000000000 |
1163 / 1000000000 |
1044 / 1000000000 |
920 / 1000000000 |
709 / 1000000000 |
1960 / 1000000000 |
946 / 1000000000 |
1087 / 1000000000 |
288 / 1000000000 |
824 / 1000000000 |
536 / 1000000000 |
1085 / 1000000000 |
568 / 1000000000 |
1618 / 1000000000 |
655 / 1000000000 |
510 / 1000000000 |
144 / 1000000000 |
392 / 1000000000 |
848 / 1000000000 |
446 / 1000000000 |
276 / 1000000000 |
24154 / 1000000000 |
460 / 1000000000 |
848 / 1000000000 |
844 / 1000000000 |
623 / 1000000000 |
1010 / 1000000000 |
893 / 1000000000 |
423 / 1000000000 |
410 / 1000000000 |
500 / 1000000000 |
410 / 1000000000 |
210 / 1000000000 |
1154 / 1000000000 |
1094 / 1000000000 |
951 / 1000000000 |
246 / 1000000000 |
311 / 1000000000 |
459 / 1000000000 |
1155 / 1000000000 |
223 / 1000000000 |
299 / 1000000000 |
336 / 1000000000 |
1047 / 1000000000 |
1001 / 1000000000 |
433 / 1000000000 |
762 / 1000000000 |
646 / 1000000000 |
554 / 1000000000 |
497 / 1000000000 |
602 / 1000000000 |
191 / 1000000000 |
302 / 1000000000 |
146 / 1000000000 |
590 / 1000000000 |
488 / 1000000000 |
297 / 1000000000 |
478 / 1000000000 |
1098 / 1000000000 |
1303 / 1000000000 |
512 / 1000000000 |
415 / 1000000000 |
991 / 1000000000 |
881 / 1000000000 |
1069 / 1000000000 |
359 / 1000000000 |
833 / 1000000000 |
679 / 1000000000 |
301 / 1000000000 |
211 / 1000000000 |
472 / 1000000000 |
149 / 1000000000 |
564 / 1000000000 |
490 / 1000000000 |
1118 / 1000000000 |
483 / 1000000000 |
281 / 1000000000 |
783 / 1000000000 |
891 / 1000000000 |
430 / 1000000000 |
133 / 1000000000 |
651 / 1000000000 |
1009 / 1000000000 |
455 / 1000000000 |
236 / 1000000000 |
1242 / 1000000000 |
1548 / 1000000000 |
725 / 1000000000 |
864 / 1000000000 |
1079 / 1000000000 |
1042 / 1000000000 |
431 / 1000000000 |
962 / 1000000000 |
849 / 1000000000 |
631 / 1000000000 |
627 / 1000000000 |
551 / 1000000000 |
919 / 1000000000 |
591 / 1000000000 |
150 / 1000000000 |
1415 / 1000000000 |
247 / 1000000000 |
398 / 1000000000 |
Status |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Set Name |
Test Cases |
test_0000 |
test_0000.txt |
test_0001 |
test_0001.txt |
test_0002 |
test_0002.txt |
test_0003 |
test_0003.txt |
test_0004 |
test_0004.txt |
test_0005 |
test_0005.txt |
test_0006 |
test_0006.txt |
test_0007 |
test_0007.txt |
test_0008 |
test_0008.txt |
test_0009 |
test_0009.txt |
test_0010 |
test_0010.txt |
test_0011 |
test_0011.txt |
test_0012 |
test_0012.txt |
test_0013 |
test_0013.txt |
test_0014 |
test_0014.txt |
test_0015 |
test_0015.txt |
test_0016 |
test_0016.txt |
test_0017 |
test_0017.txt |
test_0018 |
test_0018.txt |
test_0019 |
test_0019.txt |
test_0020 |
test_0020.txt |
test_0021 |
test_0021.txt |
test_0022 |
test_0022.txt |
test_0023 |
test_0023.txt |
test_0024 |
test_0024.txt |
test_0025 |
test_0025.txt |
test_0026 |
test_0026.txt |
test_0027 |
test_0027.txt |
test_0028 |
test_0028.txt |
test_0029 |
test_0029.txt |
test_0030 |
test_0030.txt |
test_0031 |
test_0031.txt |
test_0032 |
test_0032.txt |
test_0033 |
test_0033.txt |
test_0034 |
test_0034.txt |
test_0035 |
test_0035.txt |
test_0036 |
test_0036.txt |
test_0037 |
test_0037.txt |
test_0038 |
test_0038.txt |
test_0039 |
test_0039.txt |
test_0040 |
test_0040.txt |
test_0041 |
test_0041.txt |
test_0042 |
test_0042.txt |
test_0043 |
test_0043.txt |
test_0044 |
test_0044.txt |
test_0045 |
test_0045.txt |
test_0046 |
test_0046.txt |
test_0047 |
test_0047.txt |
test_0048 |
test_0048.txt |
test_0049 |
test_0049.txt |
test_0050 |
test_0050.txt |
test_0051 |
test_0051.txt |
test_0052 |
test_0052.txt |
test_0053 |
test_0053.txt |
test_0054 |
test_0054.txt |
test_0055 |
test_0055.txt |
test_0056 |
test_0056.txt |
test_0057 |
test_0057.txt |
test_0058 |
test_0058.txt |
test_0059 |
test_0059.txt |
test_0060 |
test_0060.txt |
test_0061 |
test_0061.txt |
test_0062 |
test_0062.txt |
test_0063 |
test_0063.txt |
test_0064 |
test_0064.txt |
test_0065 |
test_0065.txt |
test_0066 |
test_0066.txt |
test_0067 |
test_0067.txt |
test_0068 |
test_0068.txt |
test_0069 |
test_0069.txt |
test_0070 |
test_0070.txt |
test_0071 |
test_0071.txt |
test_0072 |
test_0072.txt |
test_0073 |
test_0073.txt |
test_0074 |
test_0074.txt |
test_0075 |
test_0075.txt |
test_0076 |
test_0076.txt |
test_0077 |
test_0077.txt |
test_0078 |
test_0078.txt |
test_0079 |
test_0079.txt |
test_0080 |
test_0080.txt |
test_0081 |
test_0081.txt |
test_0082 |
test_0082.txt |
test_0083 |
test_0083.txt |
test_0084 |
test_0084.txt |
test_0085 |
test_0085.txt |
test_0086 |
test_0086.txt |
test_0087 |
test_0087.txt |
test_0088 |
test_0088.txt |
test_0089 |
test_0089.txt |
test_0090 |
test_0090.txt |
test_0091 |
test_0091.txt |
test_0092 |
test_0092.txt |
test_0093 |
test_0093.txt |
test_0094 |
test_0094.txt |
test_0095 |
test_0095.txt |
test_0096 |
test_0096.txt |
test_0097 |
test_0097.txt |
test_0098 |
test_0098.txt |
test_0099 |
test_0099.txt |
test_0100 |
test_0100.txt |
test_0101 |
test_0101.txt |
test_0102 |
test_0102.txt |
test_0103 |
test_0103.txt |
test_0104 |
test_0104.txt |
test_0105 |
test_0105.txt |
test_0106 |
test_0106.txt |
test_0107 |
test_0107.txt |
test_0108 |
test_0108.txt |
test_0109 |
test_0109.txt |
test_0110 |
test_0110.txt |
test_0111 |
test_0111.txt |
test_0112 |
test_0112.txt |
test_0113 |
test_0113.txt |
test_0114 |
test_0114.txt |
test_0115 |
test_0115.txt |
test_0116 |
test_0116.txt |
test_0117 |
test_0117.txt |
test_0118 |
test_0118.txt |
test_0119 |
test_0119.txt |
test_0120 |
test_0120.txt |
test_0121 |
test_0121.txt |
test_0122 |
test_0122.txt |
test_0123 |
test_0123.txt |
test_0124 |
test_0124.txt |
test_0125 |
test_0125.txt |
test_0126 |
test_0126.txt |
test_0127 |
test_0127.txt |
test_0128 |
test_0128.txt |
test_0129 |
test_0129.txt |
test_0130 |
test_0130.txt |
test_0131 |
test_0131.txt |
test_0132 |
test_0132.txt |
test_0133 |
test_0133.txt |
test_0134 |
test_0134.txt |
test_0135 |
test_0135.txt |
test_0136 |
test_0136.txt |
test_0137 |
test_0137.txt |
test_0138 |
test_0138.txt |
test_0139 |
test_0139.txt |
test_0140 |
test_0140.txt |
test_0141 |
test_0141.txt |
test_0142 |
test_0142.txt |
test_0143 |
test_0143.txt |
test_0144 |
test_0144.txt |
test_0145 |
test_0145.txt |
test_0146 |
test_0146.txt |
test_0147 |
test_0147.txt |
test_0148 |
test_0148.txt |
test_0149 |
test_0149.txt |
test_0150 |
test_0150.txt |
test_0151 |
test_0151.txt |
test_0152 |
test_0152.txt |
test_0153 |
test_0153.txt |
test_0154 |
test_0154.txt |
test_0155 |
test_0155.txt |
test_0156 |
test_0156.txt |
test_0157 |
test_0157.txt |
test_0158 |
test_0158.txt |
test_0159 |
test_0159.txt |
test_0160 |
test_0160.txt |
test_0161 |
test_0161.txt |
test_0162 |
test_0162.txt |
test_0163 |
test_0163.txt |
test_0164 |
test_0164.txt |
test_0165 |
test_0165.txt |
test_0166 |
test_0166.txt |
test_0167 |
test_0167.txt |
test_0168 |
test_0168.txt |
test_0169 |
test_0169.txt |
test_0170 |
test_0170.txt |
test_0171 |
test_0171.txt |
test_0172 |
test_0172.txt |
test_0173 |
test_0173.txt |
test_0174 |
test_0174.txt |
test_0175 |
test_0175.txt |
test_0176 |
test_0176.txt |
test_0177 |
test_0177.txt |
test_0178 |
test_0178.txt |
test_0179 |
test_0179.txt |
test_0180 |
test_0180.txt |
test_0181 |
test_0181.txt |
test_0182 |
test_0182.txt |
test_0183 |
test_0183.txt |
test_0184 |
test_0184.txt |
test_0185 |
test_0185.txt |
test_0186 |
test_0186.txt |
test_0187 |
test_0187.txt |
test_0188 |
test_0188.txt |
test_0189 |
test_0189.txt |
test_0190 |
test_0190.txt |
test_0191 |
test_0191.txt |
test_0192 |
test_0192.txt |
test_0193 |
test_0193.txt |
test_0194 |
test_0194.txt |
test_0195 |
test_0195.txt |
test_0196 |
test_0196.txt |
test_0197 |
test_0197.txt |
test_0198 |
test_0198.txt |
test_0199 |
test_0199.txt |
test_0200 |
test_0200.txt |
test_0201 |
test_0201.txt |
test_0202 |
test_0202.txt |
test_0203 |
test_0203.txt |
test_0204 |
test_0204.txt |
test_0205 |
test_0205.txt |
test_0206 |
test_0206.txt |
test_0207 |
test_0207.txt |
test_0208 |
test_0208.txt |
test_0209 |
test_0209.txt |
test_0210 |
test_0210.txt |
test_0211 |
test_0211.txt |
test_0212 |
test_0212.txt |
test_0213 |
test_0213.txt |
test_0214 |
test_0214.txt |
test_0215 |
test_0215.txt |
test_0216 |
test_0216.txt |
test_0217 |
test_0217.txt |
test_0218 |
test_0218.txt |
test_0219 |
test_0219.txt |
test_0220 |
test_0220.txt |
test_0221 |
test_0221.txt |
test_0222 |
test_0222.txt |
test_0223 |
test_0223.txt |
test_0224 |
test_0224.txt |
test_0225 |
test_0225.txt |
test_0226 |
test_0226.txt |
test_0227 |
test_0227.txt |
test_0228 |
test_0228.txt |
test_0229 |
test_0229.txt |
test_0230 |
test_0230.txt |
test_0231 |
test_0231.txt |
test_0232 |
test_0232.txt |
test_0233 |
test_0233.txt |
test_0234 |
test_0234.txt |
test_0235 |
test_0235.txt |
test_0236 |
test_0236.txt |
test_0237 |
test_0237.txt |
test_0238 |
test_0238.txt |
test_0239 |
test_0239.txt |
test_0240 |
test_0240.txt |
test_0241 |
test_0241.txt |
test_0242 |
test_0242.txt |
test_0243 |
test_0243.txt |
test_0244 |
test_0244.txt |
test_0245 |
test_0245.txt |
test_0246 |
test_0246.txt |
test_0247 |
test_0247.txt |
test_0248 |
test_0248.txt |
test_0249 |
test_0249.txt |
test_0250 |
test_0250.txt |
test_0251 |
test_0251.txt |
test_0252 |
test_0252.txt |
test_0253 |
test_0253.txt |
test_0254 |
test_0254.txt |
test_0255 |
test_0255.txt |
test_0256 |
test_0256.txt |
test_0257 |
test_0257.txt |
test_0258 |
test_0258.txt |
test_0259 |
test_0259.txt |
test_0260 |
test_0260.txt |
test_0261 |
test_0261.txt |
test_0262 |
test_0262.txt |
test_0263 |
test_0263.txt |
test_0264 |
test_0264.txt |
test_0265 |
test_0265.txt |
test_0266 |
test_0266.txt |
test_0267 |
test_0267.txt |
test_0268 |
test_0268.txt |
test_0269 |
test_0269.txt |
test_0270 |
test_0270.txt |
test_0271 |
test_0271.txt |
test_0272 |
test_0272.txt |
test_0273 |
test_0273.txt |
test_0274 |
test_0274.txt |
test_0275 |
test_0275.txt |
test_0276 |
test_0276.txt |
test_0277 |
test_0277.txt |
test_0278 |
test_0278.txt |
test_0279 |
test_0279.txt |
test_0280 |
test_0280.txt |
test_0281 |
test_0281.txt |
test_0282 |
test_0282.txt |
test_0283 |
test_0283.txt |
test_0284 |
test_0284.txt |
test_0285 |
test_0285.txt |
test_0286 |
test_0286.txt |
test_0287 |
test_0287.txt |
test_0288 |
test_0288.txt |
test_0289 |
test_0289.txt |
test_0290 |
test_0290.txt |
test_0291 |
test_0291.txt |
test_0292 |
test_0292.txt |
test_0293 |
test_0293.txt |
test_0294 |
test_0294.txt |
test_0295 |
test_0295.txt |
test_0296 |
test_0296.txt |
test_0297 |
test_0297.txt |
test_0298 |
test_0298.txt |
test_0299 |
test_0299.txt |
test_0300 |
test_0300.txt |
test_0301 |
test_0301.txt |
test_0302 |
test_0302.txt |
test_0303 |
test_0303.txt |
test_0304 |
test_0304.txt |
test_0305 |
test_0305.txt |
test_0306 |
test_0306.txt |
test_0307 |
test_0307.txt |
test_0308 |
test_0308.txt |
test_0309 |
test_0309.txt |
test_0310 |
test_0310.txt |
test_0311 |
test_0311.txt |
test_0312 |
test_0312.txt |
test_0313 |
test_0313.txt |
test_0314 |
test_0314.txt |
test_0315 |
test_0315.txt |
test_0316 |
test_0316.txt |
test_0317 |
test_0317.txt |
test_0318 |
test_0318.txt |
test_0319 |
test_0319.txt |
test_0320 |
test_0320.txt |
test_0321 |
test_0321.txt |
test_0322 |
test_0322.txt |
test_0323 |
test_0323.txt |
test_0324 |
test_0324.txt |
test_0325 |
test_0325.txt |
test_0326 |
test_0326.txt |
test_0327 |
test_0327.txt |
test_0328 |
test_0328.txt |
test_0329 |
test_0329.txt |
test_0330 |
test_0330.txt |
test_0331 |
test_0331.txt |
test_0332 |
test_0332.txt |
test_0333 |
test_0333.txt |
test_0334 |
test_0334.txt |
test_0335 |
test_0335.txt |
test_0336 |
test_0336.txt |
test_0337 |
test_0337.txt |
test_0338 |
test_0338.txt |
test_0339 |
test_0339.txt |
test_0340 |
test_0340.txt |
test_0341 |
test_0341.txt |
test_0342 |
test_0342.txt |
test_0343 |
test_0343.txt |
test_0344 |
test_0344.txt |
test_0345 |
test_0345.txt |
test_0346 |
test_0346.txt |
test_0347 |
test_0347.txt |
test_0348 |
test_0348.txt |
test_0349 |
test_0349.txt |
test_0350 |
test_0350.txt |
test_0351 |
test_0351.txt |
test_0352 |
test_0352.txt |
test_0353 |
test_0353.txt |
test_0354 |
test_0354.txt |
test_0355 |
test_0355.txt |
test_0356 |
test_0356.txt |
test_0357 |
test_0357.txt |
test_0358 |
test_0358.txt |
test_0359 |
test_0359.txt |
test_0360 |
test_0360.txt |
test_0361 |
test_0361.txt |
test_0362 |
test_0362.txt |
test_0363 |
test_0363.txt |
test_0364 |
test_0364.txt |
test_0365 |
test_0365.txt |
test_0366 |
test_0366.txt |
test_0367 |
test_0367.txt |
test_0368 |
test_0368.txt |
test_0369 |
test_0369.txt |
test_0370 |
test_0370.txt |
test_0371 |
test_0371.txt |
test_0372 |
test_0372.txt |
test_0373 |
test_0373.txt |
test_0374 |
test_0374.txt |
test_0375 |
test_0375.txt |
test_0376 |
test_0376.txt |
test_0377 |
test_0377.txt |
test_0378 |
test_0378.txt |
test_0379 |
test_0379.txt |
test_0380 |
test_0380.txt |
test_0381 |
test_0381.txt |
test_0382 |
test_0382.txt |
test_0383 |
test_0383.txt |
test_0384 |
test_0384.txt |
test_0385 |
test_0385.txt |
test_0386 |
test_0386.txt |
test_0387 |
test_0387.txt |
test_0388 |
test_0388.txt |
test_0389 |
test_0389.txt |
test_0390 |
test_0390.txt |
test_0391 |
test_0391.txt |
test_0392 |
test_0392.txt |
test_0393 |
test_0393.txt |
test_0394 |
test_0394.txt |
test_0395 |
test_0395.txt |
test_0396 |
test_0396.txt |
test_0397 |
test_0397.txt |
test_0398 |
test_0398.txt |
test_0399 |
test_0399.txt |
test_0400 |
test_0400.txt |
test_0401 |
test_0401.txt |
test_0402 |
test_0402.txt |
test_0403 |
test_0403.txt |
test_0404 |
test_0404.txt |
test_0405 |
test_0405.txt |
test_0406 |
test_0406.txt |
test_0407 |
test_0407.txt |
test_0408 |
test_0408.txt |
test_0409 |
test_0409.txt |
test_0410 |
test_0410.txt |
test_0411 |
test_0411.txt |
test_0412 |
test_0412.txt |
test_0413 |
test_0413.txt |
test_0414 |
test_0414.txt |
test_0415 |
test_0415.txt |
test_0416 |
test_0416.txt |
test_0417 |
test_0417.txt |
test_0418 |
test_0418.txt |
test_0419 |
test_0419.txt |
test_0420 |
test_0420.txt |
test_0421 |
test_0421.txt |
test_0422 |
test_0422.txt |
test_0423 |
test_0423.txt |
test_0424 |
test_0424.txt |
test_0425 |
test_0425.txt |
test_0426 |
test_0426.txt |
test_0427 |
test_0427.txt |
test_0428 |
test_0428.txt |
test_0429 |
test_0429.txt |
test_0430 |
test_0430.txt |
test_0431 |
test_0431.txt |
test_0432 |
test_0432.txt |
test_0433 |
test_0433.txt |
test_0434 |
test_0434.txt |
test_0435 |
test_0435.txt |
test_0436 |
test_0436.txt |
test_0437 |
test_0437.txt |
test_0438 |
test_0438.txt |
test_0439 |
test_0439.txt |
test_0440 |
test_0440.txt |
test_0441 |
test_0441.txt |
test_0442 |
test_0442.txt |
test_0443 |
test_0443.txt |
test_0444 |
test_0444.txt |
test_0445 |
test_0445.txt |
test_0446 |
test_0446.txt |
test_0447 |
test_0447.txt |
test_0448 |
test_0448.txt |
test_0449 |
test_0449.txt |
test_0450 |
test_0450.txt |
test_0451 |
test_0451.txt |
test_0452 |
test_0452.txt |
test_0453 |
test_0453.txt |
test_0454 |
test_0454.txt |
test_0455 |
test_0455.txt |
test_0456 |
test_0456.txt |
test_0457 |
test_0457.txt |
test_0458 |
test_0458.txt |
test_0459 |
test_0459.txt |
test_0460 |
test_0460.txt |
test_0461 |
test_0461.txt |
test_0462 |
test_0462.txt |
test_0463 |
test_0463.txt |
test_0464 |
test_0464.txt |
test_0465 |
test_0465.txt |
test_0466 |
test_0466.txt |
test_0467 |
test_0467.txt |
test_0468 |
test_0468.txt |
test_0469 |
test_0469.txt |
test_0470 |
test_0470.txt |
test_0471 |
test_0471.txt |
test_0472 |
test_0472.txt |
test_0473 |
test_0473.txt |
test_0474 |
test_0474.txt |
test_0475 |
test_0475.txt |
test_0476 |
test_0476.txt |
test_0477 |
test_0477.txt |
test_0478 |
test_0478.txt |
test_0479 |
test_0479.txt |
test_0480 |
test_0480.txt |
test_0481 |
test_0481.txt |
test_0482 |
test_0482.txt |
test_0483 |
test_0483.txt |
test_0484 |
test_0484.txt |
test_0485 |
test_0485.txt |
test_0486 |
test_0486.txt |
test_0487 |
test_0487.txt |
test_0488 |
test_0488.txt |
test_0489 |
test_0489.txt |
test_0490 |
test_0490.txt |
test_0491 |
test_0491.txt |
test_0492 |
test_0492.txt |
test_0493 |
test_0493.txt |
test_0494 |
test_0494.txt |
test_0495 |
test_0495.txt |
test_0496 |
test_0496.txt |
test_0497 |
test_0497.txt |
test_0498 |
test_0498.txt |
test_0499 |
test_0499.txt |
test_0500 |
test_0500.txt |
test_0501 |
test_0501.txt |
test_0502 |
test_0502.txt |
test_0503 |
test_0503.txt |
test_0504 |
test_0504.txt |
test_0505 |
test_0505.txt |
test_0506 |
test_0506.txt |
test_0507 |
test_0507.txt |
test_0508 |
test_0508.txt |
test_0509 |
test_0509.txt |
test_0510 |
test_0510.txt |
test_0511 |
test_0511.txt |
test_0512 |
test_0512.txt |
test_0513 |
test_0513.txt |
test_0514 |
test_0514.txt |
test_0515 |
test_0515.txt |
test_0516 |
test_0516.txt |
test_0517 |
test_0517.txt |
test_0518 |
test_0518.txt |
test_0519 |
test_0519.txt |
test_0520 |
test_0520.txt |
test_0521 |
test_0521.txt |
test_0522 |
test_0522.txt |
test_0523 |
test_0523.txt |
test_0524 |
test_0524.txt |
test_0525 |
test_0525.txt |
test_0526 |
test_0526.txt |
test_0527 |
test_0527.txt |
test_0528 |
test_0528.txt |
test_0529 |
test_0529.txt |
test_0530 |
test_0530.txt |
test_0531 |
test_0531.txt |
test_0532 |
test_0532.txt |
test_0533 |
test_0533.txt |
test_0534 |
test_0534.txt |
test_0535 |
test_0535.txt |
test_0536 |
test_0536.txt |
test_0537 |
test_0537.txt |
test_0538 |
test_0538.txt |
test_0539 |
test_0539.txt |
test_0540 |
test_0540.txt |
test_0541 |
test_0541.txt |
test_0542 |
test_0542.txt |
test_0543 |
test_0543.txt |
test_0544 |
test_0544.txt |
test_0545 |
test_0545.txt |
test_0546 |
test_0546.txt |
test_0547 |
test_0547.txt |
test_0548 |
test_0548.txt |
test_0549 |
test_0549.txt |
test_0550 |
test_0550.txt |
test_0551 |
test_0551.txt |
test_0552 |
test_0552.txt |
test_0553 |
test_0553.txt |
test_0554 |
test_0554.txt |
test_0555 |
test_0555.txt |
test_0556 |
test_0556.txt |
test_0557 |
test_0557.txt |
test_0558 |
test_0558.txt |
test_0559 |
test_0559.txt |
test_0560 |
test_0560.txt |
test_0561 |
test_0561.txt |
test_0562 |
test_0562.txt |
test_0563 |
test_0563.txt |
test_0564 |
test_0564.txt |
test_0565 |
test_0565.txt |
test_0566 |
test_0566.txt |
test_0567 |
test_0567.txt |
test_0568 |
test_0568.txt |
test_0569 |
test_0569.txt |
test_0570 |
test_0570.txt |
test_0571 |
test_0571.txt |
test_0572 |
test_0572.txt |
test_0573 |
test_0573.txt |
test_0574 |
test_0574.txt |
test_0575 |
test_0575.txt |
test_0576 |
test_0576.txt |
test_0577 |
test_0577.txt |
test_0578 |
test_0578.txt |
test_0579 |
test_0579.txt |
test_0580 |
test_0580.txt |
test_0581 |
test_0581.txt |
test_0582 |
test_0582.txt |
test_0583 |
test_0583.txt |
test_0584 |
test_0584.txt |
test_0585 |
test_0585.txt |
test_0586 |
test_0586.txt |
test_0587 |
test_0587.txt |
test_0588 |
test_0588.txt |
test_0589 |
test_0589.txt |
test_0590 |
test_0590.txt |
test_0591 |
test_0591.txt |
test_0592 |
test_0592.txt |
test_0593 |
test_0593.txt |
test_0594 |
test_0594.txt |
test_0595 |
test_0595.txt |
test_0596 |
test_0596.txt |
test_0597 |
test_0597.txt |
test_0598 |
test_0598.txt |
test_0599 |
test_0599.txt |
test_0600 |
test_0600.txt |
test_0601 |
test_0601.txt |
test_0602 |
test_0602.txt |
test_0603 |
test_0603.txt |
test_0604 |
test_0604.txt |
test_0605 |
test_0605.txt |
test_0606 |
test_0606.txt |
test_0607 |
test_0607.txt |
test_0608 |
test_0608.txt |
test_0609 |
test_0609.txt |
test_0610 |
test_0610.txt |
test_0611 |
test_0611.txt |
test_0612 |
test_0612.txt |
test_0613 |
test_0613.txt |
test_0614 |
test_0614.txt |
test_0615 |
test_0615.txt |
test_0616 |
test_0616.txt |
test_0617 |
test_0617.txt |
test_0618 |
test_0618.txt |
test_0619 |
test_0619.txt |
test_0620 |
test_0620.txt |
test_0621 |
test_0621.txt |
test_0622 |
test_0622.txt |
test_0623 |
test_0623.txt |
test_0624 |
test_0624.txt |
test_0625 |
test_0625.txt |
test_0626 |
test_0626.txt |
test_0627 |
test_0627.txt |
test_0628 |
test_0628.txt |
test_0629 |
test_0629.txt |
test_0630 |
test_0630.txt |
test_0631 |
test_0631.txt |
test_0632 |
test_0632.txt |
test_0633 |
test_0633.txt |
test_0634 |
test_0634.txt |
test_0635 |
test_0635.txt |
test_0636 |
test_0636.txt |
test_0637 |
test_0637.txt |
test_0638 |
test_0638.txt |
test_0639 |
test_0639.txt |
test_0640 |
test_0640.txt |
test_0641 |
test_0641.txt |
test_0642 |
test_0642.txt |
test_0643 |
test_0643.txt |
test_0644 |
test_0644.txt |
test_0645 |
test_0645.txt |
test_0646 |
test_0646.txt |
test_0647 |
test_0647.txt |
test_0648 |
test_0648.txt |
test_0649 |
test_0649.txt |
test_0650 |
test_0650.txt |
test_0651 |
test_0651.txt |
test_0652 |
test_0652.txt |
test_0653 |
test_0653.txt |
test_0654 |
test_0654.txt |
test_0655 |
test_0655.txt |
test_0656 |
test_0656.txt |
test_0657 |
test_0657.txt |
test_0658 |
test_0658.txt |
test_0659 |
test_0659.txt |
test_0660 |
test_0660.txt |
test_0661 |
test_0661.txt |
test_0662 |
test_0662.txt |
test_0663 |
test_0663.txt |
test_0664 |
test_0664.txt |
test_0665 |
test_0665.txt |
test_0666 |
test_0666.txt |
test_0667 |
test_0667.txt |
test_0668 |
test_0668.txt |
test_0669 |
test_0669.txt |
test_0670 |
test_0670.txt |
test_0671 |
test_0671.txt |
test_0672 |
test_0672.txt |
test_0673 |
test_0673.txt |
test_0674 |
test_0674.txt |
test_0675 |
test_0675.txt |
test_0676 |
test_0676.txt |
test_0677 |
test_0677.txt |
test_0678 |
test_0678.txt |
test_0679 |
test_0679.txt |
test_0680 |
test_0680.txt |
test_0681 |
test_0681.txt |
test_0682 |
test_0682.txt |
test_0683 |
test_0683.txt |
test_0684 |
test_0684.txt |
test_0685 |
test_0685.txt |
test_0686 |
test_0686.txt |
test_0687 |
test_0687.txt |
test_0688 |
test_0688.txt |
test_0689 |
test_0689.txt |
test_0690 |
test_0690.txt |
test_0691 |
test_0691.txt |
test_0692 |
test_0692.txt |
test_0693 |
test_0693.txt |
test_0694 |
test_0694.txt |
test_0695 |
test_0695.txt |
test_0696 |
test_0696.txt |
test_0697 |
test_0697.txt |
test_0698 |
test_0698.txt |
test_0699 |
test_0699.txt |
test_0700 |
test_0700.txt |
test_0701 |
test_0701.txt |
test_0702 |
test_0702.txt |
test_0703 |
test_0703.txt |
test_0704 |
test_0704.txt |
test_0705 |
test_0705.txt |
test_0706 |
test_0706.txt |
test_0707 |
test_0707.txt |
test_0708 |
test_0708.txt |
test_0709 |
test_0709.txt |
test_0710 |
test_0710.txt |
test_0711 |
test_0711.txt |
test_0712 |
test_0712.txt |
test_0713 |
test_0713.txt |
test_0714 |
test_0714.txt |
test_0715 |
test_0715.txt |
test_0716 |
test_0716.txt |
test_0717 |
test_0717.txt |
test_0718 |
test_0718.txt |
test_0719 |
test_0719.txt |
test_0720 |
test_0720.txt |
test_0721 |
test_0721.txt |
test_0722 |
test_0722.txt |
test_0723 |
test_0723.txt |
test_0724 |
test_0724.txt |
test_0725 |
test_0725.txt |
test_0726 |
test_0726.txt |
test_0727 |
test_0727.txt |
test_0728 |
test_0728.txt |
test_0729 |
test_0729.txt |
test_0730 |
test_0730.txt |
test_0731 |
test_0731.txt |
test_0732 |
test_0732.txt |
test_0733 |
test_0733.txt |
test_0734 |
test_0734.txt |
test_0735 |
test_0735.txt |
test_0736 |
test_0736.txt |
test_0737 |
test_0737.txt |
test_0738 |
test_0738.txt |
test_0739 |
test_0739.txt |
test_0740 |
test_0740.txt |
test_0741 |
test_0741.txt |
test_0742 |
test_0742.txt |
test_0743 |
test_0743.txt |
test_0744 |
test_0744.txt |
test_0745 |
test_0745.txt |
test_0746 |
test_0746.txt |
test_0747 |
test_0747.txt |
test_0748 |
test_0748.txt |
test_0749 |
test_0749.txt |
test_0750 |
test_0750.txt |
test_0751 |
test_0751.txt |
test_0752 |
test_0752.txt |
test_0753 |
test_0753.txt |
test_0754 |
test_0754.txt |
test_0755 |
test_0755.txt |
test_0756 |
test_0756.txt |
test_0757 |
test_0757.txt |
test_0758 |
test_0758.txt |
test_0759 |
test_0759.txt |
test_0760 |
test_0760.txt |
test_0761 |
test_0761.txt |
test_0762 |
test_0762.txt |
test_0763 |
test_0763.txt |
test_0764 |
test_0764.txt |
test_0765 |
test_0765.txt |
test_0766 |
test_0766.txt |
test_0767 |
test_0767.txt |
test_0768 |
test_0768.txt |
test_0769 |
test_0769.txt |
test_0770 |
test_0770.txt |
test_0771 |
test_0771.txt |
test_0772 |
test_0772.txt |
test_0773 |
test_0773.txt |
test_0774 |
test_0774.txt |
test_0775 |
test_0775.txt |
test_0776 |
test_0776.txt |
test_0777 |
test_0777.txt |
test_0778 |
test_0778.txt |
test_0779 |
test_0779.txt |
test_0780 |
test_0780.txt |
test_0781 |
test_0781.txt |
test_0782 |
test_0782.txt |
test_0783 |
test_0783.txt |
test_0784 |
test_0784.txt |
test_0785 |
test_0785.txt |
test_0786 |
test_0786.txt |
test_0787 |
test_0787.txt |
test_0788 |
test_0788.txt |
test_0789 |
test_0789.txt |
test_0790 |
test_0790.txt |
test_0791 |
test_0791.txt |
test_0792 |
test_0792.txt |
test_0793 |
test_0793.txt |
test_0794 |
test_0794.txt |
test_0795 |
test_0795.txt |
test_0796 |
test_0796.txt |
test_0797 |
test_0797.txt |
test_0798 |
test_0798.txt |
test_0799 |
test_0799.txt |
test_0800 |
test_0800.txt |
test_0801 |
test_0801.txt |
test_0802 |
test_0802.txt |
test_0803 |
test_0803.txt |
test_0804 |
test_0804.txt |
test_0805 |
test_0805.txt |
test_0806 |
test_0806.txt |
test_0807 |
test_0807.txt |
test_0808 |
test_0808.txt |
test_0809 |
test_0809.txt |
test_0810 |
test_0810.txt |
test_0811 |
test_0811.txt |
test_0812 |
test_0812.txt |
test_0813 |
test_0813.txt |
test_0814 |
test_0814.txt |
test_0815 |
test_0815.txt |
test_0816 |
test_0816.txt |
test_0817 |
test_0817.txt |
test_0818 |
test_0818.txt |
test_0819 |
test_0819.txt |
test_0820 |
test_0820.txt |
test_0821 |
test_0821.txt |
test_0822 |
test_0822.txt |
test_0823 |
test_0823.txt |
test_0824 |
test_0824.txt |
test_0825 |
test_0825.txt |
test_0826 |
test_0826.txt |
test_0827 |
test_0827.txt |
test_0828 |
test_0828.txt |
test_0829 |
test_0829.txt |
test_0830 |
test_0830.txt |
test_0831 |
test_0831.txt |
test_0832 |
test_0832.txt |
test_0833 |
test_0833.txt |
test_0834 |
test_0834.txt |
test_0835 |
test_0835.txt |
test_0836 |
test_0836.txt |
test_0837 |
test_0837.txt |
test_0838 |
test_0838.txt |
test_0839 |
test_0839.txt |
test_0840 |
test_0840.txt |
test_0841 |
test_0841.txt |
test_0842 |
test_0842.txt |
test_0843 |
test_0843.txt |
test_0844 |
test_0844.txt |
test_0845 |
test_0845.txt |
test_0846 |
test_0846.txt |
test_0847 |
test_0847.txt |
test_0848 |
test_0848.txt |
test_0849 |
test_0849.txt |
test_0850 |
test_0850.txt |
test_0851 |
test_0851.txt |
test_0852 |
test_0852.txt |
test_0853 |
test_0853.txt |
test_0854 |
test_0854.txt |
test_0855 |
test_0855.txt |
test_0856 |
test_0856.txt |
test_0857 |
test_0857.txt |
test_0858 |
test_0858.txt |
test_0859 |
test_0859.txt |
test_0860 |
test_0860.txt |
test_0861 |
test_0861.txt |
test_0862 |
test_0862.txt |
test_0863 |
test_0863.txt |
test_0864 |
test_0864.txt |
test_0865 |
test_0865.txt |
test_0866 |
test_0866.txt |
test_0867 |
test_0867.txt |
test_0868 |
test_0868.txt |
test_0869 |
test_0869.txt |
test_0870 |
test_0870.txt |
test_0871 |
test_0871.txt |
test_0872 |
test_0872.txt |
test_0873 |
test_0873.txt |
test_0874 |
test_0874.txt |
test_0875 |
test_0875.txt |
test_0876 |
test_0876.txt |
test_0877 |
test_0877.txt |
test_0878 |
test_0878.txt |
test_0879 |
test_0879.txt |
test_0880 |
test_0880.txt |
test_0881 |
test_0881.txt |
test_0882 |
test_0882.txt |
test_0883 |
test_0883.txt |
test_0884 |
test_0884.txt |
test_0885 |
test_0885.txt |
test_0886 |
test_0886.txt |
test_0887 |
test_0887.txt |
test_0888 |
test_0888.txt |
test_0889 |
test_0889.txt |
test_0890 |
test_0890.txt |
test_0891 |
test_0891.txt |
test_0892 |
test_0892.txt |
test_0893 |
test_0893.txt |
test_0894 |
test_0894.txt |
test_0895 |
test_0895.txt |
test_0896 |
test_0896.txt |
test_0897 |
test_0897.txt |
test_0898 |
test_0898.txt |
test_0899 |
test_0899.txt |
test_0900 |
test_0900.txt |
test_0901 |
test_0901.txt |
test_0902 |
test_0902.txt |
test_0903 |
test_0903.txt |
test_0904 |
test_0904.txt |
test_0905 |
test_0905.txt |
test_0906 |
test_0906.txt |
test_0907 |
test_0907.txt |
test_0908 |
test_0908.txt |
test_0909 |
test_0909.txt |
test_0910 |
test_0910.txt |
test_0911 |
test_0911.txt |
test_0912 |
test_0912.txt |
test_0913 |
test_0913.txt |
test_0914 |
test_0914.txt |
test_0915 |
test_0915.txt |
test_0916 |
test_0916.txt |
test_0917 |
test_0917.txt |
test_0918 |
test_0918.txt |
test_0919 |
test_0919.txt |
test_0920 |
test_0920.txt |
test_0921 |
test_0921.txt |
test_0922 |
test_0922.txt |
test_0923 |
test_0923.txt |
test_0924 |
test_0924.txt |
test_0925 |
test_0925.txt |
test_0926 |
test_0926.txt |
test_0927 |
test_0927.txt |
test_0928 |
test_0928.txt |
test_0929 |
test_0929.txt |
test_0930 |
test_0930.txt |
test_0931 |
test_0931.txt |
test_0932 |
test_0932.txt |
test_0933 |
test_0933.txt |
test_0934 |
test_0934.txt |
test_0935 |
test_0935.txt |
test_0936 |
test_0936.txt |
test_0937 |
test_0937.txt |
test_0938 |
test_0938.txt |
test_0939 |
test_0939.txt |
test_0940 |
test_0940.txt |
test_0941 |
test_0941.txt |
test_0942 |
test_0942.txt |
test_0943 |
test_0943.txt |
test_0944 |
test_0944.txt |
test_0945 |
test_0945.txt |
test_0946 |
test_0946.txt |
test_0947 |
test_0947.txt |
test_0948 |
test_0948.txt |
test_0949 |
test_0949.txt |
test_0950 |
test_0950.txt |
test_0951 |
test_0951.txt |
test_0952 |
test_0952.txt |
test_0953 |
test_0953.txt |
test_0954 |
test_0954.txt |
test_0955 |
test_0955.txt |
test_0956 |
test_0956.txt |
test_0957 |
test_0957.txt |
test_0958 |
test_0958.txt |
test_0959 |
test_0959.txt |
test_0960 |
test_0960.txt |
test_0961 |
test_0961.txt |
test_0962 |
test_0962.txt |
test_0963 |
test_0963.txt |
test_0964 |
test_0964.txt |
test_0965 |
test_0965.txt |
test_0966 |
test_0966.txt |
test_0967 |
test_0967.txt |
test_0968 |
test_0968.txt |
test_0969 |
test_0969.txt |
test_0970 |
test_0970.txt |
test_0971 |
test_0971.txt |
test_0972 |
test_0972.txt |
test_0973 |
test_0973.txt |
test_0974 |
test_0974.txt |
test_0975 |
test_0975.txt |
test_0976 |
test_0976.txt |
test_0977 |
test_0977.txt |
test_0978 |
test_0978.txt |
test_0979 |
test_0979.txt |
test_0980 |
test_0980.txt |
test_0981 |
test_0981.txt |
test_0982 |
test_0982.txt |
test_0983 |
test_0983.txt |
test_0984 |
test_0984.txt |
test_0985 |
test_0985.txt |
test_0986 |
test_0986.txt |
test_0987 |
test_0987.txt |
test_0988 |
test_0988.txt |
test_0989 |
test_0989.txt |
test_0990 |
test_0990.txt |
test_0991 |
test_0991.txt |
test_0992 |
test_0992.txt |
test_0993 |
test_0993.txt |
test_0994 |
test_0994.txt |
test_0995 |
test_0995.txt |
test_0996 |
test_0996.txt |
test_0997 |
test_0997.txt |
test_0998 |
test_0998.txt |
test_0999 |
test_0999.txt |
test_1000 |
test_1000.txt |
test_1001 |
test_1001.txt |
test_1002 |
test_1002.txt |
test_1003 |
test_1003.txt |
test_1004 |
test_1004.txt |
test_1005 |
test_1005.txt |
test_1006 |
test_1006.txt |
test_1007 |
test_1007.txt |
test_1008 |
test_1008.txt |
test_1009 |
test_1009.txt |
test_1010 |
test_1010.txt |
test_1011 |
test_1011.txt |
test_1012 |
test_1012.txt |
test_1013 |
test_1013.txt |
test_1014 |
test_1014.txt |
test_1015 |
test_1015.txt |
test_1016 |
test_1016.txt |
test_1017 |
test_1017.txt |
test_1018 |
test_1018.txt |
test_1019 |
test_1019.txt |
test_1020 |
test_1020.txt |
test_1021 |
test_1021.txt |
test_1022 |
test_1022.txt |
test_1023 |
test_1023.txt |
test_1024 |
test_1024.txt |
test_1025 |
test_1025.txt |
test_1026 |
test_1026.txt |
test_1027 |
test_1027.txt |
test_1028 |
test_1028.txt |
test_1029 |
test_1029.txt |
test_1030 |
test_1030.txt |
test_1031 |
test_1031.txt |
test_1032 |
test_1032.txt |
test_1033 |
test_1033.txt |
test_1034 |
test_1034.txt |
test_1035 |
test_1035.txt |
test_1036 |
test_1036.txt |
test_1037 |
test_1037.txt |
test_1038 |
test_1038.txt |
test_1039 |
test_1039.txt |
test_1040 |
test_1040.txt |
test_1041 |
test_1041.txt |
test_1042 |
test_1042.txt |
test_1043 |
test_1043.txt |
test_1044 |
test_1044.txt |
test_1045 |
test_1045.txt |
test_1046 |
test_1046.txt |
test_1047 |
test_1047.txt |
test_1048 |
test_1048.txt |
test_1049 |
test_1049.txt |
test_1050 |
test_1050.txt |
test_1051 |
test_1051.txt |
test_1052 |
test_1052.txt |
test_1053 |
test_1053.txt |
test_1054 |
test_1054.txt |
test_1055 |
test_1055.txt |
test_1056 |
test_1056.txt |
test_1057 |
test_1057.txt |
test_1058 |
test_1058.txt |
test_1059 |
test_1059.txt |
test_1060 |
test_1060.txt |
test_1061 |
test_1061.txt |
test_1062 |
test_1062.txt |
test_1063 |
test_1063.txt |
test_1064 |
test_1064.txt |
test_1065 |
test_1065.txt |
test_1066 |
test_1066.txt |
test_1067 |
test_1067.txt |
test_1068 |
test_1068.txt |
test_1069 |
test_1069.txt |
test_1070 |
test_1070.txt |
test_1071 |
test_1071.txt |
test_1072 |
test_1072.txt |
test_1073 |
test_1073.txt |
test_1074 |
test_1074.txt |
test_1075 |
test_1075.txt |
test_1076 |
test_1076.txt |
test_1077 |
test_1077.txt |
test_1078 |
test_1078.txt |
test_1079 |
test_1079.txt |
test_1080 |
test_1080.txt |
test_1081 |
test_1081.txt |
test_1082 |
test_1082.txt |
test_1083 |
test_1083.txt |
test_1084 |
test_1084.txt |
test_1085 |
test_1085.txt |
test_1086 |
test_1086.txt |
test_1087 |
test_1087.txt |
test_1088 |
test_1088.txt |
test_1089 |
test_1089.txt |
test_1090 |
test_1090.txt |
test_1091 |
test_1091.txt |
test_1092 |
test_1092.txt |
test_1093 |
test_1093.txt |
test_1094 |
test_1094.txt |
test_1095 |
test_1095.txt |
test_1096 |
test_1096.txt |
test_1097 |
test_1097.txt |
test_1098 |
test_1098.txt |
test_1099 |
test_1099.txt |
test_1100 |
test_1100.txt |
test_1101 |
test_1101.txt |
test_1102 |
test_1102.txt |
test_1103 |
test_1103.txt |
test_1104 |
test_1104.txt |
test_1105 |
test_1105.txt |
test_1106 |
test_1106.txt |
test_1107 |
test_1107.txt |
test_1108 |
test_1108.txt |
test_1109 |
test_1109.txt |
test_1110 |
test_1110.txt |
test_1111 |
test_1111.txt |
test_1112 |
test_1112.txt |
test_1113 |
test_1113.txt |
test_1114 |
test_1114.txt |
test_1115 |
test_1115.txt |
test_1116 |
test_1116.txt |
test_1117 |
test_1117.txt |
test_1118 |
test_1118.txt |
test_1119 |
test_1119.txt |
test_1120 |
test_1120.txt |
test_1121 |
test_1121.txt |
test_1122 |
test_1122.txt |
test_1123 |
test_1123.txt |
test_1124 |
test_1124.txt |
test_1125 |
test_1125.txt |
test_1126 |
test_1126.txt |
test_1127 |
test_1127.txt |
test_1128 |
test_1128.txt |
test_1129 |
test_1129.txt |
test_1130 |
test_1130.txt |
test_1131 |
test_1131.txt |
test_1132 |
test_1132.txt |
test_1133 |
test_1133.txt |
test_1134 |
test_1134.txt |
test_1135 |
test_1135.txt |
test_1136 |
test_1136.txt |
test_1137 |
test_1137.txt |
test_1138 |
test_1138.txt |
test_1139 |
test_1139.txt |
test_1140 |
test_1140.txt |
test_1141 |
test_1141.txt |
test_1142 |
test_1142.txt |
test_1143 |
test_1143.txt |
test_1144 |
test_1144.txt |
test_1145 |
test_1145.txt |
test_1146 |
test_1146.txt |
test_1147 |
test_1147.txt |
test_1148 |
test_1148.txt |
test_1149 |
test_1149.txt |
test_1150 |
test_1150.txt |
test_1151 |
test_1151.txt |
test_1152 |
test_1152.txt |
test_1153 |
test_1153.txt |
test_1154 |
test_1154.txt |
test_1155 |
test_1155.txt |
test_1156 |
test_1156.txt |
test_1157 |
test_1157.txt |
test_1158 |
test_1158.txt |
test_1159 |
test_1159.txt |
test_1160 |
test_1160.txt |
test_1161 |
test_1161.txt |
test_1162 |
test_1162.txt |
test_1163 |
test_1163.txt |
test_1164 |
test_1164.txt |
test_1165 |
test_1165.txt |
test_1166 |
test_1166.txt |
test_1167 |
test_1167.txt |
test_1168 |
test_1168.txt |
test_1169 |
test_1169.txt |
test_1170 |
test_1170.txt |
test_1171 |
test_1171.txt |
test_1172 |
test_1172.txt |
test_1173 |
test_1173.txt |
test_1174 |
test_1174.txt |
test_1175 |
test_1175.txt |
test_1176 |
test_1176.txt |
test_1177 |
test_1177.txt |
test_1178 |
test_1178.txt |
test_1179 |
test_1179.txt |
test_1180 |
test_1180.txt |
test_1181 |
test_1181.txt |
test_1182 |
test_1182.txt |
test_1183 |
test_1183.txt |
test_1184 |
test_1184.txt |
test_1185 |
test_1185.txt |
test_1186 |
test_1186.txt |
test_1187 |
test_1187.txt |
test_1188 |
test_1188.txt |
test_1189 |
test_1189.txt |
test_1190 |
test_1190.txt |
test_1191 |
test_1191.txt |
test_1192 |
test_1192.txt |
test_1193 |
test_1193.txt |
test_1194 |
test_1194.txt |
test_1195 |
test_1195.txt |
test_1196 |
test_1196.txt |
test_1197 |
test_1197.txt |
test_1198 |
test_1198.txt |
test_1199 |
test_1199.txt |
test_1200 |
test_1200.txt |
test_1201 |
test_1201.txt |
test_1202 |
test_1202.txt |
test_1203 |
test_1203.txt |
test_1204 |
test_1204.txt |
test_1205 |
test_1205.txt |
test_1206 |
test_1206.txt |
test_1207 |
test_1207.txt |
test_1208 |
test_1208.txt |
test_1209 |
test_1209.txt |
test_1210 |
test_1210.txt |
test_1211 |
test_1211.txt |
test_1212 |
test_1212.txt |
test_1213 |
test_1213.txt |
test_1214 |
test_1214.txt |
test_1215 |
test_1215.txt |
test_1216 |
test_1216.txt |
test_1217 |
test_1217.txt |
test_1218 |
test_1218.txt |
test_1219 |
test_1219.txt |
test_1220 |
test_1220.txt |
test_1221 |
test_1221.txt |
test_1222 |
test_1222.txt |
test_1223 |
test_1223.txt |
test_1224 |
test_1224.txt |
test_1225 |
test_1225.txt |
test_1226 |
test_1226.txt |
test_1227 |
test_1227.txt |
test_1228 |
test_1228.txt |
test_1229 |
test_1229.txt |
test_1230 |
test_1230.txt |
test_1231 |
test_1231.txt |
test_1232 |
test_1232.txt |
test_1233 |
test_1233.txt |
test_1234 |
test_1234.txt |
test_1235 |
test_1235.txt |
test_1236 |
test_1236.txt |
test_1237 |
test_1237.txt |
test_1238 |
test_1238.txt |
test_1239 |
test_1239.txt |
test_1240 |
test_1240.txt |
test_1241 |
test_1241.txt |
test_1242 |
test_1242.txt |
test_1243 |
test_1243.txt |
test_1244 |
test_1244.txt |
test_1245 |
test_1245.txt |
test_1246 |
test_1246.txt |
test_1247 |
test_1247.txt |
test_1248 |
test_1248.txt |
test_1249 |
test_1249.txt |
test_1250 |
test_1250.txt |
test_1251 |
test_1251.txt |
test_1252 |
test_1252.txt |
test_1253 |
test_1253.txt |
test_1254 |
test_1254.txt |
test_1255 |
test_1255.txt |
test_1256 |
test_1256.txt |
test_1257 |
test_1257.txt |
test_1258 |
test_1258.txt |
test_1259 |
test_1259.txt |
test_1260 |
test_1260.txt |
test_1261 |
test_1261.txt |
test_1262 |
test_1262.txt |
test_1263 |
test_1263.txt |
test_1264 |
test_1264.txt |
test_1265 |
test_1265.txt |
test_1266 |
test_1266.txt |
test_1267 |
test_1267.txt |
test_1268 |
test_1268.txt |
test_1269 |
test_1269.txt |
test_1270 |
test_1270.txt |
test_1271 |
test_1271.txt |
test_1272 |
test_1272.txt |
test_1273 |
test_1273.txt |
test_1274 |
test_1274.txt |
test_1275 |
test_1275.txt |
test_1276 |
test_1276.txt |
test_1277 |
test_1277.txt |
test_1278 |
test_1278.txt |
test_1279 |
test_1279.txt |
test_1280 |
test_1280.txt |
test_1281 |
test_1281.txt |
test_1282 |
test_1282.txt |
test_1283 |
test_1283.txt |
test_1284 |
test_1284.txt |
test_1285 |
test_1285.txt |
test_1286 |
test_1286.txt |
test_1287 |
test_1287.txt |
test_1288 |
test_1288.txt |
test_1289 |
test_1289.txt |
test_1290 |
test_1290.txt |
test_1291 |
test_1291.txt |
test_1292 |
test_1292.txt |
test_1293 |
test_1293.txt |
test_1294 |
test_1294.txt |
test_1295 |
test_1295.txt |
test_1296 |
test_1296.txt |
test_1297 |
test_1297.txt |
test_1298 |
test_1298.txt |
test_1299 |
test_1299.txt |
test_1300 |
test_1300.txt |
test_1301 |
test_1301.txt |
test_1302 |
test_1302.txt |
test_1303 |
test_1303.txt |
test_1304 |
test_1304.txt |
test_1305 |
test_1305.txt |
test_1306 |
test_1306.txt |
test_1307 |
test_1307.txt |
test_1308 |
test_1308.txt |
test_1309 |
test_1309.txt |
test_1310 |
test_1310.txt |
test_1311 |
test_1311.txt |
test_1312 |
test_1312.txt |
test_1313 |
test_1313.txt |
test_1314 |
test_1314.txt |
test_1315 |
test_1315.txt |
test_1316 |
test_1316.txt |
test_1317 |
test_1317.txt |
test_1318 |
test_1318.txt |
test_1319 |
test_1319.txt |
test_1320 |
test_1320.txt |
test_1321 |
test_1321.txt |
test_1322 |
test_1322.txt |
test_1323 |
test_1323.txt |
test_1324 |
test_1324.txt |
test_1325 |
test_1325.txt |
test_1326 |
test_1326.txt |
test_1327 |
test_1327.txt |
test_1328 |
test_1328.txt |
test_1329 |
test_1329.txt |
test_1330 |
test_1330.txt |
test_1331 |
test_1331.txt |
test_1332 |
test_1332.txt |
test_1333 |
test_1333.txt |
test_1334 |
test_1334.txt |
test_1335 |
test_1335.txt |
test_1336 |
test_1336.txt |
test_1337 |
test_1337.txt |
test_1338 |
test_1338.txt |
test_1339 |
test_1339.txt |
test_1340 |
test_1340.txt |
test_1341 |
test_1341.txt |
test_1342 |
test_1342.txt |
test_1343 |
test_1343.txt |
test_1344 |
test_1344.txt |
test_1345 |
test_1345.txt |
test_1346 |
test_1346.txt |
test_1347 |
test_1347.txt |
test_1348 |
test_1348.txt |
test_1349 |
test_1349.txt |
test_1350 |
test_1350.txt |
test_1351 |
test_1351.txt |
test_1352 |
test_1352.txt |
test_1353 |
test_1353.txt |
test_1354 |
test_1354.txt |
test_1355 |
test_1355.txt |
test_1356 |
test_1356.txt |
test_1357 |
test_1357.txt |
test_1358 |
test_1358.txt |
test_1359 |
test_1359.txt |
test_1360 |
test_1360.txt |
test_1361 |
test_1361.txt |
test_1362 |
test_1362.txt |
test_1363 |
test_1363.txt |
test_1364 |
test_1364.txt |
test_1365 |
test_1365.txt |
test_1366 |
test_1366.txt |
test_1367 |
test_1367.txt |
test_1368 |
test_1368.txt |
test_1369 |
test_1369.txt |
test_1370 |
test_1370.txt |
test_1371 |
test_1371.txt |
test_1372 |
test_1372.txt |
test_1373 |
test_1373.txt |
test_1374 |
test_1374.txt |
test_1375 |
test_1375.txt |
test_1376 |
test_1376.txt |
test_1377 |
test_1377.txt |
test_1378 |
test_1378.txt |
test_1379 |
test_1379.txt |
test_1380 |
test_1380.txt |
test_1381 |
test_1381.txt |
test_1382 |
test_1382.txt |
test_1383 |
test_1383.txt |
test_1384 |
test_1384.txt |
test_1385 |
test_1385.txt |
test_1386 |
test_1386.txt |
test_1387 |
test_1387.txt |
test_1388 |
test_1388.txt |
test_1389 |
test_1389.txt |
test_1390 |
test_1390.txt |
test_1391 |
test_1391.txt |
test_1392 |
test_1392.txt |
test_1393 |
test_1393.txt |
test_1394 |
test_1394.txt |
test_1395 |
test_1395.txt |
test_1396 |
test_1396.txt |
test_1397 |
test_1397.txt |
test_1398 |
test_1398.txt |
test_1399 |
test_1399.txt |
test_1400 |
test_1400.txt |
test_1401 |
test_1401.txt |
test_1402 |
test_1402.txt |
test_1403 |
test_1403.txt |
test_1404 |
test_1404.txt |
test_1405 |
test_1405.txt |
test_1406 |
test_1406.txt |
test_1407 |
test_1407.txt |
test_1408 |
test_1408.txt |
test_1409 |
test_1409.txt |
test_1410 |
test_1410.txt |
test_1411 |
test_1411.txt |
test_1412 |
test_1412.txt |
test_1413 |
test_1413.txt |
test_1414 |
test_1414.txt |
test_1415 |
test_1415.txt |
test_1416 |
test_1416.txt |
test_1417 |
test_1417.txt |
test_1418 |
test_1418.txt |
test_1419 |
test_1419.txt |
test_1420 |
test_1420.txt |
test_1421 |
test_1421.txt |
test_1422 |
test_1422.txt |
test_1423 |
test_1423.txt |
test_1424 |
test_1424.txt |
test_1425 |
test_1425.txt |
test_1426 |
test_1426.txt |
test_1427 |
test_1427.txt |
test_1428 |
test_1428.txt |
test_1429 |
test_1429.txt |
test_1430 |
test_1430.txt |
test_1431 |
test_1431.txt |
test_1432 |
test_1432.txt |
test_1433 |
test_1433.txt |
test_1434 |
test_1434.txt |
test_1435 |
test_1435.txt |
test_1436 |
test_1436.txt |
test_1437 |
test_1437.txt |
test_1438 |
test_1438.txt |
test_1439 |
test_1439.txt |
test_1440 |
test_1440.txt |
test_1441 |
test_1441.txt |
test_1442 |
test_1442.txt |
test_1443 |
test_1443.txt |
test_1444 |
test_1444.txt |
test_1445 |
test_1445.txt |
test_1446 |
test_1446.txt |
test_1447 |
test_1447.txt |
test_1448 |
test_1448.txt |
test_1449 |
test_1449.txt |
test_1450 |
test_1450.txt |
test_1451 |
test_1451.txt |
test_1452 |
test_1452.txt |
test_1453 |
test_1453.txt |
test_1454 |
test_1454.txt |
test_1455 |
test_1455.txt |
test_1456 |
test_1456.txt |
test_1457 |
test_1457.txt |
test_1458 |
test_1458.txt |
test_1459 |
test_1459.txt |
test_1460 |
test_1460.txt |
test_1461 |
test_1461.txt |
test_1462 |
test_1462.txt |
test_1463 |
test_1463.txt |
test_1464 |
test_1464.txt |
test_1465 |
test_1465.txt |
test_1466 |
test_1466.txt |
test_1467 |
test_1467.txt |
test_1468 |
test_1468.txt |
test_1469 |
test_1469.txt |
test_1470 |
test_1470.txt |
test_1471 |
test_1471.txt |
test_1472 |
test_1472.txt |
test_1473 |
test_1473.txt |
test_1474 |
test_1474.txt |
test_1475 |
test_1475.txt |
test_1476 |
test_1476.txt |
test_1477 |
test_1477.txt |
test_1478 |
test_1478.txt |
test_1479 |
test_1479.txt |
test_1480 |
test_1480.txt |
test_1481 |
test_1481.txt |
test_1482 |
test_1482.txt |
test_1483 |
test_1483.txt |
test_1484 |
test_1484.txt |
test_1485 |
test_1485.txt |
test_1486 |
test_1486.txt |
test_1487 |
test_1487.txt |
test_1488 |
test_1488.txt |
test_1489 |
test_1489.txt |
test_1490 |
test_1490.txt |
test_1491 |
test_1491.txt |
test_1492 |
test_1492.txt |
test_1493 |
test_1493.txt |
test_1494 |
test_1494.txt |
test_1495 |
test_1495.txt |
test_1496 |
test_1496.txt |
test_1497 |
test_1497.txt |
test_1498 |
test_1498.txt |
test_1499 |
test_1499.txt |
test_1500 |
test_1500.txt |
test_1501 |
test_1501.txt |
test_1502 |
test_1502.txt |
test_1503 |
test_1503.txt |
test_1504 |
test_1504.txt |
test_1505 |
test_1505.txt |
test_1506 |
test_1506.txt |
test_1507 |
test_1507.txt |
test_1508 |
test_1508.txt |
test_1509 |
test_1509.txt |
test_1510 |
test_1510.txt |
test_1511 |
test_1511.txt |
test_1512 |
test_1512.txt |
test_1513 |
test_1513.txt |
test_1514 |
test_1514.txt |
test_1515 |
test_1515.txt |
test_1516 |
test_1516.txt |
test_1517 |
test_1517.txt |
test_1518 |
test_1518.txt |
test_1519 |
test_1519.txt |
test_1520 |
test_1520.txt |
test_1521 |
test_1521.txt |
test_1522 |
test_1522.txt |
test_1523 |
test_1523.txt |
test_1524 |
test_1524.txt |
test_1525 |
test_1525.txt |
test_1526 |
test_1526.txt |
test_1527 |
test_1527.txt |
test_1528 |
test_1528.txt |
test_1529 |
test_1529.txt |
test_1530 |
test_1530.txt |
test_1531 |
test_1531.txt |
test_1532 |
test_1532.txt |
test_1533 |
test_1533.txt |
test_1534 |
test_1534.txt |
test_1535 |
test_1535.txt |
test_1536 |
test_1536.txt |
test_1537 |
test_1537.txt |
test_1538 |
test_1538.txt |
test_1539 |
test_1539.txt |
test_1540 |
test_1540.txt |
test_1541 |
test_1541.txt |
test_1542 |
test_1542.txt |
test_1543 |
test_1543.txt |
test_1544 |
test_1544.txt |
test_1545 |
test_1545.txt |
test_1546 |
test_1546.txt |
test_1547 |
test_1547.txt |
test_1548 |
test_1548.txt |
test_1549 |
test_1549.txt |
test_1550 |
test_1550.txt |
test_1551 |
test_1551.txt |
test_1552 |
test_1552.txt |
test_1553 |
test_1553.txt |
test_1554 |
test_1554.txt |
test_1555 |
test_1555.txt |
test_1556 |
test_1556.txt |
test_1557 |
test_1557.txt |
test_1558 |
test_1558.txt |
test_1559 |
test_1559.txt |
test_1560 |
test_1560.txt |
test_1561 |
test_1561.txt |
test_1562 |
test_1562.txt |
test_1563 |
test_1563.txt |
test_1564 |
test_1564.txt |
test_1565 |
test_1565.txt |
test_1566 |
test_1566.txt |
test_1567 |
test_1567.txt |
test_1568 |
test_1568.txt |
test_1569 |
test_1569.txt |
test_1570 |
test_1570.txt |
test_1571 |
test_1571.txt |
test_1572 |
test_1572.txt |
test_1573 |
test_1573.txt |
test_1574 |
test_1574.txt |
test_1575 |
test_1575.txt |
test_1576 |
test_1576.txt |
test_1577 |
test_1577.txt |
test_1578 |
test_1578.txt |
test_1579 |
test_1579.txt |
test_1580 |
test_1580.txt |
test_1581 |
test_1581.txt |
test_1582 |
test_1582.txt |
test_1583 |
test_1583.txt |
test_1584 |
test_1584.txt |
test_1585 |
test_1585.txt |
test_1586 |
test_1586.txt |
test_1587 |
test_1587.txt |
test_1588 |
test_1588.txt |
test_1589 |
test_1589.txt |
test_1590 |
test_1590.txt |
test_1591 |
test_1591.txt |
test_1592 |
test_1592.txt |
test_1593 |
test_1593.txt |
test_1594 |
test_1594.txt |
test_1595 |
test_1595.txt |
test_1596 |
test_1596.txt |
test_1597 |
test_1597.txt |
test_1598 |
test_1598.txt |
test_1599 |
test_1599.txt |
test_1600 |
test_1600.txt |
test_1601 |
test_1601.txt |
test_1602 |
test_1602.txt |
test_1603 |
test_1603.txt |
test_1604 |
test_1604.txt |
test_1605 |
test_1605.txt |
test_1606 |
test_1606.txt |
test_1607 |
test_1607.txt |
test_1608 |
test_1608.txt |
test_1609 |
test_1609.txt |
test_1610 |
test_1610.txt |
test_1611 |
test_1611.txt |
test_1612 |
test_1612.txt |
test_1613 |
test_1613.txt |
test_1614 |
test_1614.txt |
test_1615 |
test_1615.txt |
test_1616 |
test_1616.txt |
test_1617 |
test_1617.txt |
test_1618 |
test_1618.txt |
test_1619 |
test_1619.txt |
test_1620 |
test_1620.txt |
test_1621 |
test_1621.txt |
test_1622 |
test_1622.txt |
test_1623 |
test_1623.txt |
test_1624 |
test_1624.txt |
test_1625 |
test_1625.txt |
test_1626 |
test_1626.txt |
test_1627 |
test_1627.txt |
test_1628 |
test_1628.txt |
test_1629 |
test_1629.txt |
test_1630 |
test_1630.txt |
test_1631 |
test_1631.txt |
test_1632 |
test_1632.txt |
test_1633 |
test_1633.txt |
test_1634 |
test_1634.txt |
test_1635 |
test_1635.txt |
test_1636 |
test_1636.txt |
test_1637 |
test_1637.txt |
test_1638 |
test_1638.txt |
test_1639 |
test_1639.txt |
test_1640 |
test_1640.txt |
test_1641 |
test_1641.txt |
test_1642 |
test_1642.txt |
test_1643 |
test_1643.txt |
test_1644 |
test_1644.txt |
test_1645 |
test_1645.txt |
test_1646 |
test_1646.txt |
test_1647 |
test_1647.txt |
test_1648 |
test_1648.txt |
test_1649 |
test_1649.txt |
test_1650 |
test_1650.txt |
test_1651 |
test_1651.txt |
test_1652 |
test_1652.txt |
test_1653 |
test_1653.txt |
test_1654 |
test_1654.txt |
test_1655 |
test_1655.txt |
test_1656 |
test_1656.txt |
test_1657 |
test_1657.txt |
test_1658 |
test_1658.txt |
test_1659 |
test_1659.txt |
test_1660 |
test_1660.txt |
test_1661 |
test_1661.txt |
test_1662 |
test_1662.txt |
test_1663 |
test_1663.txt |
test_1664 |
test_1664.txt |
test_1665 |
test_1665.txt |
test_1666 |
test_1666.txt |
test_1667 |
test_1667.txt |
test_1668 |
test_1668.txt |
test_1669 |
test_1669.txt |
test_1670 |
test_1670.txt |
test_1671 |
test_1671.txt |
test_1672 |
test_1672.txt |
test_1673 |
test_1673.txt |
test_1674 |
test_1674.txt |
test_1675 |
test_1675.txt |
test_1676 |
test_1676.txt |
test_1677 |
test_1677.txt |
test_1678 |
test_1678.txt |
test_1679 |
test_1679.txt |
test_1680 |
test_1680.txt |
test_1681 |
test_1681.txt |
test_1682 |
test_1682.txt |
test_1683 |
test_1683.txt |
test_1684 |
test_1684.txt |
test_1685 |
test_1685.txt |
test_1686 |
test_1686.txt |
test_1687 |
test_1687.txt |
test_1688 |
test_1688.txt |
test_1689 |
test_1689.txt |
test_1690 |
test_1690.txt |
test_1691 |
test_1691.txt |
test_1692 |
test_1692.txt |
test_1693 |
test_1693.txt |
test_1694 |
test_1694.txt |
test_1695 |
test_1695.txt |
test_1696 |
test_1696.txt |
test_1697 |
test_1697.txt |
test_1698 |
test_1698.txt |
test_1699 |
test_1699.txt |
test_1700 |
test_1700.txt |
test_1701 |
test_1701.txt |
test_1702 |
test_1702.txt |
test_1703 |
test_1703.txt |
test_1704 |
test_1704.txt |
test_1705 |
test_1705.txt |
test_1706 |
test_1706.txt |
test_1707 |
test_1707.txt |
test_1708 |
test_1708.txt |
test_1709 |
test_1709.txt |
test_1710 |
test_1710.txt |
test_1711 |
test_1711.txt |
test_1712 |
test_1712.txt |
test_1713 |
test_1713.txt |
test_1714 |
test_1714.txt |
test_1715 |
test_1715.txt |
test_1716 |
test_1716.txt |
test_1717 |
test_1717.txt |
test_1718 |
test_1718.txt |
test_1719 |
test_1719.txt |
test_1720 |
test_1720.txt |
test_1721 |
test_1721.txt |
test_1722 |
test_1722.txt |
test_1723 |
test_1723.txt |
test_1724 |
test_1724.txt |
test_1725 |
test_1725.txt |
test_1726 |
test_1726.txt |
test_1727 |
test_1727.txt |
test_1728 |
test_1728.txt |
test_1729 |
test_1729.txt |
test_1730 |
test_1730.txt |
test_1731 |
test_1731.txt |
test_1732 |
test_1732.txt |
test_1733 |
test_1733.txt |
test_1734 |
test_1734.txt |
test_1735 |
test_1735.txt |
test_1736 |
test_1736.txt |
test_1737 |
test_1737.txt |
test_1738 |
test_1738.txt |
test_1739 |
test_1739.txt |
test_1740 |
test_1740.txt |
test_1741 |
test_1741.txt |
test_1742 |
test_1742.txt |
test_1743 |
test_1743.txt |
test_1744 |
test_1744.txt |
test_1745 |
test_1745.txt |
test_1746 |
test_1746.txt |
test_1747 |
test_1747.txt |
test_1748 |
test_1748.txt |
test_1749 |
test_1749.txt |
test_1750 |
test_1750.txt |
test_1751 |
test_1751.txt |
test_1752 |
test_1752.txt |
test_1753 |
test_1753.txt |
test_1754 |
test_1754.txt |
test_1755 |
test_1755.txt |
test_1756 |
test_1756.txt |
test_1757 |
test_1757.txt |
test_1758 |
test_1758.txt |
test_1759 |
test_1759.txt |
test_1760 |
test_1760.txt |
test_1761 |
test_1761.txt |
test_1762 |
test_1762.txt |
test_1763 |
test_1763.txt |
test_1764 |
test_1764.txt |
test_1765 |
test_1765.txt |
test_1766 |
test_1766.txt |
test_1767 |
test_1767.txt |
test_1768 |
test_1768.txt |
test_1769 |
test_1769.txt |
test_1770 |
test_1770.txt |
test_1771 |
test_1771.txt |
test_1772 |
test_1772.txt |
test_1773 |
test_1773.txt |
test_1774 |
test_1774.txt |
test_1775 |
test_1775.txt |
test_1776 |
test_1776.txt |
test_1777 |
test_1777.txt |
test_1778 |
test_1778.txt |
test_1779 |
test_1779.txt |
test_1780 |
test_1780.txt |
test_1781 |
test_1781.txt |
test_1782 |
test_1782.txt |
test_1783 |
test_1783.txt |
test_1784 |
test_1784.txt |
test_1785 |
test_1785.txt |
test_1786 |
test_1786.txt |
test_1787 |
test_1787.txt |
test_1788 |
test_1788.txt |
test_1789 |
test_1789.txt |
test_1790 |
test_1790.txt |
test_1791 |
test_1791.txt |
test_1792 |
test_1792.txt |
test_1793 |
test_1793.txt |
test_1794 |
test_1794.txt |
test_1795 |
test_1795.txt |
test_1796 |
test_1796.txt |
test_1797 |
test_1797.txt |
test_1798 |
test_1798.txt |
test_1799 |
test_1799.txt |
test_1800 |
test_1800.txt |
test_1801 |
test_1801.txt |
test_1802 |
test_1802.txt |
test_1803 |
test_1803.txt |
test_1804 |
test_1804.txt |
test_1805 |
test_1805.txt |
test_1806 |
test_1806.txt |
test_1807 |
test_1807.txt |
test_1808 |
test_1808.txt |
test_1809 |
test_1809.txt |
test_1810 |
test_1810.txt |
test_1811 |
test_1811.txt |
test_1812 |
test_1812.txt |
test_1813 |
test_1813.txt |
test_1814 |
test_1814.txt |
test_1815 |
test_1815.txt |
test_1816 |
test_1816.txt |
test_1817 |
test_1817.txt |
test_1818 |
test_1818.txt |
test_1819 |
test_1819.txt |
test_1820 |
test_1820.txt |
test_1821 |
test_1821.txt |
test_1822 |
test_1822.txt |
test_1823 |
test_1823.txt |
test_1824 |
test_1824.txt |
test_1825 |
test_1825.txt |
test_1826 |
test_1826.txt |
test_1827 |
test_1827.txt |
test_1828 |
test_1828.txt |
test_1829 |
test_1829.txt |
test_1830 |
test_1830.txt |
test_1831 |
test_1831.txt |
test_1832 |
test_1832.txt |
test_1833 |
test_1833.txt |
test_1834 |
test_1834.txt |
test_1835 |
test_1835.txt |
test_1836 |
test_1836.txt |
test_1837 |
test_1837.txt |
test_1838 |
test_1838.txt |
test_1839 |
test_1839.txt |
test_1840 |
test_1840.txt |
test_1841 |
test_1841.txt |
test_1842 |
test_1842.txt |
test_1843 |
test_1843.txt |
test_1844 |
test_1844.txt |
test_1845 |
test_1845.txt |
test_1846 |
test_1846.txt |
test_1847 |
test_1847.txt |
test_1848 |
test_1848.txt |
test_1849 |
test_1849.txt |
test_1850 |
test_1850.txt |
test_1851 |
test_1851.txt |
test_1852 |
test_1852.txt |
test_1853 |
test_1853.txt |
test_1854 |
test_1854.txt |
test_1855 |
test_1855.txt |
test_1856 |
test_1856.txt |
test_1857 |
test_1857.txt |
test_1858 |
test_1858.txt |
test_1859 |
test_1859.txt |
test_1860 |
test_1860.txt |
test_1861 |
test_1861.txt |
test_1862 |
test_1862.txt |
test_1863 |
test_1863.txt |
test_1864 |
test_1864.txt |
test_1865 |
test_1865.txt |
test_1866 |
test_1866.txt |
test_1867 |
test_1867.txt |
test_1868 |
test_1868.txt |
test_1869 |
test_1869.txt |
test_1870 |
test_1870.txt |
test_1871 |
test_1871.txt |
test_1872 |
test_1872.txt |
test_1873 |
test_1873.txt |
test_1874 |
test_1874.txt |
test_1875 |
test_1875.txt |
test_1876 |
test_1876.txt |
test_1877 |
test_1877.txt |
test_1878 |
test_1878.txt |
test_1879 |
test_1879.txt |
test_1880 |
test_1880.txt |
test_1881 |
test_1881.txt |
test_1882 |
test_1882.txt |
test_1883 |
test_1883.txt |
test_1884 |
test_1884.txt |
test_1885 |
test_1885.txt |
test_1886 |
test_1886.txt |
test_1887 |
test_1887.txt |
test_1888 |
test_1888.txt |
test_1889 |
test_1889.txt |
test_1890 |
test_1890.txt |
test_1891 |
test_1891.txt |
test_1892 |
test_1892.txt |
test_1893 |
test_1893.txt |
test_1894 |
test_1894.txt |
test_1895 |
test_1895.txt |
test_1896 |
test_1896.txt |
test_1897 |
test_1897.txt |
test_1898 |
test_1898.txt |
test_1899 |
test_1899.txt |
test_1900 |
test_1900.txt |
test_1901 |
test_1901.txt |
test_1902 |
test_1902.txt |
test_1903 |
test_1903.txt |
test_1904 |
test_1904.txt |
test_1905 |
test_1905.txt |
test_1906 |
test_1906.txt |
test_1907 |
test_1907.txt |
test_1908 |
test_1908.txt |
test_1909 |
test_1909.txt |
test_1910 |
test_1910.txt |
test_1911 |
test_1911.txt |
test_1912 |
test_1912.txt |
test_1913 |
test_1913.txt |
test_1914 |
test_1914.txt |
test_1915 |
test_1915.txt |
test_1916 |
test_1916.txt |
test_1917 |
test_1917.txt |
test_1918 |
test_1918.txt |
test_1919 |
test_1919.txt |
test_1920 |
test_1920.txt |
test_1921 |
test_1921.txt |
test_1922 |
test_1922.txt |
test_1923 |
test_1923.txt |
test_1924 |
test_1924.txt |
test_1925 |
test_1925.txt |
test_1926 |
test_1926.txt |
test_1927 |
test_1927.txt |
test_1928 |
test_1928.txt |
test_1929 |
test_1929.txt |
test_1930 |
test_1930.txt |
test_1931 |
test_1931.txt |
test_1932 |
test_1932.txt |
test_1933 |
test_1933.txt |
test_1934 |
test_1934.txt |
test_1935 |
test_1935.txt |
test_1936 |
test_1936.txt |
test_1937 |
test_1937.txt |
test_1938 |
test_1938.txt |
test_1939 |
test_1939.txt |
test_1940 |
test_1940.txt |
test_1941 |
test_1941.txt |
test_1942 |
test_1942.txt |
test_1943 |
test_1943.txt |
test_1944 |
test_1944.txt |
test_1945 |
test_1945.txt |
test_1946 |
test_1946.txt |
test_1947 |
test_1947.txt |
test_1948 |
test_1948.txt |
test_1949 |
test_1949.txt |
test_1950 |
test_1950.txt |
test_1951 |
test_1951.txt |
test_1952 |
test_1952.txt |
test_1953 |
test_1953.txt |
test_1954 |
test_1954.txt |
test_1955 |
test_1955.txt |
test_1956 |
test_1956.txt |
test_1957 |
test_1957.txt |
test_1958 |
test_1958.txt |
test_1959 |
test_1959.txt |
test_1960 |
test_1960.txt |
test_1961 |
test_1961.txt |
test_1962 |
test_1962.txt |
test_1963 |
test_1963.txt |
test_1964 |
test_1964.txt |
test_1965 |
test_1965.txt |
test_1966 |
test_1966.txt |
test_1967 |
test_1967.txt |
test_1968 |
test_1968.txt |
test_1969 |
test_1969.txt |
test_1970 |
test_1970.txt |
test_1971 |
test_1971.txt |
test_1972 |
test_1972.txt |
test_1973 |
test_1973.txt |
test_1974 |
test_1974.txt |
test_1975 |
test_1975.txt |
test_1976 |
test_1976.txt |
test_1977 |
test_1977.txt |
test_1978 |
test_1978.txt |
test_1979 |
test_1979.txt |
test_1980 |
test_1980.txt |
test_1981 |
test_1981.txt |
test_1982 |
test_1982.txt |
test_1983 |
test_1983.txt |
test_1984 |
test_1984.txt |
test_1985 |
test_1985.txt |
test_1986 |
test_1986.txt |
test_1987 |
test_1987.txt |
test_1988 |
test_1988.txt |
test_1989 |
test_1989.txt |
test_1990 |
test_1990.txt |
test_1991 |
test_1991.txt |
test_1992 |
test_1992.txt |
test_1993 |
test_1993.txt |
test_1994 |
test_1994.txt |
test_1995 |
test_1995.txt |
test_1996 |
test_1996.txt |
test_1997 |
test_1997.txt |
test_1998 |
test_1998.txt |
test_1999 |
test_1999.txt |
Case Name |
Status |
Exec Time |
Memory |
test_0000.txt |
AC |
1803 ms |
3996 KiB |
test_0001.txt |
AC |
1803 ms |
4140 KiB |
test_0002.txt |
AC |
1802 ms |
3940 KiB |
test_0003.txt |
AC |
1807 ms |
4132 KiB |
test_0004.txt |
AC |
1807 ms |
4180 KiB |
test_0005.txt |
AC |
1802 ms |
3828 KiB |
test_0006.txt |
AC |
1802 ms |
4032 KiB |
test_0007.txt |
AC |
1802 ms |
3940 KiB |
test_0008.txt |
AC |
1802 ms |
3884 KiB |
test_0009.txt |
AC |
1803 ms |
3952 KiB |
test_0010.txt |
AC |
1810 ms |
4244 KiB |
test_0011.txt |
AC |
1812 ms |
4108 KiB |
test_0012.txt |
AC |
1802 ms |
3880 KiB |
test_0013.txt |
AC |
1802 ms |
3980 KiB |
test_0014.txt |
AC |
1811 ms |
4184 KiB |
test_0015.txt |
AC |
1802 ms |
4016 KiB |
test_0016.txt |
AC |
1808 ms |
4140 KiB |
test_0017.txt |
AC |
1803 ms |
4000 KiB |
test_0018.txt |
AC |
1803 ms |
4012 KiB |
test_0019.txt |
AC |
1803 ms |
4044 KiB |
test_0020.txt |
AC |
1802 ms |
4116 KiB |
test_0021.txt |
AC |
1806 ms |
4092 KiB |
test_0022.txt |
AC |
1804 ms |
4140 KiB |
test_0023.txt |
AC |
1802 ms |
3936 KiB |
test_0024.txt |
AC |
1811 ms |
4080 KiB |
test_0025.txt |
AC |
1808 ms |
4108 KiB |
test_0026.txt |
AC |
1805 ms |
4128 KiB |
test_0027.txt |
AC |
1804 ms |
4236 KiB |
test_0028.txt |
AC |
1804 ms |
4208 KiB |
test_0029.txt |
AC |
1803 ms |
3952 KiB |
test_0030.txt |
AC |
1803 ms |
3964 KiB |
test_0031.txt |
AC |
1810 ms |
4272 KiB |
test_0032.txt |
AC |
1802 ms |
3976 KiB |
test_0033.txt |
AC |
1803 ms |
4004 KiB |
test_0034.txt |
AC |
1803 ms |
4108 KiB |
test_0035.txt |
AC |
1802 ms |
3900 KiB |
test_0036.txt |
AC |
1802 ms |
3976 KiB |
test_0037.txt |
AC |
1802 ms |
4080 KiB |
test_0038.txt |
AC |
1802 ms |
3936 KiB |
test_0039.txt |
AC |
1805 ms |
4152 KiB |
test_0040.txt |
AC |
1802 ms |
4172 KiB |
test_0041.txt |
AC |
1803 ms |
3944 KiB |
test_0042.txt |
AC |
1807 ms |
4172 KiB |
test_0043.txt |
AC |
1804 ms |
4084 KiB |
test_0044.txt |
AC |
1809 ms |
4104 KiB |
test_0045.txt |
AC |
1803 ms |
3896 KiB |
test_0046.txt |
AC |
1806 ms |
4156 KiB |
test_0047.txt |
AC |
1802 ms |
4048 KiB |
test_0048.txt |
AC |
1802 ms |
4020 KiB |
test_0049.txt |
AC |
1803 ms |
3952 KiB |
test_0050.txt |
AC |
1804 ms |
4000 KiB |
test_0051.txt |
AC |
1803 ms |
4008 KiB |
test_0052.txt |
AC |
1811 ms |
4224 KiB |
test_0053.txt |
AC |
1808 ms |
4172 KiB |
test_0054.txt |
AC |
1804 ms |
4140 KiB |
test_0055.txt |
AC |
1802 ms |
4032 KiB |
test_0056.txt |
AC |
1817 ms |
4248 KiB |
test_0057.txt |
AC |
1804 ms |
4160 KiB |
test_0058.txt |
AC |
1803 ms |
4064 KiB |
test_0059.txt |
AC |
1805 ms |
4056 KiB |
test_0060.txt |
AC |
1802 ms |
4088 KiB |
test_0061.txt |
AC |
1802 ms |
3936 KiB |
test_0062.txt |
AC |
1802 ms |
3900 KiB |
test_0063.txt |
AC |
1802 ms |
4108 KiB |
test_0064.txt |
AC |
1802 ms |
4008 KiB |
test_0065.txt |
AC |
1813 ms |
4184 KiB |
test_0066.txt |
AC |
1816 ms |
4316 KiB |
test_0067.txt |
AC |
1812 ms |
4124 KiB |
test_0068.txt |
AC |
1805 ms |
4120 KiB |
test_0069.txt |
AC |
1807 ms |
4120 KiB |
test_0070.txt |
AC |
1806 ms |
4128 KiB |
test_0071.txt |
AC |
1814 ms |
4288 KiB |
test_0072.txt |
AC |
1802 ms |
4100 KiB |
test_0073.txt |
AC |
1808 ms |
4164 KiB |
test_0074.txt |
AC |
1802 ms |
4100 KiB |
test_0075.txt |
AC |
1802 ms |
3856 KiB |
test_0076.txt |
AC |
1805 ms |
4080 KiB |
test_0077.txt |
AC |
1810 ms |
4160 KiB |
test_0078.txt |
AC |
1810 ms |
4256 KiB |
test_0079.txt |
AC |
1802 ms |
3924 KiB |
test_0080.txt |
AC |
1804 ms |
4036 KiB |
test_0081.txt |
AC |
1806 ms |
4056 KiB |
test_0082.txt |
AC |
1802 ms |
3884 KiB |
test_0083.txt |
AC |
1802 ms |
3940 KiB |
test_0084.txt |
AC |
1802 ms |
4056 KiB |
test_0085.txt |
AC |
1811 ms |
4156 KiB |
test_0086.txt |
AC |
1803 ms |
3964 KiB |
test_0087.txt |
AC |
1802 ms |
4032 KiB |
test_0088.txt |
AC |
1803 ms |
4064 KiB |
test_0089.txt |
AC |
1811 ms |
4096 KiB |
test_0090.txt |
AC |
1803 ms |
3972 KiB |
test_0091.txt |
AC |
1802 ms |
4180 KiB |
test_0092.txt |
AC |
1811 ms |
4176 KiB |
test_0093.txt |
AC |
1803 ms |
4156 KiB |
test_0094.txt |
AC |
1802 ms |
3952 KiB |
test_0095.txt |
AC |
1809 ms |
4000 KiB |
test_0096.txt |
AC |
1802 ms |
4060 KiB |
test_0097.txt |
AC |
1803 ms |
4092 KiB |
test_0098.txt |
AC |
1809 ms |
4300 KiB |
test_0099.txt |
AC |
1806 ms |
4216 KiB |
test_0100.txt |
AC |
1802 ms |
4064 KiB |
test_0101.txt |
AC |
1803 ms |
4004 KiB |
test_0102.txt |
AC |
1804 ms |
4020 KiB |
test_0103.txt |
AC |
1802 ms |
4064 KiB |
test_0104.txt |
AC |
1806 ms |
4032 KiB |
test_0105.txt |
AC |
1802 ms |
3976 KiB |
test_0106.txt |
AC |
1802 ms |
4028 KiB |
test_0107.txt |
AC |
1802 ms |
3900 KiB |
test_0108.txt |
AC |
1810 ms |
4208 KiB |
test_0109.txt |
AC |
1808 ms |
4120 KiB |
test_0110.txt |
AC |
1807 ms |
4160 KiB |
test_0111.txt |
AC |
1814 ms |
4180 KiB |
test_0112.txt |
AC |
1802 ms |
3996 KiB |
test_0113.txt |
AC |
1804 ms |
3996 KiB |
test_0114.txt |
AC |
1804 ms |
4092 KiB |
test_0115.txt |
AC |
1802 ms |
4164 KiB |
test_0116.txt |
AC |
1805 ms |
4260 KiB |
test_0117.txt |
AC |
1805 ms |
4124 KiB |
test_0118.txt |
AC |
1804 ms |
4016 KiB |
test_0119.txt |
AC |
1802 ms |
3916 KiB |
test_0120.txt |
AC |
1806 ms |
4196 KiB |
test_0121.txt |
AC |
1814 ms |
4228 KiB |
test_0122.txt |
AC |
1802 ms |
4060 KiB |
test_0123.txt |
AC |
1802 ms |
3900 KiB |
test_0124.txt |
AC |
1802 ms |
4204 KiB |
test_0125.txt |
AC |
1808 ms |
4116 KiB |
test_0126.txt |
AC |
1803 ms |
4124 KiB |
test_0127.txt |
AC |
1804 ms |
4168 KiB |
test_0128.txt |
AC |
1802 ms |
3976 KiB |
test_0129.txt |
AC |
1805 ms |
4016 KiB |
test_0130.txt |
AC |
1802 ms |
4000 KiB |
test_0131.txt |
AC |
1802 ms |
3904 KiB |
test_0132.txt |
AC |
1803 ms |
4028 KiB |
test_0133.txt |
AC |
1815 ms |
4164 KiB |
test_0134.txt |
AC |
1802 ms |
4200 KiB |
test_0135.txt |
AC |
1804 ms |
4156 KiB |
test_0136.txt |
AC |
1808 ms |
4268 KiB |
test_0137.txt |
AC |
1802 ms |
4044 KiB |
test_0138.txt |
AC |
1806 ms |
4168 KiB |
test_0139.txt |
AC |
1805 ms |
4100 KiB |
test_0140.txt |
AC |
1804 ms |
4184 KiB |
test_0141.txt |
AC |
1806 ms |
4208 KiB |
test_0142.txt |
AC |
1805 ms |
4220 KiB |
test_0143.txt |
AC |
1807 ms |
4100 KiB |
test_0144.txt |
AC |
1809 ms |
4136 KiB |
test_0145.txt |
AC |
1813 ms |
4316 KiB |
test_0146.txt |
AC |
1802 ms |
4112 KiB |
test_0147.txt |
AC |
1807 ms |
4276 KiB |
test_0148.txt |
AC |
1804 ms |
4048 KiB |
test_0149.txt |
AC |
1807 ms |
4320 KiB |
test_0150.txt |
AC |
1803 ms |
4056 KiB |
test_0151.txt |
AC |
1805 ms |
4208 KiB |
test_0152.txt |
AC |
1808 ms |
4136 KiB |
test_0153.txt |
AC |
1813 ms |
4328 KiB |
test_0154.txt |
AC |
1802 ms |
4188 KiB |
test_0155.txt |
AC |
1802 ms |
3980 KiB |
test_0156.txt |
AC |
1804 ms |
4156 KiB |
test_0157.txt |
AC |
1805 ms |
4136 KiB |
test_0158.txt |
AC |
1805 ms |
4164 KiB |
test_0159.txt |
AC |
1804 ms |
3980 KiB |
test_0160.txt |
AC |
1806 ms |
4204 KiB |
test_0161.txt |
AC |
1810 ms |
4224 KiB |
test_0162.txt |
AC |
1802 ms |
4032 KiB |
test_0163.txt |
AC |
1810 ms |
4192 KiB |
test_0164.txt |
AC |
1803 ms |
3896 KiB |
test_0165.txt |
AC |
1806 ms |
4272 KiB |
test_0166.txt |
AC |
1803 ms |
4164 KiB |
test_0167.txt |
AC |
1804 ms |
4168 KiB |
test_0168.txt |
AC |
1808 ms |
4144 KiB |
test_0169.txt |
AC |
1802 ms |
3956 KiB |
test_0170.txt |
AC |
1804 ms |
4152 KiB |
test_0171.txt |
AC |
1804 ms |
4112 KiB |
test_0172.txt |
AC |
1803 ms |
4068 KiB |
test_0173.txt |
AC |
1805 ms |
4076 KiB |
test_0174.txt |
AC |
1802 ms |
4080 KiB |
test_0175.txt |
AC |
1802 ms |
4148 KiB |
test_0176.txt |
AC |
1803 ms |
3900 KiB |
test_0177.txt |
AC |
1802 ms |
3964 KiB |
test_0178.txt |
AC |
1808 ms |
4144 KiB |
test_0179.txt |
AC |
1806 ms |
4208 KiB |
test_0180.txt |
AC |
1811 ms |
4120 KiB |
test_0181.txt |
AC |
1802 ms |
3836 KiB |
test_0182.txt |
AC |
1802 ms |
3968 KiB |
test_0183.txt |
AC |
1804 ms |
4080 KiB |
test_0184.txt |
AC |
1802 ms |
4116 KiB |
test_0185.txt |
AC |
1805 ms |
4052 KiB |
test_0186.txt |
AC |
1803 ms |
3972 KiB |
test_0187.txt |
AC |
1807 ms |
4132 KiB |
test_0188.txt |
AC |
1802 ms |
4228 KiB |
test_0189.txt |
AC |
1807 ms |
4112 KiB |
test_0190.txt |
AC |
1806 ms |
4164 KiB |
test_0191.txt |
AC |
1811 ms |
4204 KiB |
test_0192.txt |
AC |
1803 ms |
3920 KiB |
test_0193.txt |
AC |
1803 ms |
4132 KiB |
test_0194.txt |
AC |
1802 ms |
3968 KiB |
test_0195.txt |
AC |
1808 ms |
4208 KiB |
test_0196.txt |
AC |
1803 ms |
4076 KiB |
test_0197.txt |
AC |
1802 ms |
4004 KiB |
test_0198.txt |
AC |
1802 ms |
4068 KiB |
test_0199.txt |
AC |
1803 ms |
4132 KiB |
test_0200.txt |
AC |
1804 ms |
3972 KiB |
test_0201.txt |
AC |
1809 ms |
4304 KiB |
test_0202.txt |
AC |
1804 ms |
4080 KiB |
test_0203.txt |
AC |
1804 ms |
4044 KiB |
test_0204.txt |
AC |
1802 ms |
3912 KiB |
test_0205.txt |
AC |
1802 ms |
4268 KiB |
test_0206.txt |
AC |
1802 ms |
4092 KiB |
test_0207.txt |
AC |
1802 ms |
4008 KiB |
test_0208.txt |
AC |
1803 ms |
3844 KiB |
test_0209.txt |
AC |
1814 ms |
4328 KiB |
test_0210.txt |
AC |
1802 ms |
3796 KiB |
test_0211.txt |
AC |
1805 ms |
4104 KiB |
test_0212.txt |
AC |
1808 ms |
4216 KiB |
test_0213.txt |
AC |
1803 ms |
3940 KiB |
test_0214.txt |
AC |
1806 ms |
4204 KiB |
test_0215.txt |
AC |
1803 ms |
4100 KiB |
test_0216.txt |
AC |
1802 ms |
3848 KiB |
test_0217.txt |
AC |
1804 ms |
4120 KiB |
test_0218.txt |
AC |
1812 ms |
4212 KiB |
test_0219.txt |
AC |
1802 ms |
3964 KiB |
test_0220.txt |
AC |
1812 ms |
4156 KiB |
test_0221.txt |
AC |
1802 ms |
3848 KiB |
test_0222.txt |
AC |
1813 ms |
4212 KiB |
test_0223.txt |
AC |
1810 ms |
4220 KiB |
test_0224.txt |
AC |
1806 ms |
4232 KiB |
test_0225.txt |
AC |
1811 ms |
4316 KiB |
test_0226.txt |
AC |
1808 ms |
4280 KiB |
test_0227.txt |
AC |
1803 ms |
3964 KiB |
test_0228.txt |
AC |
1810 ms |
4284 KiB |
test_0229.txt |
AC |
1804 ms |
4080 KiB |
test_0230.txt |
AC |
1807 ms |
4148 KiB |
test_0231.txt |
AC |
1803 ms |
3988 KiB |
test_0232.txt |
AC |
1802 ms |
4088 KiB |
test_0233.txt |
AC |
1803 ms |
4060 KiB |
test_0234.txt |
AC |
1811 ms |
4320 KiB |
test_0235.txt |
AC |
1804 ms |
4064 KiB |
test_0236.txt |
AC |
1803 ms |
3956 KiB |
test_0237.txt |
AC |
1805 ms |
4152 KiB |
test_0238.txt |
AC |
1802 ms |
3996 KiB |
test_0239.txt |
AC |
1804 ms |
4068 KiB |
test_0240.txt |
AC |
1802 ms |
3836 KiB |
test_0241.txt |
AC |
1803 ms |
4124 KiB |
test_0242.txt |
AC |
1803 ms |
3840 KiB |
test_0243.txt |
AC |
1803 ms |
3976 KiB |
test_0244.txt |
AC |
1802 ms |
4048 KiB |
test_0245.txt |
AC |
1806 ms |
4136 KiB |
test_0246.txt |
AC |
1802 ms |
3816 KiB |
test_0247.txt |
AC |
1803 ms |
4012 KiB |
test_0248.txt |
AC |
1802 ms |
4112 KiB |
test_0249.txt |
AC |
1803 ms |
3900 KiB |
test_0250.txt |
AC |
1802 ms |
3928 KiB |
test_0251.txt |
AC |
1802 ms |
3872 KiB |
test_0252.txt |
AC |
1802 ms |
3936 KiB |
test_0253.txt |
AC |
1802 ms |
4060 KiB |
test_0254.txt |
AC |
1806 ms |
4260 KiB |
test_0255.txt |
AC |
1803 ms |
3936 KiB |
test_0256.txt |
AC |
1820 ms |
4312 KiB |
test_0257.txt |
AC |
1802 ms |
3880 KiB |
test_0258.txt |
AC |
1803 ms |
3952 KiB |
test_0259.txt |
AC |
1802 ms |
3980 KiB |
test_0260.txt |
AC |
1807 ms |
4064 KiB |
test_0261.txt |
AC |
1802 ms |
4092 KiB |
test_0262.txt |
AC |
1804 ms |
4000 KiB |
test_0263.txt |
AC |
1802 ms |
3920 KiB |
test_0264.txt |
AC |
1811 ms |
4264 KiB |
test_0265.txt |
AC |
1810 ms |
4060 KiB |
test_0266.txt |
AC |
1803 ms |
4120 KiB |
test_0267.txt |
AC |
1803 ms |
4028 KiB |
test_0268.txt |
AC |
1804 ms |
4076 KiB |
test_0269.txt |
AC |
1802 ms |
4168 KiB |
test_0270.txt |
AC |
1802 ms |
4072 KiB |
test_0271.txt |
AC |
1802 ms |
3952 KiB |
test_0272.txt |
AC |
1807 ms |
4068 KiB |
test_0273.txt |
AC |
1803 ms |
3932 KiB |
test_0274.txt |
AC |
1802 ms |
3932 KiB |
test_0275.txt |
AC |
1805 ms |
4196 KiB |
test_0276.txt |
AC |
1803 ms |
4128 KiB |
test_0277.txt |
AC |
1803 ms |
3988 KiB |
test_0278.txt |
AC |
1803 ms |
4080 KiB |
test_0279.txt |
AC |
1803 ms |
3996 KiB |
test_0280.txt |
AC |
1802 ms |
4004 KiB |
test_0281.txt |
AC |
1803 ms |
4012 KiB |
test_0282.txt |
AC |
1803 ms |
4012 KiB |
test_0283.txt |
AC |
1803 ms |
4008 KiB |
test_0284.txt |
AC |
1802 ms |
3900 KiB |
test_0285.txt |
AC |
1809 ms |
4236 KiB |
test_0286.txt |
AC |
1810 ms |
4196 KiB |
test_0287.txt |
AC |
1803 ms |
4124 KiB |
test_0288.txt |
AC |
1804 ms |
4044 KiB |
test_0289.txt |
AC |
1813 ms |
4216 KiB |
test_0290.txt |
AC |
1806 ms |
4236 KiB |
test_0291.txt |
AC |
1805 ms |
4020 KiB |
test_0292.txt |
AC |
1811 ms |
4192 KiB |
test_0293.txt |
AC |
1803 ms |
4068 KiB |
test_0294.txt |
AC |
1805 ms |
4072 KiB |
test_0295.txt |
AC |
1807 ms |
4040 KiB |
test_0296.txt |
AC |
1807 ms |
4140 KiB |
test_0297.txt |
AC |
1803 ms |
4088 KiB |
test_0298.txt |
AC |
1804 ms |
4164 KiB |
test_0299.txt |
AC |
1805 ms |
4144 KiB |
test_0300.txt |
AC |
1803 ms |
4092 KiB |
test_0301.txt |
AC |
1802 ms |
3972 KiB |
test_0302.txt |
AC |
1805 ms |
4056 KiB |
test_0303.txt |
AC |
1804 ms |
4168 KiB |
test_0304.txt |
AC |
1803 ms |
4084 KiB |
test_0305.txt |
AC |
1802 ms |
3772 KiB |
test_0306.txt |
AC |
1803 ms |
4208 KiB |
test_0307.txt |
AC |
1802 ms |
4148 KiB |
test_0308.txt |
AC |
1817 ms |
4116 KiB |
test_0309.txt |
AC |
1802 ms |
3932 KiB |
test_0310.txt |
AC |
1811 ms |
4228 KiB |
test_0311.txt |
AC |
1803 ms |
4140 KiB |
test_0312.txt |
AC |
1804 ms |
3896 KiB |
test_0313.txt |
AC |
1802 ms |
3940 KiB |
test_0314.txt |
AC |
1802 ms |
3860 KiB |
test_0315.txt |
AC |
1803 ms |
4128 KiB |
test_0316.txt |
AC |
1806 ms |
4176 KiB |
test_0317.txt |
AC |
1804 ms |
4240 KiB |
test_0318.txt |
AC |
1818 ms |
4300 KiB |
test_0319.txt |
AC |
1803 ms |
3980 KiB |
test_0320.txt |
AC |
1808 ms |
4108 KiB |
test_0321.txt |
AC |
1804 ms |
4224 KiB |
test_0322.txt |
AC |
1804 ms |
3856 KiB |
test_0323.txt |
AC |
1802 ms |
3912 KiB |
test_0324.txt |
AC |
1802 ms |
3872 KiB |
test_0325.txt |
AC |
1807 ms |
4128 KiB |
test_0326.txt |
AC |
1803 ms |
3928 KiB |
test_0327.txt |
AC |
1804 ms |
4108 KiB |
test_0328.txt |
AC |
1802 ms |
4048 KiB |
test_0329.txt |
AC |
1803 ms |
4020 KiB |
test_0330.txt |
AC |
1803 ms |
3948 KiB |
test_0331.txt |
AC |
1809 ms |
4244 KiB |
test_0332.txt |
AC |
1815 ms |
4300 KiB |
test_0333.txt |
AC |
1805 ms |
4056 KiB |
test_0334.txt |
AC |
1802 ms |
3960 KiB |
test_0335.txt |
AC |
1802 ms |
3992 KiB |
test_0336.txt |
AC |
1815 ms |
4156 KiB |
test_0337.txt |
AC |
1806 ms |
4140 KiB |
test_0338.txt |
AC |
1808 ms |
4188 KiB |
test_0339.txt |
AC |
1804 ms |
4008 KiB |
test_0340.txt |
AC |
1802 ms |
3852 KiB |
test_0341.txt |
AC |
1803 ms |
4024 KiB |
test_0342.txt |
AC |
1804 ms |
4080 KiB |
test_0343.txt |
AC |
1802 ms |
3908 KiB |
test_0344.txt |
AC |
1809 ms |
4152 KiB |
test_0345.txt |
AC |
1802 ms |
3924 KiB |
test_0346.txt |
AC |
1802 ms |
4044 KiB |
test_0347.txt |
AC |
1803 ms |
3968 KiB |
test_0348.txt |
AC |
1802 ms |
3976 KiB |
test_0349.txt |
AC |
1803 ms |
4124 KiB |
test_0350.txt |
AC |
1810 ms |
4168 KiB |
test_0351.txt |
AC |
1804 ms |
4020 KiB |
test_0352.txt |
AC |
1806 ms |
4268 KiB |
test_0353.txt |
AC |
1802 ms |
3976 KiB |
test_0354.txt |
AC |
1806 ms |
4040 KiB |
test_0355.txt |
AC |
1808 ms |
4080 KiB |
test_0356.txt |
AC |
1802 ms |
4036 KiB |
test_0357.txt |
AC |
1802 ms |
4000 KiB |
test_0358.txt |
AC |
1802 ms |
3896 KiB |
test_0359.txt |
AC |
1804 ms |
4020 KiB |
test_0360.txt |
AC |
1802 ms |
3880 KiB |
test_0361.txt |
AC |
1810 ms |
4268 KiB |
test_0362.txt |
AC |
1804 ms |
4096 KiB |
test_0363.txt |
AC |
1811 ms |
4328 KiB |
test_0364.txt |
AC |
1802 ms |
4000 KiB |
test_0365.txt |
AC |
1804 ms |
3972 KiB |
test_0366.txt |
AC |
1802 ms |
4076 KiB |
test_0367.txt |
AC |
1802 ms |
4140 KiB |
test_0368.txt |
AC |
1807 ms |
4148 KiB |
test_0369.txt |
AC |
1811 ms |
4168 KiB |
test_0370.txt |
AC |
1802 ms |
4128 KiB |
test_0371.txt |
AC |
1804 ms |
4188 KiB |
test_0372.txt |
AC |
1802 ms |
4112 KiB |
test_0373.txt |
AC |
1803 ms |
4060 KiB |
test_0374.txt |
AC |
1802 ms |
4088 KiB |
test_0375.txt |
AC |
1808 ms |
4096 KiB |
test_0376.txt |
AC |
1803 ms |
4180 KiB |
test_0377.txt |
AC |
1810 ms |
4240 KiB |
test_0378.txt |
AC |
1802 ms |
4024 KiB |
test_0379.txt |
AC |
1802 ms |
4220 KiB |
test_0380.txt |
AC |
1803 ms |
4052 KiB |
test_0381.txt |
AC |
1802 ms |
4044 KiB |
test_0382.txt |
AC |
1804 ms |
4044 KiB |
test_0383.txt |
AC |
1806 ms |
4048 KiB |
test_0384.txt |
AC |
1803 ms |
3944 KiB |
test_0385.txt |
AC |
1802 ms |
3996 KiB |
test_0386.txt |
AC |
1805 ms |
4160 KiB |
test_0387.txt |
AC |
1809 ms |
4160 KiB |
test_0388.txt |
AC |
1802 ms |
3988 KiB |
test_0389.txt |
AC |
1802 ms |
4160 KiB |
test_0390.txt |
AC |
1803 ms |
3892 KiB |
test_0391.txt |
AC |
1802 ms |
4072 KiB |
test_0392.txt |
AC |
1802 ms |
4084 KiB |
test_0393.txt |
AC |
1811 ms |
4280 KiB |
test_0394.txt |
AC |
1803 ms |
3948 KiB |
test_0395.txt |
AC |
1802 ms |
4148 KiB |
test_0396.txt |
AC |
1802 ms |
3836 KiB |
test_0397.txt |
AC |
1803 ms |
3904 KiB |
test_0398.txt |
AC |
1804 ms |
4076 KiB |
test_0399.txt |
AC |
1807 ms |
4168 KiB |
test_0400.txt |
AC |
1803 ms |
4032 KiB |
test_0401.txt |
AC |
1808 ms |
4264 KiB |
test_0402.txt |
AC |
1803 ms |
3896 KiB |
test_0403.txt |
AC |
1802 ms |
4076 KiB |
test_0404.txt |
AC |
1802 ms |
3908 KiB |
test_0405.txt |
AC |
1803 ms |
4080 KiB |
test_0406.txt |
AC |
1808 ms |
4096 KiB |
test_0407.txt |
AC |
1804 ms |
4124 KiB |
test_0408.txt |
AC |
1802 ms |
4088 KiB |
test_0409.txt |
AC |
1803 ms |
3932 KiB |
test_0410.txt |
AC |
1806 ms |
4024 KiB |
test_0411.txt |
AC |
1814 ms |
4116 KiB |
test_0412.txt |
AC |
1809 ms |
4176 KiB |
test_0413.txt |
AC |
1802 ms |
4068 KiB |
test_0414.txt |
AC |
1814 ms |
4168 KiB |
test_0415.txt |
AC |
1802 ms |
3836 KiB |
test_0416.txt |
AC |
1803 ms |
4164 KiB |
test_0417.txt |
AC |
1807 ms |
4092 KiB |
test_0418.txt |
AC |
1804 ms |
4024 KiB |
test_0419.txt |
AC |
1804 ms |
4008 KiB |
test_0420.txt |
AC |
1805 ms |
3904 KiB |
test_0421.txt |
AC |
1802 ms |
3968 KiB |
test_0422.txt |
AC |
1802 ms |
3860 KiB |
test_0423.txt |
AC |
1803 ms |
4148 KiB |
test_0424.txt |
AC |
1802 ms |
3940 KiB |
test_0425.txt |
AC |
1803 ms |
3908 KiB |
test_0426.txt |
AC |
1802 ms |
4092 KiB |
test_0427.txt |
AC |
1803 ms |
4024 KiB |
test_0428.txt |
AC |
1802 ms |
3868 KiB |
test_0429.txt |
AC |
1809 ms |
4156 KiB |
test_0430.txt |
AC |
1814 ms |
4120 KiB |
test_0431.txt |
AC |
1809 ms |
4180 KiB |
test_0432.txt |
AC |
1813 ms |
4244 KiB |
test_0433.txt |
AC |
1810 ms |
4276 KiB |
test_0434.txt |
AC |
1802 ms |
4076 KiB |
test_0435.txt |
AC |
1810 ms |
4108 KiB |
test_0436.txt |
AC |
1805 ms |
4212 KiB |
test_0437.txt |
AC |
1802 ms |
3904 KiB |
test_0438.txt |
AC |
1803 ms |
4000 KiB |
test_0439.txt |
AC |
1802 ms |
3880 KiB |
test_0440.txt |
AC |
1810 ms |
4124 KiB |
test_0441.txt |
AC |
1803 ms |
3996 KiB |
test_0442.txt |
AC |
1802 ms |
3892 KiB |
test_0443.txt |
AC |
1802 ms |
4060 KiB |
test_0444.txt |
AC |
1803 ms |
4096 KiB |
test_0445.txt |
AC |
1802 ms |
4036 KiB |
test_0446.txt |
AC |
1802 ms |
4016 KiB |
test_0447.txt |
AC |
1813 ms |
4228 KiB |
test_0448.txt |
AC |
1806 ms |
4092 KiB |
test_0449.txt |
AC |
1802 ms |
4012 KiB |
test_0450.txt |
AC |
1805 ms |
4192 KiB |
test_0451.txt |
AC |
1805 ms |
4076 KiB |
test_0452.txt |
AC |
1802 ms |
3824 KiB |
test_0453.txt |
AC |
1806 ms |
4088 KiB |
test_0454.txt |
AC |
1802 ms |
4040 KiB |
test_0455.txt |
AC |
1802 ms |
3968 KiB |
test_0456.txt |
AC |
1805 ms |
4228 KiB |
test_0457.txt |
AC |
1804 ms |
4052 KiB |
test_0458.txt |
AC |
1803 ms |
4160 KiB |
test_0459.txt |
AC |
1803 ms |
4056 KiB |
test_0460.txt |
AC |
1808 ms |
4120 KiB |
test_0461.txt |
AC |
1803 ms |
4036 KiB |
test_0462.txt |
AC |
1803 ms |
3980 KiB |
test_0463.txt |
AC |
1803 ms |
4132 KiB |
test_0464.txt |
AC |
1808 ms |
4076 KiB |
test_0465.txt |
AC |
1805 ms |
4128 KiB |
test_0466.txt |
AC |
1806 ms |
4240 KiB |
test_0467.txt |
AC |
1804 ms |
4128 KiB |
test_0468.txt |
AC |
1803 ms |
3996 KiB |
test_0469.txt |
AC |
1802 ms |
4084 KiB |
test_0470.txt |
AC |
1802 ms |
4016 KiB |
test_0471.txt |
AC |
1802 ms |
4060 KiB |
test_0472.txt |
AC |
1802 ms |
3868 KiB |
test_0473.txt |
AC |
1802 ms |
3916 KiB |
test_0474.txt |
AC |
1803 ms |
3992 KiB |
test_0475.txt |
AC |
1802 ms |
4024 KiB |
test_0476.txt |
AC |
1804 ms |
4164 KiB |
test_0477.txt |
AC |
1806 ms |
4060 KiB |
test_0478.txt |
AC |
1804 ms |
3936 KiB |
test_0479.txt |
AC |
1802 ms |
4216 KiB |
test_0480.txt |
AC |
1803 ms |
4032 KiB |
test_0481.txt |
AC |
1802 ms |
4064 KiB |
test_0482.txt |
AC |
1802 ms |
4112 KiB |
test_0483.txt |
AC |
1803 ms |
4064 KiB |
test_0484.txt |
AC |
1803 ms |
4060 KiB |
test_0485.txt |
AC |
1807 ms |
4144 KiB |
test_0486.txt |
AC |
1803 ms |
4016 KiB |
test_0487.txt |
AC |
1810 ms |
4108 KiB |
test_0488.txt |
AC |
1810 ms |
4240 KiB |
test_0489.txt |
AC |
1802 ms |
3864 KiB |
test_0490.txt |
AC |
1809 ms |
4228 KiB |
test_0491.txt |
AC |
1802 ms |
4028 KiB |
test_0492.txt |
AC |
1804 ms |
3948 KiB |
test_0493.txt |
AC |
1802 ms |
3964 KiB |
test_0494.txt |
AC |
1803 ms |
3952 KiB |
test_0495.txt |
AC |
1802 ms |
3916 KiB |
test_0496.txt |
AC |
1819 ms |
4232 KiB |
test_0497.txt |
AC |
1803 ms |
4124 KiB |
test_0498.txt |
AC |
1804 ms |
3920 KiB |
test_0499.txt |
AC |
1802 ms |
4116 KiB |
test_0500.txt |
AC |
1808 ms |
4184 KiB |
test_0501.txt |
AC |
1806 ms |
4052 KiB |
test_0502.txt |
AC |
1804 ms |
4144 KiB |
test_0503.txt |
AC |
1802 ms |
4104 KiB |
test_0504.txt |
AC |
1802 ms |
3956 KiB |
test_0505.txt |
AC |
1806 ms |
4204 KiB |
test_0506.txt |
AC |
1802 ms |
3908 KiB |
test_0507.txt |
AC |
1807 ms |
4068 KiB |
test_0508.txt |
AC |
1808 ms |
4244 KiB |
test_0509.txt |
AC |
1805 ms |
4024 KiB |
test_0510.txt |
AC |
1806 ms |
4020 KiB |
test_0511.txt |
AC |
1803 ms |
3968 KiB |
test_0512.txt |
AC |
1802 ms |
4052 KiB |
test_0513.txt |
AC |
1808 ms |
4204 KiB |
test_0514.txt |
AC |
1802 ms |
4020 KiB |
test_0515.txt |
AC |
1813 ms |
4244 KiB |
test_0516.txt |
AC |
1808 ms |
4188 KiB |
test_0517.txt |
AC |
1809 ms |
4136 KiB |
test_0518.txt |
AC |
1806 ms |
4052 KiB |
test_0519.txt |
AC |
1805 ms |
4232 KiB |
test_0520.txt |
AC |
1803 ms |
4044 KiB |
test_0521.txt |
AC |
1808 ms |
4180 KiB |
test_0522.txt |
AC |
1808 ms |
4172 KiB |
test_0523.txt |
AC |
1804 ms |
3984 KiB |
test_0524.txt |
AC |
1808 ms |
4096 KiB |
test_0525.txt |
AC |
1802 ms |
4016 KiB |
test_0526.txt |
AC |
1802 ms |
3980 KiB |
test_0527.txt |
AC |
1806 ms |
4032 KiB |
test_0528.txt |
AC |
1803 ms |
4004 KiB |
test_0529.txt |
AC |
1803 ms |
3988 KiB |
test_0530.txt |
AC |
1806 ms |
4132 KiB |
test_0531.txt |
AC |
1807 ms |
4140 KiB |
test_0532.txt |
AC |
1802 ms |
4036 KiB |
test_0533.txt |
AC |
1803 ms |
3928 KiB |
test_0534.txt |
AC |
1809 ms |
4252 KiB |
test_0535.txt |
AC |
1802 ms |
3912 KiB |
test_0536.txt |
AC |
1803 ms |
4012 KiB |
test_0537.txt |
AC |
1802 ms |
4084 KiB |
test_0538.txt |
AC |
1803 ms |
4028 KiB |
test_0539.txt |
AC |
1804 ms |
4016 KiB |
test_0540.txt |
AC |
1805 ms |
4076 KiB |
test_0541.txt |
AC |
1802 ms |
3940 KiB |
test_0542.txt |
AC |
1802 ms |
3908 KiB |
test_0543.txt |
AC |
1802 ms |
3968 KiB |
test_0544.txt |
AC |
1803 ms |
3952 KiB |
test_0545.txt |
AC |
1802 ms |
3880 KiB |
test_0546.txt |
AC |
1802 ms |
4048 KiB |
test_0547.txt |
AC |
1802 ms |
3952 KiB |
test_0548.txt |
AC |
1809 ms |
4128 KiB |
test_0549.txt |
AC |
1802 ms |
4100 KiB |
test_0550.txt |
AC |
1810 ms |
4312 KiB |
test_0551.txt |
AC |
1805 ms |
4176 KiB |
test_0552.txt |
AC |
1803 ms |
4004 KiB |
test_0553.txt |
AC |
1802 ms |
4020 KiB |
test_0554.txt |
AC |
1802 ms |
3908 KiB |
test_0555.txt |
AC |
1802 ms |
3836 KiB |
test_0556.txt |
AC |
1803 ms |
4012 KiB |
test_0557.txt |
AC |
1808 ms |
4084 KiB |
test_0558.txt |
AC |
1802 ms |
4160 KiB |
test_0559.txt |
AC |
1803 ms |
4120 KiB |
test_0560.txt |
AC |
1802 ms |
4132 KiB |
test_0561.txt |
AC |
1803 ms |
4136 KiB |
test_0562.txt |
AC |
1802 ms |
3856 KiB |
test_0563.txt |
AC |
1802 ms |
3872 KiB |
test_0564.txt |
AC |
1807 ms |
4144 KiB |
test_0565.txt |
AC |
1802 ms |
3948 KiB |
test_0566.txt |
AC |
1802 ms |
4080 KiB |
test_0567.txt |
AC |
1806 ms |
4224 KiB |
test_0568.txt |
AC |
1804 ms |
4124 KiB |
test_0569.txt |
AC |
1808 ms |
4208 KiB |
test_0570.txt |
AC |
1802 ms |
4132 KiB |
test_0571.txt |
AC |
1802 ms |
4124 KiB |
test_0572.txt |
AC |
1803 ms |
4144 KiB |
test_0573.txt |
AC |
1804 ms |
3884 KiB |
test_0574.txt |
AC |
1803 ms |
4012 KiB |
test_0575.txt |
AC |
1802 ms |
3916 KiB |
test_0576.txt |
AC |
1808 ms |
4152 KiB |
test_0577.txt |
AC |
1802 ms |
4000 KiB |
test_0578.txt |
AC |
1807 ms |
4152 KiB |
test_0579.txt |
AC |
1802 ms |
3988 KiB |
test_0580.txt |
AC |
1810 ms |
4084 KiB |
test_0581.txt |
AC |
1802 ms |
4016 KiB |
test_0582.txt |
AC |
1802 ms |
4024 KiB |
test_0583.txt |
AC |
1802 ms |
3996 KiB |
test_0584.txt |
AC |
1803 ms |
4084 KiB |
test_0585.txt |
AC |
1806 ms |
4196 KiB |
test_0586.txt |
AC |
1812 ms |
4272 KiB |
test_0587.txt |
AC |
1807 ms |
4080 KiB |
test_0588.txt |
AC |
1803 ms |
4228 KiB |
test_0589.txt |
AC |
1804 ms |
4088 KiB |
test_0590.txt |
AC |
1803 ms |
4068 KiB |
test_0591.txt |
AC |
1802 ms |
4040 KiB |
test_0592.txt |
AC |
1810 ms |
4108 KiB |
test_0593.txt |
AC |
1802 ms |
3936 KiB |
test_0594.txt |
AC |
1802 ms |
3868 KiB |
test_0595.txt |
AC |
1802 ms |
4124 KiB |
test_0596.txt |
AC |
1808 ms |
4084 KiB |
test_0597.txt |
AC |
1808 ms |
4240 KiB |
test_0598.txt |
AC |
1807 ms |
4188 KiB |
test_0599.txt |
AC |
1802 ms |
3984 KiB |
test_0600.txt |
AC |
1802 ms |
4024 KiB |
test_0601.txt |
AC |
1808 ms |
4292 KiB |
test_0602.txt |
AC |
1805 ms |
4212 KiB |
test_0603.txt |
AC |
1807 ms |
4160 KiB |
test_0604.txt |
AC |
1802 ms |
4108 KiB |
test_0605.txt |
AC |
1804 ms |
4100 KiB |
test_0606.txt |
AC |
1811 ms |
4232 KiB |
test_0607.txt |
AC |
1802 ms |
4124 KiB |
test_0608.txt |
AC |
1804 ms |
3976 KiB |
test_0609.txt |
AC |
1802 ms |
3912 KiB |
test_0610.txt |
AC |
1802 ms |
4144 KiB |
test_0611.txt |
AC |
1804 ms |
4164 KiB |
test_0612.txt |
AC |
1802 ms |
3856 KiB |
test_0613.txt |
AC |
1802 ms |
3992 KiB |
test_0614.txt |
AC |
1802 ms |
4028 KiB |
test_0615.txt |
AC |
1805 ms |
4080 KiB |
test_0616.txt |
AC |
1808 ms |
4244 KiB |
test_0617.txt |
AC |
1817 ms |
4276 KiB |
test_0618.txt |
AC |
1812 ms |
4216 KiB |
test_0619.txt |
AC |
1802 ms |
3964 KiB |
test_0620.txt |
AC |
1809 ms |
4308 KiB |
test_0621.txt |
AC |
1803 ms |
4032 KiB |
test_0622.txt |
AC |
1806 ms |
4116 KiB |
test_0623.txt |
AC |
1804 ms |
4160 KiB |
test_0624.txt |
AC |
1802 ms |
4024 KiB |
test_0625.txt |
AC |
1802 ms |
4124 KiB |
test_0626.txt |
AC |
1802 ms |
4056 KiB |
test_0627.txt |
AC |
1811 ms |
4264 KiB |
test_0628.txt |
AC |
1804 ms |
4068 KiB |
test_0629.txt |
AC |
1802 ms |
3844 KiB |
test_0630.txt |
AC |
1802 ms |
4148 KiB |
test_0631.txt |
AC |
1802 ms |
4080 KiB |
test_0632.txt |
AC |
1805 ms |
4144 KiB |
test_0633.txt |
AC |
1805 ms |
3988 KiB |
test_0634.txt |
AC |
1804 ms |
4132 KiB |
test_0635.txt |
AC |
1804 ms |
4012 KiB |
test_0636.txt |
AC |
1807 ms |
4132 KiB |
test_0637.txt |
AC |
1802 ms |
3948 KiB |
test_0638.txt |
AC |
1803 ms |
4128 KiB |
test_0639.txt |
AC |
1802 ms |
3908 KiB |
test_0640.txt |
AC |
1804 ms |
4000 KiB |
test_0641.txt |
AC |
1802 ms |
3932 KiB |
test_0642.txt |
AC |
1804 ms |
4088 KiB |
test_0643.txt |
AC |
1805 ms |
4108 KiB |
test_0644.txt |
AC |
1802 ms |
3888 KiB |
test_0645.txt |
AC |
1804 ms |
3984 KiB |
test_0646.txt |
AC |
1803 ms |
4016 KiB |
test_0647.txt |
AC |
1802 ms |
3924 KiB |
test_0648.txt |
AC |
1804 ms |
3996 KiB |
test_0649.txt |
AC |
1817 ms |
4212 KiB |
test_0650.txt |
AC |
1808 ms |
4100 KiB |
test_0651.txt |
AC |
1802 ms |
4132 KiB |
test_0652.txt |
AC |
1802 ms |
3920 KiB |
test_0653.txt |
AC |
1802 ms |
3984 KiB |
test_0654.txt |
AC |
1802 ms |
3988 KiB |
test_0655.txt |
AC |
1813 ms |
4200 KiB |
test_0656.txt |
AC |
1802 ms |
3928 KiB |
test_0657.txt |
AC |
1805 ms |
4044 KiB |
test_0658.txt |
AC |
1802 ms |
4028 KiB |
test_0659.txt |
AC |
1803 ms |
3928 KiB |
test_0660.txt |
AC |
1803 ms |
3900 KiB |
test_0661.txt |
AC |
1812 ms |
4176 KiB |
test_0662.txt |
AC |
1803 ms |
4120 KiB |
test_0663.txt |
AC |
1802 ms |
3812 KiB |
test_0664.txt |
AC |
1802 ms |
4084 KiB |
test_0665.txt |
AC |
1804 ms |
4160 KiB |
test_0666.txt |
AC |
1802 ms |
4036 KiB |
test_0667.txt |
AC |
1802 ms |
4080 KiB |
test_0668.txt |
AC |
1812 ms |
4128 KiB |
test_0669.txt |
AC |
1802 ms |
4144 KiB |
test_0670.txt |
AC |
1806 ms |
4052 KiB |
test_0671.txt |
AC |
1804 ms |
4088 KiB |
test_0672.txt |
AC |
1810 ms |
4312 KiB |
test_0673.txt |
AC |
1802 ms |
3868 KiB |
test_0674.txt |
AC |
1809 ms |
4308 KiB |
test_0675.txt |
AC |
1802 ms |
4040 KiB |
test_0676.txt |
AC |
1803 ms |
4132 KiB |
test_0677.txt |
AC |
1802 ms |
3988 KiB |
test_0678.txt |
AC |
1802 ms |
3984 KiB |
test_0679.txt |
AC |
1811 ms |
4188 KiB |
test_0680.txt |
AC |
1806 ms |
4124 KiB |
test_0681.txt |
AC |
1803 ms |
3832 KiB |
test_0682.txt |
AC |
1805 ms |
4180 KiB |
test_0683.txt |
AC |
1805 ms |
4128 KiB |
test_0684.txt |
AC |
1804 ms |
4016 KiB |
test_0685.txt |
AC |
1803 ms |
4140 KiB |
test_0686.txt |
AC |
1806 ms |
4112 KiB |
test_0687.txt |
AC |
1810 ms |
4260 KiB |
test_0688.txt |
AC |
1806 ms |
4032 KiB |
test_0689.txt |
AC |
1813 ms |
4240 KiB |
test_0690.txt |
AC |
1803 ms |
4024 KiB |
test_0691.txt |
AC |
1802 ms |
3924 KiB |
test_0692.txt |
AC |
1802 ms |
4124 KiB |
test_0693.txt |
AC |
1804 ms |
3916 KiB |
test_0694.txt |
AC |
1802 ms |
3800 KiB |
test_0695.txt |
AC |
1802 ms |
4096 KiB |
test_0696.txt |
AC |
1804 ms |
4064 KiB |
test_0697.txt |
AC |
1802 ms |
4088 KiB |
test_0698.txt |
AC |
1805 ms |
4088 KiB |
test_0699.txt |
AC |
1806 ms |
4176 KiB |
test_0700.txt |
AC |
1810 ms |
4088 KiB |
test_0701.txt |
AC |
1802 ms |
3924 KiB |
test_0702.txt |
AC |
1802 ms |
3936 KiB |
test_0703.txt |
AC |
1807 ms |
4152 KiB |
test_0704.txt |
AC |
1803 ms |
4084 KiB |
test_0705.txt |
AC |
1802 ms |
4056 KiB |
test_0706.txt |
AC |
1803 ms |
3880 KiB |
test_0707.txt |
AC |
1802 ms |
4008 KiB |
test_0708.txt |
AC |
1802 ms |
3908 KiB |
test_0709.txt |
AC |
1803 ms |
4008 KiB |
test_0710.txt |
AC |
1802 ms |
3992 KiB |
test_0711.txt |
AC |
1805 ms |
4080 KiB |
test_0712.txt |
AC |
1812 ms |
4196 KiB |
test_0713.txt |
AC |
1809 ms |
4208 KiB |
test_0714.txt |
AC |
1802 ms |
4136 KiB |
test_0715.txt |
AC |
1802 ms |
3980 KiB |
test_0716.txt |
AC |
1806 ms |
4232 KiB |
test_0717.txt |
AC |
1804 ms |
4000 KiB |
test_0718.txt |
AC |
1802 ms |
4144 KiB |
test_0719.txt |
AC |
1812 ms |
4232 KiB |
test_0720.txt |
AC |
1806 ms |
4148 KiB |
test_0721.txt |
AC |
1803 ms |
3908 KiB |
test_0722.txt |
AC |
1806 ms |
3976 KiB |
test_0723.txt |
AC |
1804 ms |
4016 KiB |
test_0724.txt |
AC |
1802 ms |
4128 KiB |
test_0725.txt |
AC |
1809 ms |
4144 KiB |
test_0726.txt |
AC |
1805 ms |
4204 KiB |
test_0727.txt |
AC |
1804 ms |
4148 KiB |
test_0728.txt |
AC |
1802 ms |
4224 KiB |
test_0729.txt |
AC |
1802 ms |
3900 KiB |
test_0730.txt |
AC |
1802 ms |
3988 KiB |
test_0731.txt |
AC |
1808 ms |
4108 KiB |
test_0732.txt |
AC |
1807 ms |
4160 KiB |
test_0733.txt |
AC |
1802 ms |
4036 KiB |
test_0734.txt |
AC |
1802 ms |
4120 KiB |
test_0735.txt |
AC |
1806 ms |
4084 KiB |
test_0736.txt |
AC |
1805 ms |
4060 KiB |
test_0737.txt |
AC |
1806 ms |
4104 KiB |
test_0738.txt |
AC |
1803 ms |
3896 KiB |
test_0739.txt |
AC |
1802 ms |
4180 KiB |
test_0740.txt |
AC |
1803 ms |
4168 KiB |
test_0741.txt |
AC |
1807 ms |
4212 KiB |
test_0742.txt |
AC |
1805 ms |
4264 KiB |
test_0743.txt |
AC |
1805 ms |
4188 KiB |
test_0744.txt |
AC |
1802 ms |
4108 KiB |
test_0745.txt |
AC |
1806 ms |
4224 KiB |
test_0746.txt |
AC |
1806 ms |
4064 KiB |
test_0747.txt |
AC |
1806 ms |
4168 KiB |
test_0748.txt |
AC |
1804 ms |
4184 KiB |
test_0749.txt |
AC |
1805 ms |
4064 KiB |
test_0750.txt |
AC |
1803 ms |
3976 KiB |
test_0751.txt |
AC |
1808 ms |
4148 KiB |
test_0752.txt |
AC |
1809 ms |
4208 KiB |
test_0753.txt |
AC |
1806 ms |
4192 KiB |
test_0754.txt |
AC |
1807 ms |
4096 KiB |
test_0755.txt |
AC |
1804 ms |
4012 KiB |
test_0756.txt |
AC |
1802 ms |
4132 KiB |
test_0757.txt |
AC |
1802 ms |
3916 KiB |
test_0758.txt |
AC |
1803 ms |
4020 KiB |
test_0759.txt |
AC |
1809 ms |
4168 KiB |
test_0760.txt |
AC |
1803 ms |
4152 KiB |
test_0761.txt |
AC |
1812 ms |
4252 KiB |
test_0762.txt |
AC |
1809 ms |
4196 KiB |
test_0763.txt |
AC |
1807 ms |
4152 KiB |
test_0764.txt |
AC |
1805 ms |
4188 KiB |
test_0765.txt |
AC |
1810 ms |
4048 KiB |
test_0766.txt |
AC |
1803 ms |
4028 KiB |
test_0767.txt |
AC |
1803 ms |
3984 KiB |
test_0768.txt |
AC |
1804 ms |
4152 KiB |
test_0769.txt |
AC |
1805 ms |
4192 KiB |
test_0770.txt |
AC |
1817 ms |
4284 KiB |
test_0771.txt |
AC |
1802 ms |
4168 KiB |
test_0772.txt |
AC |
1812 ms |
4176 KiB |
test_0773.txt |
AC |
1803 ms |
3960 KiB |
test_0774.txt |
AC |
1808 ms |
4140 KiB |
test_0775.txt |
AC |
1802 ms |
4036 KiB |
test_0776.txt |
AC |
1804 ms |
4148 KiB |
test_0777.txt |
AC |
1810 ms |
4068 KiB |
test_0778.txt |
AC |
1804 ms |
4048 KiB |
test_0779.txt |
AC |
1803 ms |
4224 KiB |
test_0780.txt |
AC |
1811 ms |
4136 KiB |
test_0781.txt |
AC |
1802 ms |
3892 KiB |
test_0782.txt |
AC |
1802 ms |
4084 KiB |
test_0783.txt |
AC |
1803 ms |
4200 KiB |
test_0784.txt |
AC |
1811 ms |
4224 KiB |
test_0785.txt |
AC |
1802 ms |
4024 KiB |
test_0786.txt |
AC |
1805 ms |
4024 KiB |
test_0787.txt |
AC |
1802 ms |
3944 KiB |
test_0788.txt |
AC |
1808 ms |
4188 KiB |
test_0789.txt |
AC |
1803 ms |
3916 KiB |
test_0790.txt |
AC |
1802 ms |
3948 KiB |
test_0791.txt |
AC |
1807 ms |
4260 KiB |
test_0792.txt |
AC |
1803 ms |
4192 KiB |
test_0793.txt |
AC |
1806 ms |
4060 KiB |
test_0794.txt |
AC |
1802 ms |
4012 KiB |
test_0795.txt |
AC |
1803 ms |
4068 KiB |
test_0796.txt |
AC |
1802 ms |
3852 KiB |
test_0797.txt |
AC |
1803 ms |
4032 KiB |
test_0798.txt |
AC |
1802 ms |
4096 KiB |
test_0799.txt |
AC |
1810 ms |
4120 KiB |
test_0800.txt |
AC |
1809 ms |
4124 KiB |
test_0801.txt |
AC |
1814 ms |
4272 KiB |
test_0802.txt |
AC |
1804 ms |
4092 KiB |
test_0803.txt |
AC |
1803 ms |
4116 KiB |
test_0804.txt |
AC |
1809 ms |
4040 KiB |
test_0805.txt |
AC |
1802 ms |
3916 KiB |
test_0806.txt |
AC |
1807 ms |
4124 KiB |
test_0807.txt |
AC |
1813 ms |
4216 KiB |
test_0808.txt |
AC |
1802 ms |
3840 KiB |
test_0809.txt |
AC |
1803 ms |
3956 KiB |
test_0810.txt |
AC |
1807 ms |
4200 KiB |
test_0811.txt |
AC |
1802 ms |
3956 KiB |
test_0812.txt |
AC |
1804 ms |
4052 KiB |
test_0813.txt |
AC |
1802 ms |
3924 KiB |
test_0814.txt |
AC |
1805 ms |
4244 KiB |
test_0815.txt |
AC |
1805 ms |
4148 KiB |
test_0816.txt |
AC |
1803 ms |
3928 KiB |
test_0817.txt |
AC |
1802 ms |
4092 KiB |
test_0818.txt |
AC |
1811 ms |
4236 KiB |
test_0819.txt |
AC |
1806 ms |
4164 KiB |
test_0820.txt |
AC |
1809 ms |
4276 KiB |
test_0821.txt |
AC |
1802 ms |
4100 KiB |
test_0822.txt |
AC |
1805 ms |
4196 KiB |
test_0823.txt |
AC |
1802 ms |
3816 KiB |
test_0824.txt |
AC |
1802 ms |
3944 KiB |
test_0825.txt |
AC |
1804 ms |
4208 KiB |
test_0826.txt |
AC |
1812 ms |
4304 KiB |
test_0827.txt |
AC |
1816 ms |
4272 KiB |
test_0828.txt |
AC |
1808 ms |
4220 KiB |
test_0829.txt |
AC |
1803 ms |
4080 KiB |
test_0830.txt |
AC |
1803 ms |
3996 KiB |
test_0831.txt |
AC |
1803 ms |
4188 KiB |
test_0832.txt |
AC |
1802 ms |
4068 KiB |
test_0833.txt |
AC |
1802 ms |
3872 KiB |
test_0834.txt |
AC |
1807 ms |
4032 KiB |
test_0835.txt |
AC |
1807 ms |
4032 KiB |
test_0836.txt |
AC |
1806 ms |
4048 KiB |
test_0837.txt |
AC |
1804 ms |
4200 KiB |
test_0838.txt |
AC |
1806 ms |
4096 KiB |
test_0839.txt |
AC |
1811 ms |
4248 KiB |
test_0840.txt |
AC |
1802 ms |
4108 KiB |
test_0841.txt |
AC |
1803 ms |
4040 KiB |
test_0842.txt |
AC |
1802 ms |
3824 KiB |
test_0843.txt |
AC |
1809 ms |
4240 KiB |
test_0844.txt |
AC |
1815 ms |
4244 KiB |
test_0845.txt |
AC |
1812 ms |
4260 KiB |
test_0846.txt |
AC |
1802 ms |
4088 KiB |
test_0847.txt |
AC |
1803 ms |
4048 KiB |
test_0848.txt |
AC |
1803 ms |
4160 KiB |
test_0849.txt |
AC |
1803 ms |
4084 KiB |
test_0850.txt |
AC |
1802 ms |
4016 KiB |
test_0851.txt |
AC |
1802 ms |
3968 KiB |
test_0852.txt |
AC |
1803 ms |
4084 KiB |
test_0853.txt |
AC |
1806 ms |
4276 KiB |
test_0854.txt |
AC |
1804 ms |
4052 KiB |
test_0855.txt |
AC |
1802 ms |
3932 KiB |
test_0856.txt |
AC |
1804 ms |
4180 KiB |
test_0857.txt |
AC |
1802 ms |
3812 KiB |
test_0858.txt |
AC |
1802 ms |
3964 KiB |
test_0859.txt |
AC |
1803 ms |
3956 KiB |
test_0860.txt |
AC |
1803 ms |
3900 KiB |
test_0861.txt |
AC |
1802 ms |
4036 KiB |
test_0862.txt |
AC |
1802 ms |
4216 KiB |
test_0863.txt |
AC |
1809 ms |
4208 KiB |
test_0864.txt |
AC |
1802 ms |
3900 KiB |
test_0865.txt |
AC |
1802 ms |
3840 KiB |
test_0866.txt |
AC |
1811 ms |
4132 KiB |
test_0867.txt |
AC |
1803 ms |
4088 KiB |
test_0868.txt |
AC |
1803 ms |
4116 KiB |
test_0869.txt |
AC |
1804 ms |
4112 KiB |
test_0870.txt |
AC |
1802 ms |
3932 KiB |
test_0871.txt |
AC |
1802 ms |
3828 KiB |
test_0872.txt |
AC |
1802 ms |
4128 KiB |
test_0873.txt |
AC |
1803 ms |
4004 KiB |
test_0874.txt |
AC |
1803 ms |
4044 KiB |
test_0875.txt |
AC |
1808 ms |
4236 KiB |
test_0876.txt |
AC |
1804 ms |
4040 KiB |
test_0877.txt |
AC |
1807 ms |
4124 KiB |
test_0878.txt |
AC |
1803 ms |
3972 KiB |
test_0879.txt |
AC |
1803 ms |
4076 KiB |
test_0880.txt |
AC |
1817 ms |
4272 KiB |
test_0881.txt |
AC |
1814 ms |
4324 KiB |
test_0882.txt |
AC |
1808 ms |
4196 KiB |
test_0883.txt |
AC |
1808 ms |
4084 KiB |
test_0884.txt |
AC |
1812 ms |
4300 KiB |
test_0885.txt |
AC |
1804 ms |
4128 KiB |
test_0886.txt |
AC |
1803 ms |
3896 KiB |
test_0887.txt |
AC |
1808 ms |
4176 KiB |
test_0888.txt |
AC |
1802 ms |
4004 KiB |
test_0889.txt |
AC |
1802 ms |
4000 KiB |
test_0890.txt |
AC |
1805 ms |
4160 KiB |
test_0891.txt |
AC |
1804 ms |
4092 KiB |
test_0892.txt |
AC |
1805 ms |
4140 KiB |
test_0893.txt |
AC |
1806 ms |
4072 KiB |
test_0894.txt |
AC |
1813 ms |
4192 KiB |
test_0895.txt |
AC |
1806 ms |
4136 KiB |
test_0896.txt |
AC |
1803 ms |
4012 KiB |
test_0897.txt |
AC |
1810 ms |
4224 KiB |
test_0898.txt |
AC |
1802 ms |
3840 KiB |
test_0899.txt |
AC |
1802 ms |
3836 KiB |
test_0900.txt |
AC |
1803 ms |
3964 KiB |
test_0901.txt |
AC |
1810 ms |
4148 KiB |
test_0902.txt |
AC |
1805 ms |
4204 KiB |
test_0903.txt |
AC |
1806 ms |
4040 KiB |
test_0904.txt |
AC |
1806 ms |
4120 KiB |
test_0905.txt |
AC |
1802 ms |
4072 KiB |
test_0906.txt |
AC |
1804 ms |
4112 KiB |
test_0907.txt |
AC |
1802 ms |
3880 KiB |
test_0908.txt |
AC |
1802 ms |
3964 KiB |
test_0909.txt |
AC |
1803 ms |
4108 KiB |
test_0910.txt |
AC |
1807 ms |
4108 KiB |
test_0911.txt |
AC |
1802 ms |
4104 KiB |
test_0912.txt |
AC |
1804 ms |
4120 KiB |
test_0913.txt |
AC |
1810 ms |
4120 KiB |
test_0914.txt |
AC |
1802 ms |
4016 KiB |
test_0915.txt |
AC |
1803 ms |
4048 KiB |
test_0916.txt |
AC |
1802 ms |
3856 KiB |
test_0917.txt |
AC |
1806 ms |
4104 KiB |
test_0918.txt |
AC |
1802 ms |
4112 KiB |
test_0919.txt |
AC |
1803 ms |
4152 KiB |
test_0920.txt |
AC |
1813 ms |
4100 KiB |
test_0921.txt |
AC |
1802 ms |
4068 KiB |
test_0922.txt |
AC |
1805 ms |
4076 KiB |
test_0923.txt |
AC |
1804 ms |
4028 KiB |
test_0924.txt |
AC |
1806 ms |
4152 KiB |
test_0925.txt |
AC |
1802 ms |
4084 KiB |
test_0926.txt |
AC |
1802 ms |
4072 KiB |
test_0927.txt |
AC |
1802 ms |
4168 KiB |
test_0928.txt |
AC |
1804 ms |
4032 KiB |
test_0929.txt |
AC |
1802 ms |
3996 KiB |
test_0930.txt |
AC |
1812 ms |
4192 KiB |
test_0931.txt |
AC |
1802 ms |
4176 KiB |
test_0932.txt |
AC |
1807 ms |
4172 KiB |
test_0933.txt |
AC |
1803 ms |
4080 KiB |
test_0934.txt |
AC |
1802 ms |
4196 KiB |
test_0935.txt |
AC |
1802 ms |
3948 KiB |
test_0936.txt |
AC |
1802 ms |
4148 KiB |
test_0937.txt |
AC |
1804 ms |
4048 KiB |
test_0938.txt |
AC |
1802 ms |
3980 KiB |
test_0939.txt |
AC |
1810 ms |
4156 KiB |
test_0940.txt |
AC |
1803 ms |
3952 KiB |
test_0941.txt |
AC |
1806 ms |
4072 KiB |
test_0942.txt |
AC |
1805 ms |
3996 KiB |
test_0943.txt |
AC |
1806 ms |
4120 KiB |
test_0944.txt |
AC |
1803 ms |
4000 KiB |
test_0945.txt |
AC |
1807 ms |
4256 KiB |
test_0946.txt |
AC |
1802 ms |
4020 KiB |
test_0947.txt |
AC |
1802 ms |
4112 KiB |
test_0948.txt |
AC |
1803 ms |
4100 KiB |
test_0949.txt |
AC |
1802 ms |
3992 KiB |
test_0950.txt |
AC |
1802 ms |
4108 KiB |
test_0951.txt |
AC |
1802 ms |
4048 KiB |
test_0952.txt |
AC |
1803 ms |
3988 KiB |
test_0953.txt |
AC |
1802 ms |
3840 KiB |
test_0954.txt |
AC |
1807 ms |
4160 KiB |
test_0955.txt |
AC |
1803 ms |
4120 KiB |
test_0956.txt |
AC |
1802 ms |
3980 KiB |
test_0957.txt |
AC |
1802 ms |
3852 KiB |
test_0958.txt |
AC |
1802 ms |
4124 KiB |
test_0959.txt |
AC |
1809 ms |
4152 KiB |
test_0960.txt |
AC |
1802 ms |
3988 KiB |
test_0961.txt |
AC |
1803 ms |
4040 KiB |
test_0962.txt |
AC |
1804 ms |
4036 KiB |
test_0963.txt |
AC |
1805 ms |
4112 KiB |
test_0964.txt |
AC |
1807 ms |
4064 KiB |
test_0965.txt |
AC |
1813 ms |
4300 KiB |
test_0966.txt |
AC |
1807 ms |
4152 KiB |
test_0967.txt |
AC |
1802 ms |
3988 KiB |
test_0968.txt |
AC |
1810 ms |
4248 KiB |
test_0969.txt |
AC |
1809 ms |
4208 KiB |
test_0970.txt |
AC |
1804 ms |
4056 KiB |
test_0971.txt |
AC |
1803 ms |
4008 KiB |
test_0972.txt |
AC |
1804 ms |
3944 KiB |
test_0973.txt |
AC |
1805 ms |
4120 KiB |
test_0974.txt |
AC |
1812 ms |
4168 KiB |
test_0975.txt |
AC |
1803 ms |
4020 KiB |
test_0976.txt |
AC |
1803 ms |
3924 KiB |
test_0977.txt |
AC |
1802 ms |
4072 KiB |
test_0978.txt |
AC |
1803 ms |
3992 KiB |
test_0979.txt |
AC |
1803 ms |
4044 KiB |
test_0980.txt |
AC |
1802 ms |
4172 KiB |
test_0981.txt |
AC |
1803 ms |
4176 KiB |
test_0982.txt |
AC |
1802 ms |
3860 KiB |
test_0983.txt |
AC |
1803 ms |
4060 KiB |
test_0984.txt |
AC |
1803 ms |
4172 KiB |
test_0985.txt |
AC |
1807 ms |
4184 KiB |
test_0986.txt |
AC |
1807 ms |
4256 KiB |
test_0987.txt |
AC |
1810 ms |
4196 KiB |
test_0988.txt |
AC |
1805 ms |
4164 KiB |
test_0989.txt |
AC |
1803 ms |
4040 KiB |
test_0990.txt |
AC |
1802 ms |
3844 KiB |
test_0991.txt |
AC |
1805 ms |
4084 KiB |
test_0992.txt |
AC |
1802 ms |
4144 KiB |
test_0993.txt |
AC |
1803 ms |
4112 KiB |
test_0994.txt |
AC |
1806 ms |
4196 KiB |
test_0995.txt |
AC |
1802 ms |
4036 KiB |
test_0996.txt |
AC |
1803 ms |
4028 KiB |
test_0997.txt |
AC |
1804 ms |
4076 KiB |
test_0998.txt |
AC |
1805 ms |
4156 KiB |
test_0999.txt |
AC |
1808 ms |
4144 KiB |
test_1000.txt |
AC |
1802 ms |
4080 KiB |
test_1001.txt |
AC |
1817 ms |
4152 KiB |
test_1002.txt |
AC |
1802 ms |
3800 KiB |
test_1003.txt |
AC |
1803 ms |
4172 KiB |
test_1004.txt |
AC |
1812 ms |
4136 KiB |
test_1005.txt |
AC |
1802 ms |
4004 KiB |
test_1006.txt |
AC |
1804 ms |
4080 KiB |
test_1007.txt |
AC |
1805 ms |
4176 KiB |
test_1008.txt |
AC |
1812 ms |
4244 KiB |
test_1009.txt |
AC |
1808 ms |
4208 KiB |
test_1010.txt |
AC |
1803 ms |
4024 KiB |
test_1011.txt |
AC |
1804 ms |
4076 KiB |
test_1012.txt |
AC |
1811 ms |
4124 KiB |
test_1013.txt |
AC |
1802 ms |
4044 KiB |
test_1014.txt |
AC |
1806 ms |
4128 KiB |
test_1015.txt |
AC |
1811 ms |
4340 KiB |
test_1016.txt |
AC |
1803 ms |
4016 KiB |
test_1017.txt |
AC |
1807 ms |
4104 KiB |
test_1018.txt |
AC |
1806 ms |
4252 KiB |
test_1019.txt |
AC |
1804 ms |
4160 KiB |
test_1020.txt |
AC |
1804 ms |
4000 KiB |
test_1021.txt |
AC |
1802 ms |
4028 KiB |
test_1022.txt |
AC |
1808 ms |
4164 KiB |
test_1023.txt |
AC |
1803 ms |
3920 KiB |
test_1024.txt |
AC |
1802 ms |
3960 KiB |
test_1025.txt |
AC |
1802 ms |
4092 KiB |
test_1026.txt |
AC |
1805 ms |
4036 KiB |
test_1027.txt |
AC |
1810 ms |
4312 KiB |
test_1028.txt |
AC |
1803 ms |
4156 KiB |
test_1029.txt |
AC |
1802 ms |
3988 KiB |
test_1030.txt |
AC |
1802 ms |
4036 KiB |
test_1031.txt |
AC |
1802 ms |
3952 KiB |
test_1032.txt |
AC |
1803 ms |
4020 KiB |
test_1033.txt |
AC |
1805 ms |
4132 KiB |
test_1034.txt |
AC |
1817 ms |
4116 KiB |
test_1035.txt |
AC |
1807 ms |
4124 KiB |
test_1036.txt |
AC |
1804 ms |
4028 KiB |
test_1037.txt |
AC |
1802 ms |
4016 KiB |
test_1038.txt |
AC |
1812 ms |
4140 KiB |
test_1039.txt |
AC |
1804 ms |
4072 KiB |
test_1040.txt |
AC |
1803 ms |
4052 KiB |
test_1041.txt |
AC |
1802 ms |
3988 KiB |
test_1042.txt |
AC |
1809 ms |
4296 KiB |
test_1043.txt |
AC |
1803 ms |
3940 KiB |
test_1044.txt |
AC |
1802 ms |
4064 KiB |
test_1045.txt |
AC |
1802 ms |
3848 KiB |
test_1046.txt |
AC |
1803 ms |
4008 KiB |
test_1047.txt |
AC |
1810 ms |
4224 KiB |
test_1048.txt |
AC |
1812 ms |
4188 KiB |
test_1049.txt |
AC |
1805 ms |
4004 KiB |
test_1050.txt |
AC |
1802 ms |
4092 KiB |
test_1051.txt |
AC |
1803 ms |
4168 KiB |
test_1052.txt |
AC |
1804 ms |
4016 KiB |
test_1053.txt |
AC |
1814 ms |
4116 KiB |
test_1054.txt |
AC |
1803 ms |
4036 KiB |
test_1055.txt |
AC |
1805 ms |
4080 KiB |
test_1056.txt |
AC |
1804 ms |
3984 KiB |
test_1057.txt |
AC |
1809 ms |
4152 KiB |
test_1058.txt |
AC |
1805 ms |
4156 KiB |
test_1059.txt |
AC |
1803 ms |
4060 KiB |
test_1060.txt |
AC |
1802 ms |
4048 KiB |
test_1061.txt |
AC |
1806 ms |
4128 KiB |
test_1062.txt |
AC |
1805 ms |
4144 KiB |
test_1063.txt |
AC |
1803 ms |
4024 KiB |
test_1064.txt |
AC |
1803 ms |
4140 KiB |
test_1065.txt |
AC |
1802 ms |
3992 KiB |
test_1066.txt |
AC |
1807 ms |
4196 KiB |
test_1067.txt |
AC |
1803 ms |
3896 KiB |
test_1068.txt |
AC |
1802 ms |
3960 KiB |
test_1069.txt |
AC |
1804 ms |
4160 KiB |
test_1070.txt |
AC |
1802 ms |
4212 KiB |
test_1071.txt |
AC |
1803 ms |
4028 KiB |
test_1072.txt |
AC |
1802 ms |
4244 KiB |
test_1073.txt |
AC |
1803 ms |
4168 KiB |
test_1074.txt |
AC |
1806 ms |
4048 KiB |
test_1075.txt |
AC |
1812 ms |
4256 KiB |
test_1076.txt |
AC |
1802 ms |
4068 KiB |
test_1077.txt |
AC |
1805 ms |
4240 KiB |
test_1078.txt |
AC |
1802 ms |
3988 KiB |
test_1079.txt |
AC |
1808 ms |
4208 KiB |
test_1080.txt |
AC |
1805 ms |
4096 KiB |
test_1081.txt |
AC |
1802 ms |
4020 KiB |
test_1082.txt |
AC |
1802 ms |
3860 KiB |
test_1083.txt |
AC |
1803 ms |
3972 KiB |
test_1084.txt |
AC |
1805 ms |
4192 KiB |
test_1085.txt |
AC |
1806 ms |
4328 KiB |
test_1086.txt |
AC |
1805 ms |
4216 KiB |
test_1087.txt |
AC |
1804 ms |
4160 KiB |
test_1088.txt |
AC |
1808 ms |
4292 KiB |
test_1089.txt |
AC |
1802 ms |
4116 KiB |
test_1090.txt |
AC |
1802 ms |
3900 KiB |
test_1091.txt |
AC |
1813 ms |
4264 KiB |
test_1092.txt |
AC |
1811 ms |
4188 KiB |
test_1093.txt |
AC |
1802 ms |
4152 KiB |
test_1094.txt |
AC |
1802 ms |
4060 KiB |
test_1095.txt |
AC |
1807 ms |
4184 KiB |
test_1096.txt |
AC |
1802 ms |
3936 KiB |
test_1097.txt |
AC |
1808 ms |
4020 KiB |
test_1098.txt |
AC |
1805 ms |
4072 KiB |
test_1099.txt |
AC |
1802 ms |
4020 KiB |
test_1100.txt |
AC |
1809 ms |
4256 KiB |
test_1101.txt |
AC |
1802 ms |
3992 KiB |
test_1102.txt |
AC |
1807 ms |
4236 KiB |
test_1103.txt |
AC |
1804 ms |
4008 KiB |
test_1104.txt |
AC |
1804 ms |
4140 KiB |
test_1105.txt |
AC |
1802 ms |
3992 KiB |
test_1106.txt |
AC |
1803 ms |
4036 KiB |
test_1107.txt |
AC |
1813 ms |
4244 KiB |
test_1108.txt |
AC |
1802 ms |
3900 KiB |
test_1109.txt |
AC |
1803 ms |
4068 KiB |
test_1110.txt |
AC |
1809 ms |
4284 KiB |
test_1111.txt |
AC |
1802 ms |
4008 KiB |
test_1112.txt |
AC |
1802 ms |
4028 KiB |
test_1113.txt |
AC |
1809 ms |
4320 KiB |
test_1114.txt |
AC |
1805 ms |
4244 KiB |
test_1115.txt |
AC |
1803 ms |
3968 KiB |
test_1116.txt |
AC |
1802 ms |
4044 KiB |
test_1117.txt |
AC |
1804 ms |
4112 KiB |
test_1118.txt |
AC |
1806 ms |
4092 KiB |
test_1119.txt |
AC |
1802 ms |
4080 KiB |
test_1120.txt |
AC |
1802 ms |
4024 KiB |
test_1121.txt |
AC |
1802 ms |
4044 KiB |
test_1122.txt |
AC |
1806 ms |
4172 KiB |
test_1123.txt |
AC |
1802 ms |
3936 KiB |
test_1124.txt |
AC |
1813 ms |
4164 KiB |
test_1125.txt |
AC |
1804 ms |
4116 KiB |
test_1126.txt |
AC |
1805 ms |
4100 KiB |
test_1127.txt |
AC |
1802 ms |
3876 KiB |
test_1128.txt |
AC |
1803 ms |
3960 KiB |
test_1129.txt |
AC |
1803 ms |
4136 KiB |
test_1130.txt |
AC |
1806 ms |
4164 KiB |
test_1131.txt |
AC |
1803 ms |
3928 KiB |
test_1132.txt |
AC |
1802 ms |
3992 KiB |
test_1133.txt |
AC |
1805 ms |
4112 KiB |
test_1134.txt |
AC |
1804 ms |
4072 KiB |
test_1135.txt |
AC |
1808 ms |
4048 KiB |
test_1136.txt |
AC |
1805 ms |
4184 KiB |
test_1137.txt |
AC |
1803 ms |
3876 KiB |
test_1138.txt |
AC |
1802 ms |
3876 KiB |
test_1139.txt |
AC |
1809 ms |
4204 KiB |
test_1140.txt |
AC |
1804 ms |
4040 KiB |
test_1141.txt |
AC |
1804 ms |
4192 KiB |
test_1142.txt |
AC |
1802 ms |
3980 KiB |
test_1143.txt |
AC |
1803 ms |
4076 KiB |
test_1144.txt |
AC |
1802 ms |
3964 KiB |
test_1145.txt |
AC |
1806 ms |
4168 KiB |
test_1146.txt |
AC |
1809 ms |
4284 KiB |
test_1147.txt |
AC |
1804 ms |
4108 KiB |
test_1148.txt |
AC |
1804 ms |
4072 KiB |
test_1149.txt |
AC |
1807 ms |
4164 KiB |
test_1150.txt |
AC |
1808 ms |
4060 KiB |
test_1151.txt |
AC |
1802 ms |
3976 KiB |
test_1152.txt |
AC |
1807 ms |
4172 KiB |
test_1153.txt |
AC |
1808 ms |
4208 KiB |
test_1154.txt |
AC |
1812 ms |
4244 KiB |
test_1155.txt |
AC |
1815 ms |
4184 KiB |
test_1156.txt |
AC |
1804 ms |
4056 KiB |
test_1157.txt |
AC |
1817 ms |
4252 KiB |
test_1158.txt |
AC |
1803 ms |
4088 KiB |
test_1159.txt |
AC |
1805 ms |
4020 KiB |
test_1160.txt |
AC |
1804 ms |
4064 KiB |
test_1161.txt |
AC |
1802 ms |
3988 KiB |
test_1162.txt |
AC |
1802 ms |
4032 KiB |
test_1163.txt |
AC |
1802 ms |
4176 KiB |
test_1164.txt |
AC |
1802 ms |
4136 KiB |
test_1165.txt |
AC |
1803 ms |
4144 KiB |
test_1166.txt |
AC |
1802 ms |
4004 KiB |
test_1167.txt |
AC |
1802 ms |
4100 KiB |
test_1168.txt |
AC |
1802 ms |
3988 KiB |
test_1169.txt |
AC |
1806 ms |
4088 KiB |
test_1170.txt |
AC |
1804 ms |
4116 KiB |
test_1171.txt |
AC |
1802 ms |
4000 KiB |
test_1172.txt |
AC |
1816 ms |
4240 KiB |
test_1173.txt |
AC |
1806 ms |
4240 KiB |
test_1174.txt |
AC |
1807 ms |
4220 KiB |
test_1175.txt |
AC |
1802 ms |
3948 KiB |
test_1176.txt |
AC |
1807 ms |
4144 KiB |
test_1177.txt |
AC |
1812 ms |
4128 KiB |
test_1178.txt |
AC |
1809 ms |
4264 KiB |
test_1179.txt |
AC |
1811 ms |
4172 KiB |
test_1180.txt |
AC |
1808 ms |
4288 KiB |
test_1181.txt |
AC |
1802 ms |
4148 KiB |
test_1182.txt |
AC |
1806 ms |
4148 KiB |
test_1183.txt |
AC |
1807 ms |
4076 KiB |
test_1184.txt |
AC |
1802 ms |
3984 KiB |
test_1185.txt |
AC |
1803 ms |
3940 KiB |
test_1186.txt |
AC |
1812 ms |
4228 KiB |
test_1187.txt |
AC |
1802 ms |
3872 KiB |
test_1188.txt |
AC |
1804 ms |
4032 KiB |
test_1189.txt |
AC |
1805 ms |
4056 KiB |
test_1190.txt |
AC |
1810 ms |
4196 KiB |
test_1191.txt |
AC |
1802 ms |
3936 KiB |
test_1192.txt |
AC |
1802 ms |
4052 KiB |
test_1193.txt |
AC |
1806 ms |
4136 KiB |
test_1194.txt |
AC |
1803 ms |
4100 KiB |
test_1195.txt |
AC |
1802 ms |
4028 KiB |
test_1196.txt |
AC |
1803 ms |
4092 KiB |
test_1197.txt |
AC |
1802 ms |
4176 KiB |
test_1198.txt |
AC |
1803 ms |
4040 KiB |
test_1199.txt |
AC |
1807 ms |
4204 KiB |
test_1200.txt |
AC |
1804 ms |
4160 KiB |
test_1201.txt |
AC |
1805 ms |
4200 KiB |
test_1202.txt |
AC |
1805 ms |
4156 KiB |
test_1203.txt |
AC |
1805 ms |
4192 KiB |
test_1204.txt |
AC |
1804 ms |
4056 KiB |
test_1205.txt |
AC |
1802 ms |
4156 KiB |
test_1206.txt |
AC |
1802 ms |
4028 KiB |
test_1207.txt |
AC |
1803 ms |
3932 KiB |
test_1208.txt |
AC |
1803 ms |
4048 KiB |
test_1209.txt |
AC |
1805 ms |
4104 KiB |
test_1210.txt |
AC |
1805 ms |
4104 KiB |
test_1211.txt |
AC |
1805 ms |
4184 KiB |
test_1212.txt |
AC |
1814 ms |
4240 KiB |
test_1213.txt |
AC |
1802 ms |
4040 KiB |
test_1214.txt |
AC |
1802 ms |
4236 KiB |
test_1215.txt |
AC |
1802 ms |
3972 KiB |
test_1216.txt |
AC |
1805 ms |
4084 KiB |
test_1217.txt |
AC |
1802 ms |
4072 KiB |
test_1218.txt |
AC |
1805 ms |
4236 KiB |
test_1219.txt |
AC |
1802 ms |
4044 KiB |
test_1220.txt |
AC |
1820 ms |
4188 KiB |
test_1221.txt |
AC |
1802 ms |
4200 KiB |
test_1222.txt |
AC |
1802 ms |
4072 KiB |
test_1223.txt |
AC |
1804 ms |
3992 KiB |
test_1224.txt |
AC |
1805 ms |
4104 KiB |
test_1225.txt |
AC |
1804 ms |
4188 KiB |
test_1226.txt |
AC |
1803 ms |
4008 KiB |
test_1227.txt |
AC |
1803 ms |
3956 KiB |
test_1228.txt |
AC |
1804 ms |
4028 KiB |
test_1229.txt |
AC |
1806 ms |
4232 KiB |
test_1230.txt |
AC |
1803 ms |
4052 KiB |
test_1231.txt |
AC |
1802 ms |
3892 KiB |
test_1232.txt |
AC |
1812 ms |
4080 KiB |
test_1233.txt |
AC |
1803 ms |
4040 KiB |
test_1234.txt |
AC |
1802 ms |
4024 KiB |
test_1235.txt |
AC |
1806 ms |
4200 KiB |
test_1236.txt |
AC |
1803 ms |
4076 KiB |
test_1237.txt |
AC |
1802 ms |
4056 KiB |
test_1238.txt |
AC |
1802 ms |
3952 KiB |
test_1239.txt |
AC |
1802 ms |
3944 KiB |
test_1240.txt |
AC |
1803 ms |
3904 KiB |
test_1241.txt |
AC |
1802 ms |
4272 KiB |
test_1242.txt |
AC |
1804 ms |
4100 KiB |
test_1243.txt |
AC |
1803 ms |
3988 KiB |
test_1244.txt |
AC |
1807 ms |
4172 KiB |
test_1245.txt |
AC |
1802 ms |
4136 KiB |
test_1246.txt |
AC |
1803 ms |
4032 KiB |
test_1247.txt |
AC |
1811 ms |
4176 KiB |
test_1248.txt |
AC |
1805 ms |
4060 KiB |
test_1249.txt |
AC |
1803 ms |
3864 KiB |
test_1250.txt |
AC |
1802 ms |
3884 KiB |
test_1251.txt |
AC |
1802 ms |
3856 KiB |
test_1252.txt |
AC |
1803 ms |
3988 KiB |
test_1253.txt |
AC |
1802 ms |
3968 KiB |
test_1254.txt |
AC |
1803 ms |
4036 KiB |
test_1255.txt |
AC |
1803 ms |
4092 KiB |
test_1256.txt |
AC |
1802 ms |
4100 KiB |
test_1257.txt |
AC |
1804 ms |
4052 KiB |
test_1258.txt |
AC |
1805 ms |
4108 KiB |
test_1259.txt |
AC |
1802 ms |
3964 KiB |
test_1260.txt |
AC |
1810 ms |
4076 KiB |
test_1261.txt |
AC |
1802 ms |
3948 KiB |
test_1262.txt |
AC |
1804 ms |
4160 KiB |
test_1263.txt |
AC |
1802 ms |
3928 KiB |
test_1264.txt |
AC |
1802 ms |
3956 KiB |
test_1265.txt |
AC |
1802 ms |
3916 KiB |
test_1266.txt |
AC |
1805 ms |
4080 KiB |
test_1267.txt |
AC |
1802 ms |
3880 KiB |
test_1268.txt |
AC |
1812 ms |
4192 KiB |
test_1269.txt |
AC |
1807 ms |
4248 KiB |
test_1270.txt |
AC |
1811 ms |
4272 KiB |
test_1271.txt |
AC |
1802 ms |
4044 KiB |
test_1272.txt |
AC |
1812 ms |
4312 KiB |
test_1273.txt |
AC |
1802 ms |
3896 KiB |
test_1274.txt |
AC |
1809 ms |
4120 KiB |
test_1275.txt |
AC |
1803 ms |
3992 KiB |
test_1276.txt |
AC |
1804 ms |
4020 KiB |
test_1277.txt |
AC |
1802 ms |
4048 KiB |
test_1278.txt |
AC |
1803 ms |
3928 KiB |
test_1279.txt |
AC |
1802 ms |
3892 KiB |
test_1280.txt |
AC |
1810 ms |
4088 KiB |
test_1281.txt |
AC |
1802 ms |
4148 KiB |
test_1282.txt |
AC |
1803 ms |
3996 KiB |
test_1283.txt |
AC |
1802 ms |
4072 KiB |
test_1284.txt |
AC |
1802 ms |
4064 KiB |
test_1285.txt |
AC |
1802 ms |
4092 KiB |
test_1286.txt |
AC |
1815 ms |
4088 KiB |
test_1287.txt |
AC |
1802 ms |
3924 KiB |
test_1288.txt |
AC |
1810 ms |
4160 KiB |
test_1289.txt |
AC |
1802 ms |
4168 KiB |
test_1290.txt |
AC |
1802 ms |
3932 KiB |
test_1291.txt |
AC |
1807 ms |
4184 KiB |
test_1292.txt |
AC |
1803 ms |
4212 KiB |
test_1293.txt |
AC |
1802 ms |
3868 KiB |
test_1294.txt |
AC |
1808 ms |
4096 KiB |
test_1295.txt |
AC |
1802 ms |
3872 KiB |
test_1296.txt |
AC |
1809 ms |
4152 KiB |
test_1297.txt |
AC |
1803 ms |
3960 KiB |
test_1298.txt |
AC |
1805 ms |
4224 KiB |
test_1299.txt |
AC |
1802 ms |
3988 KiB |
test_1300.txt |
AC |
1804 ms |
4220 KiB |
test_1301.txt |
AC |
1808 ms |
4080 KiB |
test_1302.txt |
AC |
1804 ms |
4096 KiB |
test_1303.txt |
AC |
1811 ms |
4188 KiB |
test_1304.txt |
AC |
1807 ms |
4200 KiB |
test_1305.txt |
AC |
1808 ms |
4208 KiB |
test_1306.txt |
AC |
1808 ms |
4176 KiB |
test_1307.txt |
AC |
1802 ms |
4028 KiB |
test_1308.txt |
AC |
1809 ms |
4220 KiB |
test_1309.txt |
AC |
1811 ms |
4176 KiB |
test_1310.txt |
AC |
1802 ms |
3952 KiB |
test_1311.txt |
AC |
1803 ms |
4128 KiB |
test_1312.txt |
AC |
1803 ms |
4096 KiB |
test_1313.txt |
AC |
1804 ms |
3948 KiB |
test_1314.txt |
AC |
1813 ms |
4168 KiB |
test_1315.txt |
AC |
1805 ms |
3996 KiB |
test_1316.txt |
AC |
1806 ms |
4060 KiB |
test_1317.txt |
AC |
1802 ms |
4108 KiB |
test_1318.txt |
AC |
1802 ms |
4048 KiB |
test_1319.txt |
AC |
1802 ms |
4104 KiB |
test_1320.txt |
AC |
1811 ms |
4176 KiB |
test_1321.txt |
AC |
1802 ms |
3920 KiB |
test_1322.txt |
AC |
1802 ms |
3956 KiB |
test_1323.txt |
AC |
1802 ms |
4172 KiB |
test_1324.txt |
AC |
1805 ms |
4164 KiB |
test_1325.txt |
AC |
1823 ms |
4236 KiB |
test_1326.txt |
AC |
1802 ms |
4000 KiB |
test_1327.txt |
AC |
1804 ms |
4112 KiB |
test_1328.txt |
AC |
1802 ms |
4096 KiB |
test_1329.txt |
AC |
1802 ms |
4108 KiB |
test_1330.txt |
AC |
1802 ms |
3836 KiB |
test_1331.txt |
AC |
1814 ms |
4340 KiB |
test_1332.txt |
AC |
1805 ms |
4052 KiB |
test_1333.txt |
AC |
1803 ms |
4036 KiB |
test_1334.txt |
AC |
1802 ms |
3948 KiB |
test_1335.txt |
AC |
1809 ms |
4152 KiB |
test_1336.txt |
AC |
1802 ms |
3976 KiB |
test_1337.txt |
AC |
1813 ms |
4148 KiB |
test_1338.txt |
AC |
1805 ms |
4064 KiB |
test_1339.txt |
AC |
1802 ms |
4024 KiB |
test_1340.txt |
AC |
1805 ms |
4196 KiB |
test_1341.txt |
AC |
1802 ms |
4172 KiB |
test_1342.txt |
AC |
1804 ms |
4084 KiB |
test_1343.txt |
AC |
1803 ms |
4008 KiB |
test_1344.txt |
AC |
1802 ms |
4080 KiB |
test_1345.txt |
AC |
1805 ms |
4120 KiB |
test_1346.txt |
AC |
1802 ms |
3800 KiB |
test_1347.txt |
AC |
1811 ms |
4300 KiB |
test_1348.txt |
AC |
1802 ms |
4156 KiB |
test_1349.txt |
AC |
1809 ms |
4160 KiB |
test_1350.txt |
AC |
1806 ms |
4160 KiB |
test_1351.txt |
AC |
1807 ms |
4036 KiB |
test_1352.txt |
AC |
1809 ms |
4244 KiB |
test_1353.txt |
AC |
1802 ms |
3988 KiB |
test_1354.txt |
AC |
1807 ms |
4212 KiB |
test_1355.txt |
AC |
1804 ms |
4000 KiB |
test_1356.txt |
AC |
1802 ms |
3992 KiB |
test_1357.txt |
AC |
1803 ms |
3900 KiB |
test_1358.txt |
AC |
1803 ms |
3992 KiB |
test_1359.txt |
AC |
1802 ms |
3980 KiB |
test_1360.txt |
AC |
1802 ms |
3928 KiB |
test_1361.txt |
AC |
1814 ms |
4136 KiB |
test_1362.txt |
AC |
1802 ms |
3952 KiB |
test_1363.txt |
AC |
1806 ms |
4192 KiB |
test_1364.txt |
AC |
1802 ms |
4084 KiB |
test_1365.txt |
AC |
1804 ms |
4056 KiB |
test_1366.txt |
AC |
1802 ms |
3944 KiB |
test_1367.txt |
AC |
1804 ms |
4040 KiB |
test_1368.txt |
AC |
1802 ms |
3976 KiB |
test_1369.txt |
AC |
1808 ms |
4156 KiB |
test_1370.txt |
AC |
1802 ms |
4068 KiB |
test_1371.txt |
AC |
1802 ms |
4064 KiB |
test_1372.txt |
AC |
1802 ms |
4116 KiB |
test_1373.txt |
AC |
1803 ms |
3948 KiB |
test_1374.txt |
AC |
1803 ms |
4024 KiB |
test_1375.txt |
AC |
1803 ms |
3852 KiB |
test_1376.txt |
AC |
1804 ms |
4144 KiB |
test_1377.txt |
AC |
1804 ms |
4156 KiB |
test_1378.txt |
AC |
1808 ms |
4100 KiB |
test_1379.txt |
AC |
1802 ms |
4016 KiB |
test_1380.txt |
AC |
1804 ms |
4144 KiB |
test_1381.txt |
AC |
1802 ms |
4040 KiB |
test_1382.txt |
AC |
1805 ms |
4132 KiB |
test_1383.txt |
AC |
1811 ms |
4076 KiB |
test_1384.txt |
AC |
1804 ms |
4068 KiB |
test_1385.txt |
AC |
1809 ms |
4268 KiB |
test_1386.txt |
AC |
1804 ms |
4016 KiB |
test_1387.txt |
AC |
1810 ms |
4288 KiB |
test_1388.txt |
AC |
1804 ms |
3944 KiB |
test_1389.txt |
AC |
1805 ms |
4148 KiB |
test_1390.txt |
AC |
1805 ms |
4024 KiB |
test_1391.txt |
AC |
1810 ms |
4200 KiB |
test_1392.txt |
AC |
1802 ms |
3884 KiB |
test_1393.txt |
AC |
1802 ms |
4124 KiB |
test_1394.txt |
AC |
1805 ms |
3980 KiB |
test_1395.txt |
AC |
1802 ms |
4004 KiB |
test_1396.txt |
AC |
1802 ms |
4036 KiB |
test_1397.txt |
AC |
1805 ms |
4124 KiB |
test_1398.txt |
AC |
1817 ms |
4260 KiB |
test_1399.txt |
AC |
1803 ms |
3896 KiB |
test_1400.txt |
AC |
1804 ms |
4176 KiB |
test_1401.txt |
AC |
1802 ms |
4104 KiB |
test_1402.txt |
AC |
1807 ms |
4176 KiB |
test_1403.txt |
AC |
1811 ms |
4148 KiB |
test_1404.txt |
AC |
1802 ms |
3916 KiB |
test_1405.txt |
AC |
1808 ms |
4284 KiB |
test_1406.txt |
AC |
1806 ms |
4232 KiB |
test_1407.txt |
AC |
1810 ms |
4120 KiB |
test_1408.txt |
AC |
1803 ms |
3940 KiB |
test_1409.txt |
AC |
1802 ms |
4104 KiB |
test_1410.txt |
AC |
1802 ms |
4016 KiB |
test_1411.txt |
AC |
1802 ms |
3996 KiB |
test_1412.txt |
AC |
1804 ms |
4116 KiB |
test_1413.txt |
AC |
1802 ms |
3948 KiB |
test_1414.txt |
AC |
1810 ms |
4196 KiB |
test_1415.txt |
AC |
1808 ms |
4184 KiB |
test_1416.txt |
AC |
1808 ms |
4304 KiB |
test_1417.txt |
AC |
1811 ms |
4128 KiB |
test_1418.txt |
AC |
1802 ms |
4172 KiB |
test_1419.txt |
AC |
1808 ms |
4252 KiB |
test_1420.txt |
AC |
1804 ms |
4152 KiB |
test_1421.txt |
AC |
1802 ms |
4064 KiB |
test_1422.txt |
AC |
1812 ms |
4180 KiB |
test_1423.txt |
AC |
1803 ms |
3900 KiB |
test_1424.txt |
AC |
1802 ms |
4048 KiB |
test_1425.txt |
AC |
1802 ms |
3940 KiB |
test_1426.txt |
AC |
1813 ms |
4232 KiB |
test_1427.txt |
AC |
1802 ms |
3956 KiB |
test_1428.txt |
AC |
1816 ms |
4184 KiB |
test_1429.txt |
AC |
1802 ms |
3984 KiB |
test_1430.txt |
AC |
1804 ms |
4132 KiB |
test_1431.txt |
AC |
1811 ms |
4276 KiB |
test_1432.txt |
AC |
1802 ms |
3904 KiB |
test_1433.txt |
AC |
1813 ms |
4196 KiB |
test_1434.txt |
AC |
1802 ms |
3940 KiB |
test_1435.txt |
AC |
1808 ms |
4132 KiB |
test_1436.txt |
AC |
1802 ms |
3856 KiB |
test_1437.txt |
AC |
1802 ms |
4040 KiB |
test_1438.txt |
AC |
1807 ms |
4040 KiB |
test_1439.txt |
AC |
1802 ms |
3920 KiB |
test_1440.txt |
AC |
1804 ms |
4040 KiB |
test_1441.txt |
AC |
1809 ms |
4280 KiB |
test_1442.txt |
AC |
1810 ms |
4296 KiB |
test_1443.txt |
AC |
1803 ms |
3980 KiB |
test_1444.txt |
AC |
1806 ms |
4100 KiB |
test_1445.txt |
AC |
1803 ms |
4216 KiB |
test_1446.txt |
AC |
1803 ms |
3832 KiB |
test_1447.txt |
AC |
1803 ms |
4116 KiB |
test_1448.txt |
AC |
1807 ms |
4164 KiB |
test_1449.txt |
AC |
1809 ms |
4144 KiB |
test_1450.txt |
AC |
1802 ms |
3972 KiB |
test_1451.txt |
AC |
1804 ms |
4068 KiB |
test_1452.txt |
AC |
1805 ms |
4268 KiB |
test_1453.txt |
AC |
1804 ms |
4144 KiB |
test_1454.txt |
AC |
1803 ms |
4140 KiB |
test_1455.txt |
AC |
1805 ms |
4032 KiB |
test_1456.txt |
AC |
1809 ms |
4184 KiB |
test_1457.txt |
AC |
1803 ms |
3896 KiB |
test_1458.txt |
AC |
1802 ms |
4252 KiB |
test_1459.txt |
AC |
1802 ms |
4140 KiB |
test_1460.txt |
AC |
1810 ms |
4236 KiB |
test_1461.txt |
AC |
1803 ms |
3924 KiB |
test_1462.txt |
AC |
1804 ms |
4060 KiB |
test_1463.txt |
AC |
1804 ms |
4204 KiB |
test_1464.txt |
AC |
1802 ms |
4200 KiB |
test_1465.txt |
AC |
1806 ms |
4064 KiB |
test_1466.txt |
AC |
1811 ms |
4296 KiB |
test_1467.txt |
AC |
1808 ms |
4180 KiB |
test_1468.txt |
AC |
1803 ms |
4028 KiB |
test_1469.txt |
AC |
1803 ms |
4204 KiB |
test_1470.txt |
AC |
1802 ms |
4132 KiB |
test_1471.txt |
AC |
1802 ms |
3948 KiB |
test_1472.txt |
AC |
1805 ms |
4116 KiB |
test_1473.txt |
AC |
1803 ms |
4000 KiB |
test_1474.txt |
AC |
1814 ms |
4140 KiB |
test_1475.txt |
AC |
1803 ms |
4028 KiB |
test_1476.txt |
AC |
1808 ms |
4152 KiB |
test_1477.txt |
AC |
1803 ms |
4028 KiB |
test_1478.txt |
AC |
1802 ms |
3948 KiB |
test_1479.txt |
AC |
1804 ms |
4144 KiB |
test_1480.txt |
AC |
1803 ms |
4116 KiB |
test_1481.txt |
AC |
1804 ms |
4108 KiB |
test_1482.txt |
AC |
1803 ms |
3916 KiB |
test_1483.txt |
AC |
1810 ms |
4304 KiB |
test_1484.txt |
AC |
1803 ms |
4036 KiB |
test_1485.txt |
AC |
1807 ms |
4048 KiB |
test_1486.txt |
AC |
1812 ms |
4272 KiB |
test_1487.txt |
AC |
1812 ms |
4076 KiB |
test_1488.txt |
AC |
1808 ms |
4192 KiB |
test_1489.txt |
AC |
1808 ms |
4136 KiB |
test_1490.txt |
AC |
1802 ms |
4016 KiB |
test_1491.txt |
AC |
1805 ms |
4044 KiB |
test_1492.txt |
AC |
1806 ms |
4092 KiB |
test_1493.txt |
AC |
1802 ms |
3952 KiB |
test_1494.txt |
AC |
1810 ms |
4228 KiB |
test_1495.txt |
AC |
1805 ms |
4196 KiB |
test_1496.txt |
AC |
1803 ms |
4072 KiB |
test_1497.txt |
AC |
1802 ms |
4004 KiB |
test_1498.txt |
AC |
1816 ms |
4240 KiB |
test_1499.txt |
AC |
1802 ms |
4076 KiB |
test_1500.txt |
AC |
1805 ms |
3932 KiB |
test_1501.txt |
AC |
1806 ms |
4120 KiB |
test_1502.txt |
AC |
1803 ms |
4016 KiB |
test_1503.txt |
AC |
1802 ms |
3912 KiB |
test_1504.txt |
AC |
1816 ms |
4336 KiB |
test_1505.txt |
AC |
1806 ms |
4308 KiB |
test_1506.txt |
AC |
1804 ms |
4024 KiB |
test_1507.txt |
AC |
1804 ms |
3880 KiB |
test_1508.txt |
AC |
1803 ms |
3860 KiB |
test_1509.txt |
AC |
1802 ms |
3980 KiB |
test_1510.txt |
AC |
1803 ms |
3880 KiB |
test_1511.txt |
AC |
1805 ms |
3984 KiB |
test_1512.txt |
AC |
1813 ms |
4236 KiB |
test_1513.txt |
AC |
1805 ms |
4164 KiB |
test_1514.txt |
AC |
1802 ms |
4148 KiB |
test_1515.txt |
AC |
1802 ms |
4248 KiB |
test_1516.txt |
AC |
1805 ms |
3996 KiB |
test_1517.txt |
AC |
1802 ms |
3812 KiB |
test_1518.txt |
AC |
1802 ms |
4052 KiB |
test_1519.txt |
AC |
1803 ms |
3976 KiB |
test_1520.txt |
AC |
1802 ms |
3988 KiB |
test_1521.txt |
AC |
1804 ms |
4084 KiB |
test_1522.txt |
AC |
1814 ms |
4176 KiB |
test_1523.txt |
AC |
1804 ms |
4016 KiB |
test_1524.txt |
AC |
1806 ms |
4080 KiB |
test_1525.txt |
AC |
1802 ms |
4064 KiB |
test_1526.txt |
AC |
1802 ms |
4064 KiB |
test_1527.txt |
AC |
1804 ms |
4156 KiB |
test_1528.txt |
AC |
1804 ms |
4140 KiB |
test_1529.txt |
AC |
1802 ms |
3968 KiB |
test_1530.txt |
AC |
1804 ms |
4120 KiB |
test_1531.txt |
AC |
1803 ms |
3892 KiB |
test_1532.txt |
AC |
1802 ms |
4172 KiB |
test_1533.txt |
AC |
1816 ms |
4212 KiB |
test_1534.txt |
AC |
1816 ms |
4224 KiB |
test_1535.txt |
AC |
1803 ms |
4036 KiB |
test_1536.txt |
AC |
1802 ms |
4128 KiB |
test_1537.txt |
AC |
1802 ms |
4028 KiB |
test_1538.txt |
AC |
1803 ms |
4024 KiB |
test_1539.txt |
AC |
1802 ms |
3856 KiB |
test_1540.txt |
AC |
1802 ms |
3944 KiB |
test_1541.txt |
AC |
1804 ms |
4172 KiB |
test_1542.txt |
AC |
1802 ms |
3888 KiB |
test_1543.txt |
AC |
1805 ms |
4096 KiB |
test_1544.txt |
AC |
1807 ms |
4192 KiB |
test_1545.txt |
AC |
1807 ms |
4088 KiB |
test_1546.txt |
AC |
1807 ms |
4072 KiB |
test_1547.txt |
AC |
1808 ms |
4072 KiB |
test_1548.txt |
AC |
1808 ms |
4204 KiB |
test_1549.txt |
AC |
1806 ms |
4100 KiB |
test_1550.txt |
AC |
1802 ms |
4020 KiB |
test_1551.txt |
AC |
1803 ms |
3988 KiB |
test_1552.txt |
AC |
1805 ms |
3996 KiB |
test_1553.txt |
AC |
1806 ms |
4048 KiB |
test_1554.txt |
AC |
1803 ms |
3884 KiB |
test_1555.txt |
AC |
1806 ms |
4000 KiB |
test_1556.txt |
AC |
1802 ms |
4132 KiB |
test_1557.txt |
AC |
1802 ms |
4008 KiB |
test_1558.txt |
AC |
1814 ms |
4148 KiB |
test_1559.txt |
AC |
1803 ms |
4004 KiB |
test_1560.txt |
AC |
1802 ms |
4060 KiB |
test_1561.txt |
AC |
1806 ms |
4100 KiB |
test_1562.txt |
AC |
1803 ms |
4124 KiB |
test_1563.txt |
AC |
1807 ms |
4244 KiB |
test_1564.txt |
AC |
1802 ms |
3984 KiB |
test_1565.txt |
AC |
1803 ms |
4180 KiB |
test_1566.txt |
AC |
1804 ms |
4080 KiB |
test_1567.txt |
AC |
1805 ms |
4200 KiB |
test_1568.txt |
AC |
1802 ms |
3928 KiB |
test_1569.txt |
AC |
1809 ms |
4236 KiB |
test_1570.txt |
AC |
1803 ms |
3996 KiB |
test_1571.txt |
AC |
1814 ms |
4188 KiB |
test_1572.txt |
AC |
1802 ms |
3940 KiB |
test_1573.txt |
AC |
1803 ms |
3964 KiB |
test_1574.txt |
AC |
1805 ms |
4168 KiB |
test_1575.txt |
AC |
1811 ms |
4160 KiB |
test_1576.txt |
AC |
1805 ms |
4128 KiB |
test_1577.txt |
AC |
1804 ms |
4176 KiB |
test_1578.txt |
AC |
1803 ms |
4104 KiB |
test_1579.txt |
AC |
1808 ms |
4224 KiB |
test_1580.txt |
AC |
1803 ms |
3956 KiB |
test_1581.txt |
AC |
1802 ms |
4000 KiB |
test_1582.txt |
AC |
1802 ms |
3884 KiB |
test_1583.txt |
AC |
1802 ms |
4020 KiB |
test_1584.txt |
AC |
1802 ms |
3884 KiB |
test_1585.txt |
AC |
1802 ms |
3996 KiB |
test_1586.txt |
AC |
1803 ms |
3900 KiB |
test_1587.txt |
AC |
1803 ms |
3948 KiB |
test_1588.txt |
AC |
1802 ms |
3984 KiB |
test_1589.txt |
AC |
1808 ms |
4088 KiB |
test_1590.txt |
AC |
1806 ms |
4196 KiB |
test_1591.txt |
AC |
1804 ms |
3984 KiB |
test_1592.txt |
AC |
1803 ms |
4112 KiB |
test_1593.txt |
AC |
1805 ms |
4100 KiB |
test_1594.txt |
AC |
1811 ms |
4304 KiB |
test_1595.txt |
AC |
1810 ms |
4224 KiB |
test_1596.txt |
AC |
1802 ms |
3888 KiB |
test_1597.txt |
AC |
1820 ms |
4320 KiB |
test_1598.txt |
AC |
1807 ms |
4160 KiB |
test_1599.txt |
AC |
1806 ms |
4120 KiB |
test_1600.txt |
AC |
1807 ms |
4132 KiB |
test_1601.txt |
AC |
1806 ms |
4276 KiB |
test_1602.txt |
AC |
1804 ms |
3996 KiB |
test_1603.txt |
AC |
1803 ms |
3976 KiB |
test_1604.txt |
AC |
1803 ms |
3912 KiB |
test_1605.txt |
AC |
1804 ms |
3976 KiB |
test_1606.txt |
AC |
1802 ms |
3840 KiB |
test_1607.txt |
AC |
1804 ms |
4048 KiB |
test_1608.txt |
AC |
1805 ms |
4056 KiB |
test_1609.txt |
AC |
1802 ms |
4016 KiB |
test_1610.txt |
AC |
1803 ms |
4036 KiB |
test_1611.txt |
AC |
1802 ms |
3936 KiB |
test_1612.txt |
AC |
1802 ms |
4020 KiB |
test_1613.txt |
AC |
1802 ms |
3908 KiB |
test_1614.txt |
AC |
1815 ms |
4280 KiB |
test_1615.txt |
AC |
1809 ms |
4224 KiB |
test_1616.txt |
AC |
1807 ms |
4164 KiB |
test_1617.txt |
AC |
1802 ms |
4040 KiB |
test_1618.txt |
AC |
1814 ms |
4272 KiB |
test_1619.txt |
AC |
1806 ms |
4084 KiB |
test_1620.txt |
AC |
1803 ms |
4196 KiB |
test_1621.txt |
AC |
1802 ms |
4172 KiB |
test_1622.txt |
AC |
1805 ms |
4056 KiB |
test_1623.txt |
AC |
1810 ms |
4272 KiB |
test_1624.txt |
AC |
1803 ms |
3992 KiB |
test_1625.txt |
AC |
1802 ms |
3884 KiB |
test_1626.txt |
AC |
1804 ms |
3924 KiB |
test_1627.txt |
AC |
1803 ms |
4052 KiB |
test_1628.txt |
AC |
1805 ms |
4144 KiB |
test_1629.txt |
AC |
1813 ms |
4308 KiB |
test_1630.txt |
AC |
1802 ms |
3972 KiB |
test_1631.txt |
AC |
1802 ms |
4060 KiB |
test_1632.txt |
AC |
1803 ms |
3980 KiB |
test_1633.txt |
AC |
1807 ms |
4152 KiB |
test_1634.txt |
AC |
1805 ms |
4144 KiB |
test_1635.txt |
AC |
1802 ms |
3920 KiB |
test_1636.txt |
AC |
1803 ms |
4044 KiB |
test_1637.txt |
AC |
1808 ms |
4176 KiB |
test_1638.txt |
AC |
1806 ms |
4140 KiB |
test_1639.txt |
AC |
1802 ms |
3976 KiB |
test_1640.txt |
AC |
1817 ms |
4132 KiB |
test_1641.txt |
AC |
1806 ms |
4076 KiB |
test_1642.txt |
AC |
1802 ms |
3980 KiB |
test_1643.txt |
AC |
1808 ms |
4108 KiB |
test_1644.txt |
AC |
1803 ms |
4060 KiB |
test_1645.txt |
AC |
1804 ms |
4060 KiB |
test_1646.txt |
AC |
1807 ms |
4100 KiB |
test_1647.txt |
AC |
1802 ms |
4020 KiB |
test_1648.txt |
AC |
1808 ms |
4196 KiB |
test_1649.txt |
AC |
1802 ms |
4228 KiB |
test_1650.txt |
AC |
1803 ms |
4024 KiB |
test_1651.txt |
AC |
1803 ms |
4192 KiB |
test_1652.txt |
AC |
1808 ms |
4120 KiB |
test_1653.txt |
AC |
1813 ms |
4128 KiB |
test_1654.txt |
AC |
1810 ms |
4156 KiB |
test_1655.txt |
AC |
1807 ms |
4260 KiB |
test_1656.txt |
AC |
1804 ms |
4032 KiB |
test_1657.txt |
AC |
1802 ms |
4052 KiB |
test_1658.txt |
AC |
1813 ms |
4272 KiB |
test_1659.txt |
AC |
1802 ms |
4048 KiB |
test_1660.txt |
AC |
1814 ms |
4316 KiB |
test_1661.txt |
AC |
1802 ms |
4128 KiB |
test_1662.txt |
AC |
1802 ms |
4096 KiB |
test_1663.txt |
AC |
1804 ms |
4056 KiB |
test_1664.txt |
AC |
1802 ms |
3984 KiB |
test_1665.txt |
AC |
1802 ms |
4192 KiB |
test_1666.txt |
AC |
1808 ms |
4148 KiB |
test_1667.txt |
AC |
1805 ms |
4084 KiB |
test_1668.txt |
AC |
1817 ms |
4264 KiB |
test_1669.txt |
AC |
1803 ms |
3952 KiB |
test_1670.txt |
AC |
1804 ms |
4124 KiB |
test_1671.txt |
AC |
1806 ms |
4152 KiB |
test_1672.txt |
AC |
1803 ms |
4044 KiB |
test_1673.txt |
AC |
1802 ms |
4008 KiB |
test_1674.txt |
AC |
1803 ms |
3976 KiB |
test_1675.txt |
AC |
1803 ms |
4168 KiB |
test_1676.txt |
AC |
1808 ms |
4260 KiB |
test_1677.txt |
AC |
1804 ms |
3960 KiB |
test_1678.txt |
AC |
1807 ms |
4248 KiB |
test_1679.txt |
AC |
1804 ms |
4168 KiB |
test_1680.txt |
AC |
1806 ms |
4076 KiB |
test_1681.txt |
AC |
1804 ms |
3948 KiB |
test_1682.txt |
AC |
1802 ms |
4008 KiB |
test_1683.txt |
AC |
1802 ms |
3892 KiB |
test_1684.txt |
AC |
1804 ms |
4128 KiB |
test_1685.txt |
AC |
1802 ms |
4048 KiB |
test_1686.txt |
AC |
1805 ms |
4120 KiB |
test_1687.txt |
AC |
1806 ms |
4196 KiB |
test_1688.txt |
AC |
1802 ms |
3984 KiB |
test_1689.txt |
AC |
1805 ms |
4172 KiB |
test_1690.txt |
AC |
1803 ms |
3968 KiB |
test_1691.txt |
AC |
1806 ms |
4300 KiB |
test_1692.txt |
AC |
1807 ms |
4256 KiB |
test_1693.txt |
AC |
1802 ms |
4120 KiB |
test_1694.txt |
AC |
1802 ms |
3888 KiB |
test_1695.txt |
AC |
1804 ms |
3848 KiB |
test_1696.txt |
AC |
1810 ms |
4212 KiB |
test_1697.txt |
AC |
1802 ms |
3872 KiB |
test_1698.txt |
AC |
1802 ms |
4012 KiB |
test_1699.txt |
AC |
1805 ms |
4136 KiB |
test_1700.txt |
AC |
1802 ms |
4036 KiB |
test_1701.txt |
AC |
1805 ms |
4208 KiB |
test_1702.txt |
AC |
1804 ms |
4072 KiB |
test_1703.txt |
AC |
1804 ms |
3964 KiB |
test_1704.txt |
AC |
1805 ms |
4120 KiB |
test_1705.txt |
AC |
1804 ms |
3984 KiB |
test_1706.txt |
AC |
1809 ms |
4172 KiB |
test_1707.txt |
AC |
1804 ms |
4132 KiB |
test_1708.txt |
AC |
1802 ms |
3996 KiB |
test_1709.txt |
AC |
1803 ms |
3964 KiB |
test_1710.txt |
AC |
1803 ms |
4000 KiB |
test_1711.txt |
AC |
1811 ms |
4076 KiB |
test_1712.txt |
AC |
1802 ms |
3928 KiB |
test_1713.txt |
AC |
1803 ms |
4048 KiB |
test_1714.txt |
AC |
1802 ms |
4148 KiB |
test_1715.txt |
AC |
1805 ms |
3992 KiB |
test_1716.txt |
AC |
1806 ms |
4064 KiB |
test_1717.txt |
AC |
1804 ms |
4020 KiB |
test_1718.txt |
AC |
1805 ms |
4116 KiB |
test_1719.txt |
AC |
1811 ms |
4320 KiB |
test_1720.txt |
AC |
1802 ms |
4004 KiB |
test_1721.txt |
AC |
1804 ms |
4060 KiB |
test_1722.txt |
AC |
1802 ms |
3984 KiB |
test_1723.txt |
AC |
1803 ms |
4056 KiB |
test_1724.txt |
AC |
1802 ms |
3908 KiB |
test_1725.txt |
AC |
1803 ms |
4096 KiB |
test_1726.txt |
AC |
1802 ms |
3988 KiB |
test_1727.txt |
AC |
1805 ms |
4136 KiB |
test_1728.txt |
AC |
1802 ms |
4036 KiB |
test_1729.txt |
AC |
1802 ms |
4000 KiB |
test_1730.txt |
AC |
1802 ms |
3896 KiB |
test_1731.txt |
AC |
1802 ms |
4148 KiB |
test_1732.txt |
AC |
1802 ms |
4096 KiB |
test_1733.txt |
AC |
1804 ms |
3992 KiB |
test_1734.txt |
AC |
1806 ms |
4168 KiB |
test_1735.txt |
AC |
1811 ms |
4280 KiB |
test_1736.txt |
AC |
1802 ms |
4056 KiB |
test_1737.txt |
AC |
1803 ms |
4164 KiB |
test_1738.txt |
AC |
1804 ms |
4064 KiB |
test_1739.txt |
AC |
1803 ms |
4148 KiB |
test_1740.txt |
AC |
1802 ms |
4148 KiB |
test_1741.txt |
AC |
1803 ms |
4148 KiB |
test_1742.txt |
AC |
1809 ms |
4108 KiB |
test_1743.txt |
AC |
1806 ms |
4084 KiB |
test_1744.txt |
AC |
1803 ms |
4028 KiB |
test_1745.txt |
AC |
1803 ms |
3864 KiB |
test_1746.txt |
AC |
1803 ms |
4176 KiB |
test_1747.txt |
AC |
1802 ms |
4136 KiB |
test_1748.txt |
AC |
1802 ms |
3948 KiB |
test_1749.txt |
AC |
1807 ms |
4120 KiB |
test_1750.txt |
AC |
1806 ms |
4136 KiB |
test_1751.txt |
AC |
1802 ms |
3876 KiB |
test_1752.txt |
AC |
1807 ms |
4176 KiB |
test_1753.txt |
AC |
1813 ms |
4264 KiB |
test_1754.txt |
AC |
1802 ms |
3928 KiB |
test_1755.txt |
AC |
1802 ms |
3780 KiB |
test_1756.txt |
AC |
1802 ms |
4036 KiB |
test_1757.txt |
AC |
1807 ms |
4172 KiB |
test_1758.txt |
AC |
1802 ms |
4024 KiB |
test_1759.txt |
AC |
1803 ms |
4092 KiB |
test_1760.txt |
AC |
1804 ms |
4132 KiB |
test_1761.txt |
AC |
1808 ms |
4160 KiB |
test_1762.txt |
AC |
1802 ms |
4020 KiB |
test_1763.txt |
AC |
1802 ms |
4036 KiB |
test_1764.txt |
AC |
1803 ms |
4112 KiB |
test_1765.txt |
AC |
1804 ms |
3948 KiB |
test_1766.txt |
AC |
1805 ms |
4052 KiB |
test_1767.txt |
AC |
1809 ms |
4200 KiB |
test_1768.txt |
AC |
1804 ms |
4032 KiB |
test_1769.txt |
AC |
1802 ms |
3964 KiB |
test_1770.txt |
AC |
1802 ms |
3964 KiB |
test_1771.txt |
AC |
1802 ms |
3932 KiB |
test_1772.txt |
AC |
1804 ms |
3988 KiB |
test_1773.txt |
AC |
1808 ms |
4240 KiB |
test_1774.txt |
AC |
1803 ms |
4140 KiB |
test_1775.txt |
AC |
1806 ms |
4236 KiB |
test_1776.txt |
AC |
1802 ms |
3900 KiB |
test_1777.txt |
AC |
1804 ms |
4040 KiB |
test_1778.txt |
AC |
1803 ms |
4008 KiB |
test_1779.txt |
AC |
1804 ms |
4020 KiB |
test_1780.txt |
AC |
1807 ms |
3936 KiB |
test_1781.txt |
AC |
1803 ms |
4188 KiB |
test_1782.txt |
AC |
1805 ms |
4192 KiB |
test_1783.txt |
AC |
1810 ms |
4292 KiB |
test_1784.txt |
AC |
1802 ms |
3880 KiB |
test_1785.txt |
AC |
1802 ms |
3972 KiB |
test_1786.txt |
AC |
1811 ms |
4188 KiB |
test_1787.txt |
AC |
1802 ms |
3956 KiB |
test_1788.txt |
AC |
1804 ms |
4148 KiB |
test_1789.txt |
AC |
1802 ms |
3992 KiB |
test_1790.txt |
AC |
1809 ms |
4232 KiB |
test_1791.txt |
AC |
1802 ms |
3848 KiB |
test_1792.txt |
AC |
1802 ms |
3956 KiB |
test_1793.txt |
AC |
1805 ms |
4072 KiB |
test_1794.txt |
AC |
1804 ms |
4092 KiB |
test_1795.txt |
AC |
1808 ms |
4096 KiB |
test_1796.txt |
AC |
1802 ms |
4100 KiB |
test_1797.txt |
AC |
1802 ms |
4164 KiB |
test_1798.txt |
AC |
1806 ms |
4088 KiB |
test_1799.txt |
AC |
1802 ms |
3880 KiB |
test_1800.txt |
AC |
1806 ms |
4160 KiB |
test_1801.txt |
AC |
1807 ms |
4140 KiB |
test_1802.txt |
AC |
1810 ms |
4208 KiB |
test_1803.txt |
AC |
1803 ms |
3992 KiB |
test_1804.txt |
AC |
1802 ms |
3908 KiB |
test_1805.txt |
AC |
1804 ms |
4096 KiB |
test_1806.txt |
AC |
1802 ms |
4012 KiB |
test_1807.txt |
AC |
1803 ms |
4020 KiB |
test_1808.txt |
AC |
1806 ms |
4164 KiB |
test_1809.txt |
AC |
1816 ms |
4144 KiB |
test_1810.txt |
AC |
1803 ms |
3900 KiB |
test_1811.txt |
AC |
1810 ms |
4204 KiB |
test_1812.txt |
AC |
1803 ms |
4032 KiB |
test_1813.txt |
AC |
1811 ms |
4304 KiB |
test_1814.txt |
AC |
1808 ms |
4236 KiB |
test_1815.txt |
AC |
1805 ms |
3984 KiB |
test_1816.txt |
AC |
1804 ms |
4032 KiB |
test_1817.txt |
AC |
1802 ms |
3804 KiB |
test_1818.txt |
AC |
1813 ms |
4172 KiB |
test_1819.txt |
AC |
1809 ms |
4120 KiB |
test_1820.txt |
AC |
1805 ms |
4056 KiB |
test_1821.txt |
AC |
1804 ms |
3984 KiB |
test_1822.txt |
AC |
1802 ms |
3928 KiB |
test_1823.txt |
AC |
1802 ms |
4164 KiB |
test_1824.txt |
AC |
1803 ms |
4116 KiB |
test_1825.txt |
AC |
1803 ms |
4108 KiB |
test_1826.txt |
AC |
1802 ms |
4108 KiB |
test_1827.txt |
AC |
1807 ms |
4072 KiB |
test_1828.txt |
AC |
1808 ms |
4136 KiB |
test_1829.txt |
AC |
1803 ms |
3968 KiB |
test_1830.txt |
AC |
1802 ms |
4260 KiB |
test_1831.txt |
AC |
1802 ms |
3888 KiB |
test_1832.txt |
AC |
1812 ms |
4256 KiB |
test_1833.txt |
AC |
1803 ms |
3940 KiB |
test_1834.txt |
AC |
1805 ms |
4140 KiB |
test_1835.txt |
AC |
1813 ms |
4220 KiB |
test_1836.txt |
AC |
1805 ms |
4172 KiB |
test_1837.txt |
AC |
1802 ms |
4096 KiB |
test_1838.txt |
AC |
1803 ms |
3892 KiB |
test_1839.txt |
AC |
1811 ms |
4256 KiB |
test_1840.txt |
AC |
1802 ms |
4092 KiB |
test_1841.txt |
AC |
1805 ms |
4168 KiB |
test_1842.txt |
AC |
1804 ms |
4012 KiB |
test_1843.txt |
AC |
1813 ms |
4264 KiB |
test_1844.txt |
AC |
1804 ms |
3844 KiB |
test_1845.txt |
AC |
1802 ms |
4000 KiB |
test_1846.txt |
AC |
1803 ms |
4020 KiB |
test_1847.txt |
AC |
1802 ms |
3968 KiB |
test_1848.txt |
AC |
1807 ms |
4216 KiB |
test_1849.txt |
AC |
1802 ms |
4048 KiB |
test_1850.txt |
AC |
1809 ms |
4116 KiB |
test_1851.txt |
AC |
1803 ms |
3976 KiB |
test_1852.txt |
AC |
1802 ms |
4148 KiB |
test_1853.txt |
AC |
1802 ms |
4136 KiB |
test_1854.txt |
AC |
1803 ms |
4012 KiB |
test_1855.txt |
AC |
1804 ms |
4036 KiB |
test_1856.txt |
AC |
1812 ms |
4240 KiB |
test_1857.txt |
AC |
1802 ms |
4084 KiB |
test_1858.txt |
AC |
1806 ms |
4088 KiB |
test_1859.txt |
AC |
1802 ms |
4020 KiB |
test_1860.txt |
AC |
1802 ms |
3936 KiB |
test_1861.txt |
AC |
1802 ms |
3992 KiB |
test_1862.txt |
AC |
1803 ms |
4008 KiB |
test_1863.txt |
AC |
1803 ms |
4004 KiB |
test_1864.txt |
AC |
1808 ms |
4140 KiB |
test_1865.txt |
AC |
1803 ms |
3896 KiB |
test_1866.txt |
AC |
1805 ms |
4020 KiB |
test_1867.txt |
AC |
1802 ms |
3944 KiB |
test_1868.txt |
AC |
1803 ms |
4192 KiB |
test_1869.txt |
AC |
1807 ms |
4188 KiB |
test_1870.txt |
AC |
1809 ms |
4268 KiB |
test_1871.txt |
AC |
1811 ms |
4152 KiB |
test_1872.txt |
AC |
1802 ms |
4116 KiB |
test_1873.txt |
AC |
1803 ms |
4200 KiB |
test_1874.txt |
AC |
1803 ms |
3968 KiB |
test_1875.txt |
AC |
1806 ms |
4200 KiB |
test_1876.txt |
AC |
1802 ms |
4136 KiB |
test_1877.txt |
AC |
1802 ms |
3916 KiB |
test_1878.txt |
AC |
1808 ms |
4128 KiB |
test_1879.txt |
AC |
1803 ms |
4120 KiB |
test_1880.txt |
AC |
1807 ms |
4168 KiB |
test_1881.txt |
AC |
1807 ms |
4136 KiB |
test_1882.txt |
AC |
1809 ms |
4196 KiB |
test_1883.txt |
AC |
1806 ms |
4148 KiB |
test_1884.txt |
AC |
1811 ms |
4244 KiB |
test_1885.txt |
AC |
1805 ms |
3988 KiB |
test_1886.txt |
AC |
1805 ms |
4160 KiB |
test_1887.txt |
AC |
1808 ms |
4064 KiB |
test_1888.txt |
AC |
1802 ms |
3948 KiB |
test_1889.txt |
AC |
1803 ms |
3896 KiB |
test_1890.txt |
AC |
1809 ms |
4120 KiB |
test_1891.txt |
AC |
1806 ms |
4236 KiB |
test_1892.txt |
AC |
1802 ms |
3808 KiB |
test_1893.txt |
AC |
1802 ms |
3964 KiB |
test_1894.txt |
AC |
1802 ms |
4176 KiB |
test_1895.txt |
AC |
1808 ms |
4192 KiB |
test_1896.txt |
AC |
1802 ms |
3876 KiB |
test_1897.txt |
AC |
1807 ms |
4100 KiB |
test_1898.txt |
AC |
1808 ms |
4248 KiB |
test_1899.txt |
AC |
1805 ms |
4172 KiB |
test_1900.txt |
AC |
1807 ms |
4124 KiB |
test_1901.txt |
AC |
1804 ms |
4024 KiB |
test_1902.txt |
AC |
1806 ms |
4028 KiB |
test_1903.txt |
AC |
1805 ms |
4048 KiB |
test_1904.txt |
AC |
1808 ms |
4164 KiB |
test_1905.txt |
AC |
1802 ms |
4120 KiB |
test_1906.txt |
AC |
1804 ms |
4080 KiB |
test_1907.txt |
AC |
1803 ms |
4008 KiB |
test_1908.txt |
AC |
1809 ms |
4204 KiB |
test_1909.txt |
AC |
1804 ms |
3984 KiB |
test_1910.txt |
AC |
1815 ms |
4256 KiB |
test_1911.txt |
AC |
1806 ms |
4056 KiB |
test_1912.txt |
AC |
1803 ms |
4052 KiB |
test_1913.txt |
AC |
1802 ms |
3852 KiB |
test_1914.txt |
AC |
1802 ms |
3940 KiB |
test_1915.txt |
AC |
1808 ms |
4028 KiB |
test_1916.txt |
AC |
1802 ms |
4024 KiB |
test_1917.txt |
AC |
1802 ms |
4084 KiB |
test_1918.txt |
AC |
1819 ms |
4304 KiB |
test_1919.txt |
AC |
1803 ms |
4080 KiB |
test_1920.txt |
AC |
1806 ms |
4160 KiB |
test_1921.txt |
AC |
1809 ms |
4148 KiB |
test_1922.txt |
AC |
1805 ms |
4000 KiB |
test_1923.txt |
AC |
1808 ms |
4160 KiB |
test_1924.txt |
AC |
1806 ms |
4224 KiB |
test_1925.txt |
AC |
1803 ms |
3968 KiB |
test_1926.txt |
AC |
1803 ms |
3964 KiB |
test_1927.txt |
AC |
1804 ms |
4016 KiB |
test_1928.txt |
AC |
1802 ms |
4040 KiB |
test_1929.txt |
AC |
1802 ms |
3968 KiB |
test_1930.txt |
AC |
1818 ms |
4316 KiB |
test_1931.txt |
AC |
1813 ms |
4300 KiB |
test_1932.txt |
AC |
1807 ms |
4180 KiB |
test_1933.txt |
AC |
1802 ms |
4060 KiB |
test_1934.txt |
AC |
1802 ms |
4088 KiB |
test_1935.txt |
AC |
1803 ms |
4104 KiB |
test_1936.txt |
AC |
1809 ms |
4288 KiB |
test_1937.txt |
AC |
1802 ms |
4148 KiB |
test_1938.txt |
AC |
1803 ms |
4272 KiB |
test_1939.txt |
AC |
1802 ms |
4016 KiB |
test_1940.txt |
AC |
1808 ms |
4248 KiB |
test_1941.txt |
AC |
1807 ms |
4128 KiB |
test_1942.txt |
AC |
1803 ms |
4100 KiB |
test_1943.txt |
AC |
1804 ms |
4104 KiB |
test_1944.txt |
AC |
1803 ms |
4136 KiB |
test_1945.txt |
AC |
1804 ms |
4092 KiB |
test_1946.txt |
AC |
1803 ms |
3992 KiB |
test_1947.txt |
AC |
1804 ms |
3996 KiB |
test_1948.txt |
AC |
1802 ms |
4012 KiB |
test_1949.txt |
AC |
1802 ms |
4116 KiB |
test_1950.txt |
AC |
1802 ms |
3908 KiB |
test_1951.txt |
AC |
1803 ms |
4116 KiB |
test_1952.txt |
AC |
1803 ms |
3988 KiB |
test_1953.txt |
AC |
1802 ms |
4092 KiB |
test_1954.txt |
AC |
1803 ms |
3936 KiB |
test_1955.txt |
AC |
1810 ms |
4064 KiB |
test_1956.txt |
AC |
1815 ms |
4176 KiB |
test_1957.txt |
AC |
1804 ms |
4088 KiB |
test_1958.txt |
AC |
1803 ms |
4084 KiB |
test_1959.txt |
AC |
1811 ms |
4252 KiB |
test_1960.txt |
AC |
1807 ms |
4180 KiB |
test_1961.txt |
AC |
1812 ms |
4108 KiB |
test_1962.txt |
AC |
1802 ms |
4228 KiB |
test_1963.txt |
AC |
1806 ms |
4136 KiB |
test_1964.txt |
AC |
1805 ms |
4068 KiB |
test_1965.txt |
AC |
1803 ms |
4084 KiB |
test_1966.txt |
AC |
1802 ms |
4088 KiB |
test_1967.txt |
AC |
1803 ms |
4044 KiB |
test_1968.txt |
AC |
1802 ms |
3988 KiB |
test_1969.txt |
AC |
1804 ms |
3960 KiB |
test_1970.txt |
AC |
1803 ms |
3892 KiB |
test_1971.txt |
AC |
1810 ms |
4188 KiB |
test_1972.txt |
AC |
1803 ms |
4096 KiB |
test_1973.txt |
AC |
1802 ms |
4216 KiB |
test_1974.txt |
AC |
1805 ms |
4052 KiB |
test_1975.txt |
AC |
1807 ms |
4216 KiB |
test_1976.txt |
AC |
1802 ms |
4028 KiB |
test_1977.txt |
AC |
1802 ms |
3852 KiB |
test_1978.txt |
AC |
1804 ms |
4084 KiB |
test_1979.txt |
AC |
1806 ms |
4076 KiB |
test_1980.txt |
AC |
1803 ms |
4096 KiB |
test_1981.txt |
AC |
1802 ms |
4088 KiB |
test_1982.txt |
AC |
1811 ms |
4164 KiB |
test_1983.txt |
AC |
1810 ms |
4092 KiB |
test_1984.txt |
AC |
1804 ms |
4140 KiB |
test_1985.txt |
AC |
1805 ms |
4176 KiB |
test_1986.txt |
AC |
1809 ms |
4312 KiB |
test_1987.txt |
AC |
1807 ms |
4300 KiB |
test_1988.txt |
AC |
1803 ms |
3900 KiB |
test_1989.txt |
AC |
1809 ms |
4124 KiB |
test_1990.txt |
AC |
1806 ms |
4244 KiB |
test_1991.txt |
AC |
1803 ms |
3984 KiB |
test_1992.txt |
AC |
1804 ms |
4176 KiB |
test_1993.txt |
AC |
1804 ms |
3996 KiB |
test_1994.txt |
AC |
1807 ms |
4216 KiB |
test_1995.txt |
AC |
1804 ms |
4052 KiB |
test_1996.txt |
AC |
1802 ms |
3872 KiB |
test_1997.txt |
AC |
1813 ms |
4264 KiB |
test_1998.txt |
AC |
1802 ms |
3964 KiB |
test_1999.txt |
AC |
1804 ms |
4056 KiB |