提出 #68414518
ソースコード 拡げる
// AHC051 A - Probabilistic Waste Sorting
// S-snake + corridor pruning. Devices connect only from recovery lanes (lane%4 in {1,2}).
// If crossings are detected, retry with fewer lanes (wider lanes). Guaranteed valid fallback.
//
// Compile: g++ -O2 -std=gnu++17 main.cpp
#include <bits/stdc++.h>
using namespace std;
static const int WIDTH = 10000;
static const int HEIGHT = 10000;
// ================= Geometry =================
struct P{ int x,y; };
static inline int sgn(long long v){ return (v>0)-(v<0); }
static inline int orient(const P& a,const P& b,const P& c){
long long cr = 1LL*(b.x-a.x)*(c.y-a.y) - 1LL*(b.y-a.y)*(c.x-a.x);
return sgn(cr); // >0: left
}
static inline bool on_seg(const P& a,const P& b,const P& c){
return min(a.x,b.x)<=c.x && c.x<=max(a.x,b.x) &&
min(a.y,b.y)<=c.y && c.y<=max(a.y,b.y);
}
static inline bool bbox_disjoint(const P& p1,const P& p2,const P& q1,const P& q2){
if(max(p1.x,p2.x) < min(q1.x,q2.x)) return true;
if(max(q1.x,q2.x) < min(p1.x,p2.x)) return true;
if(max(p1.y,p2.y) < min(q1.y,q2.y)) return true;
if(max(q1.y,q2.y) < min(p1.y,p2.y)) return true;
return false;
}
static inline bool segments_intersect(const P& p1,const P& q1,const P& p2,const P& q2,bool allow_touch=true){
if(bbox_disjoint(p1,q1,p2,q2)) return false;
int o1=orient(p1,q1,p2), o2=orient(p1,q1,q2);
int o3=orient(p2,q2,p1), o4=orient(p2,q2,q1);
if(o1*o2<0 && o3*o4<0) return true;
if(!allow_touch){
if(o1==0 && on_seg(p1,q1,p2)) return true;
if(o2==0 && on_seg(p1,q1,q2)) return true;
if(o3==0 && on_seg(p2,q2,p1)) return true;
if(o4==0 && on_seg(p2,q2,p1)) return true;
}
return false;
}
static inline uint64_t key64(const P& a){ return (uint64_t(uint32_t(a.x))<<32) | uint32_t(a.y); }
// ================= Plan container =================
struct Plan{
vector<int> d; // device assignment (0..N-1 identity)
int s; // start destination node id
vector<string> lines; // M lines for splitters
vector<pair<P,P>> segments; // all conveyor segments for validation
bool ok = false;
};
// ---- reachability (for cycle check) ---------------------------------
static bool path_exists(const vector<vector<int>>& G, int s, int t){
if(s==t) return true;
int n=(int)G.size();
vector<char> vis(n,0);
std::stack<int> st; st.push(s); vis[s]=1;
while(!st.empty()){
int u=st.top(); st.pop();
for(int v:G[u]){
if(!vis[v]){
if(v==t) return true;
vis[v]=1; st.push(v);
}
}
}
return false;
}
// ---- add arc if valid: outdeg≤2 / no crossing / no cycle ------------
static bool add_arc_if_valid(
int u, int v,
const vector<P>& sor,
vector<vector<int>>& G,
vector<int>& outdeg,
vector<pair<P,P>>& all_segments
){
if(u==v) return false;
if(outdeg[u] >= 2) return false; // splitter 2本まで
if(path_exists(G, v, u)) return false; // u<-...-v が既にある → 閉路
const P pu = sor[u], pv = sor[v];
// 交差チェック(端点共有はOK)
auto same = [](const P& a,const P& b){ return a.x==b.x && a.y==b.y; };
for(const auto& e: all_segments){
const P& a=e.first; const P& b=e.second;
if( same(a,pu)||same(a,pv)||same(b,pu)||same(b,pv) ) continue;
if(segments_intersect(pu,pv,a,b,true)) return false;
}
// 採用
G[u].push_back(v);
outdeg[u]++;
all_segments.push_back({pu,pv});
return true;
}
// ---- 同一レーンを S字で向き付け & レーン間ブリッジ -------------------
static void add_snake_same_lane_and_bridges(
const vector<vector<int>>& lanes,
const vector<P>& sor,
vector<vector<int>>& G,
vector<int>& outdeg,
vector<pair<P,P>>& all_segments
){
const int B = (int)lanes.size();
// レーン i の並び(i 偶数: 左→右, i 奇数: 右→左)
vector<vector<int>> dir_ids(B);
for(int i=0;i<B;i++){
dir_ids[i] = lanes[i];
sort(dir_ids[i].begin(), dir_ids[i].end(),
[&](int a,int b){ return sor[a].x < sor[b].x; });
if(i%2==1) reverse(dir_ids[i].begin(), dir_ids[i].end()); // S字
}
// (1) 同一レーン内:隣接を i の方向に張る
for(int i=0;i<B;i++){
auto &ids = dir_ids[i];
for(int t=0;t+1<(int)ids.size();++t){
int u = ids[t], v = ids[t+1];
add_arc_if_valid(u, v, sor, G, outdeg, all_segments);
}
}
// (2) レーン間ブリッジ:i の末端 -> (i+1) の始端(同じ側)を優先して1本
for(int i=0;i+1<B;i++){
if(dir_ids[i].empty() || dir_ids[i+1].empty()) continue;
int u = dir_ids[i].back(); // レーン i の終点
int v = dir_ids[i+1].front(); // レーン i+1 の始点(折り返し)
add_arc_if_valid(u, v, sor, G, outdeg, all_segments);
}
}
// ================= Builder =================
struct Builder {
// ------- fields -------
int N, M, K, B;
const vector<P>& dev;
const vector<P>& sor;
const P START{0, 5000};
// ------- ctor -------
Builder(int N, int M, int K, int B,
const vector<P>& d, const vector<P>& s)
: N(N), M(M), K(K), B(B), dev(d), sor(s) {}
// ------- lane helpers -------
inline int band_y(int y) const {
int denom = max(1, HEIGHT / B);
int li = y / denom;
if (li < 0) li = 0;
if (li >= B) li = B - 1;
return li;
}
inline bool is_recovery(int li) const { return (li % 4) == 1 || (li % 4) == 2; }
private:
// ===== 層間ペア枝ユーティリティ =====
bool has_path_in_G_(int s, int t, const vector<vector<int>>& G) const {
vector<char> vis(M, 0);
stack<int> st;
st.push(s);
vis[s] = 1;
while (!st.empty()) {
int u = st.top(); st.pop();
if (u == t) return true;
for (int v : G[u]) if (!vis[v]) { vis[v] = 1; st.push(v); }
}
return false;
}
bool try_add_pair_edge_(int u, int v,
vector<vector<int>>& G, vector<int>& outdeg,
vector<pair<int,int>>& pair_edges,
vector<pair<P,P>>& all_segments) const
{
if (u == v) return false;
if (outdeg[u] >= 2) return false;
const P& pu = sor[u];
const P& pv = sor[v];
auto same = [](const P& a, const P& b){ return a.x == b.x && a.y == b.y; };
// 既存線分と交差しないか
for (const auto& e : all_segments) {
const P& a = e.first; const P& b = e.second;
if (same(a, pu) || same(a, pv) || same(b, pu) || same(b, pv)) continue;
if (segments_intersect(pu, pv, a, b, true)) return false;
}
// 追加済みペア枝とも交差しないか
for (const auto& pr : pair_edges) {
const P& a = sor[pr.first];
const P& b = sor[pr.second];
if (same(a, pu) || same(a, pv) || same(b, pu) || same(b, pv)) continue;
if (segments_intersect(pu, pv, a, b, true)) return false;
}
// 閉路を作らない(v→…→u があるなら u→v は不可)
if (has_path_in_G_(v, u, G)) return false;
// 追加
pair_edges.push_back({u, v});
G[u].push_back(v);
outdeg[u]++;
all_segments.push_back({pu, pv});
return true;
}
void add_adjacent_lane_pairs_(const vector<vector<int>>& lanes,
vector<vector<int>>& G, vector<int>& outdeg,
vector<pair<int,int>>& pair_edges,
vector<pair<P,P>>& all_segments) const
{
auto byX = [&](int a, int b){ return sor[a].x < sor[b].x; };
for (int li = 0; li + 1 < B; ++li) {
vector<int> A = lanes[li];
vector<int> Bn = lanes[li + 1];
sort(A.begin(), A.end(), byX);
sort(Bn.begin(), Bn.end(), byX);
int i = 0, j = 0, cntAB = 0, cntBA = 0;
while (i < (int)A.size() && j < (int)Bn.size()) {
int a = A[i], b = Bn[j];
bool okAB = try_add_pair_edge_(a, b, G, outdeg, pair_edges, all_segments);
bool okBA = try_add_pair_edge_(b, a, G, outdeg, pair_edges, all_segments);
if (okAB && okBA) {
// バランス優先(次点で距離短い方に偏る)
if (cntAB <= cntBA) {
// BA を巻き戻す
pair_edges.pop_back(); G[b].pop_back(); outdeg[b]--; all_segments.pop_back();
j++; cntAB++;
} else {
// AB を巻き戻す
pair_edges.pop_back(); G[a].pop_back(); outdeg[a]--; all_segments.pop_back();
i++; cntBA++;
}
} else if (okAB) {
j++; cntAB++;
} else if (okBA) {
i++; cntBA++;
} else {
// どちらも不可なら x の小さい方を進める
(sor[a].x <= sor[b].x) ? ++i : ++j;
}
}
}
}
public:
// ====== main builder ======
Plan build() {
Plan out;
out.d.resize(N);
iota(out.d.begin(), out.d.end(), 0);
// ---- lanes ----
vector<vector<int>> lanes(B);
for (int i = 0; i < M; i++) lanes[band_y(sor[i].y)].push_back(i);
for (int i = 0; i < B; i++)
sort(lanes[i].begin(), lanes[i].end(),
[&](int a, int b){ return sor[a].x < sor[b].x; });
if (lanes[0].empty()) {
int best = 0;
for (int i = 1; i < M; i++) if (sor[i].y < sor[best].y) best = i;
lanes[0] = {best};
}
int p0_idx = lanes[0][0];
P p0 = sor[p0_idx];
// START->p0 の左側は使わない
auto left_of_start = [&](const P& c){
long long cr = 1LL * (p0.x - START.x) * (c.y - START.y)
- 1LL * (p0.y - START.y) * (c.x - START.x);
return cr < 0;
};
vector<char> valid(M, 1);
for (int i = 0; i < M; i++) if (left_of_start(sor[i])) valid[i] = 0;
// lanes を valid で組み直し
for (int i = 0; i < B; i++) lanes[i].clear();
for (int i = 0; i < M; i++) if (valid[i]) lanes[band_y(sor[i].y)].push_back(i);
for (int i = 0; i < B; i++)
sort(lanes[i].begin(), lanes[i].end(),
[&](int a, int b){ return sor[a].x < sor[b].x; });
// ---- undirected skeleton with crossing guard ----
vector<pair<P,P>> undirected, crossing;
auto crosses_any = [&](const P& u, const P& v)->bool{
for (const auto& e : crossing) {
const P& a = e.first; const P& b = e.second;
if ((a.x == u.x && a.y == u.y) || (a.x == v.x && a.y == v.y) ||
(b.x == u.x && b.y == u.y) || (b.x == v.x && b.y == v.y)) continue;
if (segments_intersect(u, v, a, b, true)) return true;
}
return false;
};
auto add_u = [&](const P& u, const P& v){
if (u.x == v.x && u.y == v.y) return false;
if (crosses_any(u, v)) return false;
undirected.push_back({u, v});
crossing.push_back({u, v});
return true;
};
// start chain
add_u(START, p0);
if (!lanes[1].empty()) add_u(p0, sor[lanes[1][0]]);
auto is_right = [&](const P& A, const P& Z, const P& C){ return orient(A, Z, C) < 0; };
auto is_left = [&](const P& A, const P& Z, const P& C){ return orient(A, Z, C) > 0; };
// even groups: base=0,4,8,...(右端ブリッジ)
for (int base = 0; base < B; base += 4) {
if (base + 3 >= B) break;
if (lanes[base].empty() || lanes[base + 3].empty()) continue;
P A = sor[lanes[base].back()], Z = sor[lanes[base + 3].back()];
if (add_u(A, Z)) {
for (int L : {base + 1, base + 2}) {
vector<int> v;
for (int idx : lanes[L]) if (!is_right(A, Z, sor[idx])) v.push_back(idx);
lanes[L].swap(v);
}
if (!lanes[base + 1].empty() && !lanes[base + 2].empty()) {
int u = *max_element(lanes[base + 1].begin(), lanes[base + 1].end(),
[&](int a, int b){ return sor[a].x < sor[b].x; });
int v = *max_element(lanes[base + 2].begin(), lanes[base + 2].end(),
[&](int a, int b){ return sor[a].x < sor[b].x; });
P U = sor[u], V = sor[v];
if (add_u(U, V)) {
for (int L : {base + 1, base + 2}) {
vector<int> w;
for (int idx : lanes[L]) if (!is_right(U, V, sor[idx])) w.push_back(idx);
lanes[L].swap(w);
}
}
}
}
}
// odd groups: base=2,6,...(左端ブリッジ)
for (int base = 2; base < B; base += 4) {
if (base + 3 >= B) break;
if (lanes[base].empty() || lanes[base + 3].empty()) continue;
P A = sor[lanes[base].front()], Z = sor[lanes[base + 3].front()];
if (add_u(A, Z)) {
for (int L : {base + 1, base + 2}) {
vector<int> v;
for (int idx : lanes[L]) if (!is_left(A, Z, sor[idx])) v.push_back(idx);
lanes[L].swap(v);
}
if (!lanes[base + 1].empty() && !lanes[base + 2].empty()) {
int u = *min_element(lanes[base + 1].begin(), lanes[base + 1].end(),
[&](int a, int b){ return sor[a].x < sor[b].x; });
int v = *min_element(lanes[base + 2].begin(), lanes[base + 2].end(),
[&](int a, int b){ return sor[a].x < sor[b].x; });
P U = sor[u], V = sor[v];
if (add_u(U, V)) {
for (int L : {base + 1, base + 2}) {
vector<int> w;
for (int idx : lanes[L]) if (!is_left(U, V, sor[idx])) w.push_back(idx);
lanes[L].swap(w);
}
}
}
}
}
// 各レーン内の単調エッジ
for (int i = 0; i < B; i++) {
auto ids = lanes[i];
if ((int)ids.size() < 2) continue;
sort(ids.begin(), ids.end(), [&](int a, int b){ return sor[a].x < sor[b].x; });
for (int t = 0; t + 1 < (int)ids.size(); ++t) add_u(sor[ids[t]], sor[ids[t + 1]]);
}
// 最上段 2 レーンの連結
if (B >= 2 && !lanes[B - 2].empty() && !lanes[B - 1].empty()) {
int la = *min_element(lanes[B - 2].begin(), lanes[B - 2].end(),
[&](int a, int b){ return sor[a].x < sor[b].x; });
int lb = *min_element(lanes[B - 1].begin(), lanes[B - 1].end(),
[&](int a, int b){ return sor[a].x < sor[b].x; });
add_u(sor[la], sor[lb]);
}
// ---- undirected -> directed snake ----
unordered_map<uint64_t,int> id_of;
vector<P> id_to_pt;
auto get_id = [&](const P& p){
uint64_t k = key64(p);
auto it = id_of.find(k);
if (it != id_of.end()) return it->second;
int nid = (int)id_to_pt.size();
id_of.emplace(k, nid); id_to_pt.push_back(p);
return nid;
};
for (auto &e : undirected) { get_id(e.first); get_id(e.second); }
vector<vector<int>> adj(id_to_pt.size());
for (auto &e : undirected) {
int u = get_id(e.first), v = get_id(e.second);
adj[u].push_back(v); adj[v].push_back(u);
}
auto extract_cycle = [&](int s)->vector<int>{
vector<int> ord;
if (s < 0 || s >= (int)adj.size()) return ord;
if (adj[s].empty()) return ord;
ord.push_back(s);
int prev = -1, cur = s; set<pair<int,int>> used;
for (size_t it = 0; it < adj.size() * 4; ++it) {
int nxt = -1;
for (int v : adj[cur]) {
if (v == prev) continue;
if (used.count({cur, v}) || used.count({v, cur})) continue;
nxt = v; used.insert({cur, v}); break;
}
if (nxt == -1) break;
ord.push_back(nxt);
prev = cur; cur = nxt;
if (cur == s) break;
}
return ord;
};
int start_node = id_of.count(key64(p0)) ? id_of[key64(p0)] : -1;
vector<int> ring = (start_node != -1) ? extract_cycle(start_node) : vector<int>{};
if ((int)ring.size() < 4) {
vector<int> bestcyc;
for (int u = 0; u < (int)adj.size(); ++u) {
auto tmp = extract_cycle(u);
if (tmp.size() > bestcyc.size()) bestcyc = std::move(tmp);
}
ring = std::move(bestcyc);
}
vector<pair<P,P>> directed;
if (!ring.empty()) {
int tdi = 0;
for (int i = 1; i < N; i++)
if (dev[i].x + dev[i].y > dev[tdi].x + dev[tdi].y) tdi = i;
P target = dev[tdi];
auto d2 = [&](const P& a, const P& b)->long long{
long long dx=a.x-b.x, dy=a.y-b.y; return dx*dx+dy*dy;
};
int n = (int)ring.size();
vector<P> rpts(n);
for (int i = 0; i < n; i++) rpts[i] = id_to_pt[ring[i]];
vector<int> cand;
for (int i = 0; i < n; i++) if (band_y(rpts[i].y) % 2 == 1) cand.push_back(i);
if (cand.empty()) for (int i = 0; i < n; i++) cand.push_back(i);
int pivot = cand[0];
for (int i : cand) if (d2(rpts[i], target) < d2(rpts[pivot], target)) pivot = i;
auto cyc_dist = [&](int i, int j){ int a=(j-i+n)%n, b=(i-j+n)%n; return min(a,b); };
vector<int> dval(n);
for (int i = 0; i < n; i++) dval[i] = cyc_dist(i, pivot);
for (int i = 0; i < n; i++) {
int j = (i + 1) % n; P u = rpts[i], v = rpts[j];
if (dval[i] > dval[j]) directed.push_back({u, v});
else if (dval[i] < dval[j]) directed.push_back({v, u});
else directed.push_back((u.x > v.x) ? make_pair(u, v) : make_pair(v, u));
}
directed.push_back({rpts[pivot], target});
}
// ---- base segments(交差検証用)----
vector<pair<P,P>> all_segments;
all_segments.push_back({START, sor[p0_idx]});
for (auto &e : directed) all_segments.push_back(e);
// ---- device wiring(近傍+交差回避、各ソーター最大 outdeg=2 を尊重)----
vector<int> outdeg(M, 0);
unordered_map<uint64_t,int> idxS, idxD;
idxS.reserve(M * 2); idxD.reserve(N * 2);
for (int i = 0; i < M; i++) idxS.emplace(key64(sor[i]), i);
for (int i = 0; i < N; i++) idxD.emplace(key64(dev[i]), i);
for (auto &e : directed) {
auto it = idxS.find(key64(e.first));
if (it != idxS.end()) outdeg[it->second]++;
}
struct Cand { int si; P sp; };
vector<Cand> picker;
for (int i = 0; i < M; i++) if (valid[i]) picker.push_back({i, sor[i]});
vector<pair<int,int>> dev_edges; // (sorter, device)
vector<char> usedS(M, 0);
auto dist2 = [&](const P& a, const P& b)->long long{
long long dx=a.x-b.x, dy=a.y-b.y; return dx*dx+dy*dy;
};
for (int di = 0; di < N; ++di) {
P dp = dev[di];
vector<int> ord(picker.size());
iota(ord.begin(), ord.end(), 0);
sort(ord.begin(), ord.end(),
[&](int a, int b){ return dist2(dp, picker[a].sp) < dist2(dp, picker[b].sp); });
for (int oi : ord) {
int si = picker[oi].si;
if (usedS[si] || outdeg[si] >= 2) continue;
P sp = picker[oi].sp;
bool bad = false;
for (auto &e : all_segments) {
if (segments_intersect(dp, sp, e.first, e.second, true)) { bad = true; break; }
}
if (bad) continue;
for (auto &pr : dev_edges) {
P sp2 = sor[pr.first], dp2 = dev[pr.second];
if (segments_intersect(dp, sp, dp2, sp2, true)) { bad = true; break; }
}
if (bad) continue;
dev_edges.push_back({si, di});
usedS[si] = 1;
outdeg[si]++;
all_segments.push_back({sp, dp});
break;
}
}
// ---- sorter graph(ソーター間の向き)----
vector<vector<int>> G(M);
auto push_from_segments = [&](const vector<pair<P,P>>& segs){
for (const auto& e : segs) {
auto itU = idxS.find(key64(e.first));
auto itV = idxS.find(key64(e.second));
if (itU != idxS.end() && itV != idxS.end()) {
G[itU->second].push_back(itV->second);
}
}
};
push_from_segments(directed);
// ---- 層間のペア枝を追加(主題)----
vector<pair<int,int>> pair_edges;
add_adjacent_lane_pairs_(lanes, G, outdeg, pair_edges, all_segments);
// add_snake_same_lane_and_bridges(lanes, sor, G, outdeg, all_segments);
// ---- Compose outputs ----
auto node_id = [&](const P& p)->int{
auto itD2 = idxD.find(key64(p)); if (itD2 != idxD.end()) return itD2->second;
auto itS2 = idxS.find(key64(p)); if (itS2 != idxS.end()) return N + itS2->second;
return -1;
};
vector<vector<int>> outs(M);
vector<char> installed(M, 0);
for (auto &e : directed) {
auto it = idxS.find(key64(e.first));
if (it != idxS.end()) {
int u = it->second, v = node_id(e.second);
if (v != -1) {
outs[u].push_back(v); installed[u] = 1;
if (v >= N) installed[v - N] = 1;
}
}
}
for (auto &pr : dev_edges) {
int si = pr.first, di = pr.second;
outs[si].push_back(di); installed[si] = 1;
}
for (auto &pr : pair_edges) {
int u = pr.first, v = pr.second;
outs[u].push_back(N + v);
installed[u] = 1; installed[v] = 1;
}
out.s = N + p0_idx;
out.lines.assign(M, "-1");
for (int i = 0; i < M; i++) {
if (!installed[i]) continue;
int a, b;
if (outs[i].empty()) { a = b = 0; }
else if ((int)outs[i].size() == 1) { a = b = outs[i][0]; }
else { a = outs[i][0]; b = outs[i][1]; }
out.lines[i] = "0 " + to_string(a) + " " + to_string(b);
}
out.segments.push_back({START, sor[p0_idx]});
auto point_of_id = [&](int id)->P{
if (id < N) return dev[id];
else return sor[id - N];
};
for (int i = 0; i < M; i++) {
if (out.lines[i] == "-1") continue;
int k, a, b; { stringstream ss(out.lines[i]); ss >> k >> a >> b; }
P spt = sor[i];
out.segments.push_back({spt, point_of_id(a)});
out.segments.push_back({spt, point_of_id(b)});
}
out.ok = true;
return out;
}
};
// ================= Validate crossings =================
static bool has_crossing(const vector<pair<P,P>>& segs){
int E=(int)segs.size();
for(int i=0;i<E;i++){
for(int j=i+1;j<E;j++){
const auto &a=segs[i], &b=segs[j];
auto same = [](const P& u,const P& v){ return u.x==v.x && u.y==v.y; };
if( same(a.first,b.first) || same(a.first,b.second) ||
same(a.second,b.first) || same(a.second,b.second) ) continue;
if(segments_intersect(a.first,a.second,b.first,b.second,true)) return true;
}
}
return false;
}
// ============ Hungarian (maximization, square) ============
static vector<int> hungarian_max_assign(const vector<vector<double>>& w){ // row=color, col=device
int n = (int)w.size();
const double INF = 1e100;
vector<double> u(n+1,0), v(n+1,0);
vector<int> p(n+1,0), way(n+1,0);
for(int i=1;i<=n;i++){
p[0]=i;
int j0=0;
vector<double> minv(n+1, INF);
vector<char> used(n+1,false);
do{
used[j0]=true;
int i0=p[j0], j1=0;
double delta=INF;
for(int j=1;j<=n;j++) if(!used[j]){
double cur = -(w[i0-1][j-1]) - u[i0] - v[j]; // maximize -> negate
if(cur < minv[j]){ minv[j]=cur; way[j]=j0; }
if(minv[j] < delta){ delta=minv[j]; j1=j; }
}
for(int j=0;j<=n;j++){
if(used[j]){ u[p[j]] += delta; v[j] -= delta; }
else minv[j] -= delta;
}
j0=j1;
}while(p[j0]!=0);
do{
int j1=way[j0];
p[j0]=p[j1]; j0=j1;
}while(j0);
}
vector<int> assign_row_to_col(n,-1); // row i -> col j
for(int j=1;j<=n;j++) if(p[j]) assign_row_to_col[p[j]-1]=j-1;
return assign_row_to_col;
}
// ============ reachability & topo (graph fixed) ============
// best.lines[i] : "-1" か "k a b"(a,b は [0..N+M-1])
static void build_reach_and_topo(
const Plan& best, int N, int M,
const vector<string>& lines,
vector<char>& installed, vector<int>& v1, vector<int>& v2,
vector<char>& reachS, vector<int>& topo, vector<int>& rtopo
){
installed.assign(M,0); v1.assign(M,-1); v2.assign(M,-1);
for(int i=0;i<M;i++){
if(lines[i]=="-1") continue;
installed[i]=1;
int k,a,b; stringstream ss(lines[i]); ss>>k>>a>>b;
v1[i]=a; v2[i]=b;
}
vector<vector<int>> adjS(M), parS(M);
auto push_edge = [&](int u,int to){
if(to>=N){
int v=to-N;
if(0<=v&&v<M){ adjS[u].push_back(v); parS[v].push_back(u); }
}
};
for(int u=0;u<M;u++) if(installed[u]){
if(v1[u]!=-1) push_edge(u,v1[u]);
if(v2[u]!=-1) push_edge(u,v2[u]);
}
reachS.assign(M,0);
if(best.s>=N){
int s0=best.s-N;
if(0<=s0&&s0<M&&installed[s0]){
queue<int> q; reachS[s0]=1; q.push(s0);
while(!q.empty()){
int u=q.front(); q.pop();
for(int v: adjS[u]){
if(!installed[v]||reachS[v]) continue;
reachS[v]=1; q.push(v);
}
}
}
}
vector<int> indeg(M,0);
for(int v=0;v<M;v++) if(installed[v]&&reachS[v]){
int c=0; for(int p:parS[v]) if(installed[p]&&reachS[p]) c++; indeg[v]=c;
}
topo.clear(); topo.reserve(M);
{
queue<int> q;
for(int i=0;i<M;i++) if(installed[i]&&reachS[i]&&indeg[i]==0) q.push(i);
while(!q.empty()){
int u=q.front(); q.pop(); topo.push_back(u);
for(int v:adjS[u]){
if(!installed[v]||!reachS[v]) continue;
if(--indeg[v]==0) q.push(v);
}
}
}
rtopo=topo; reverse(rtopo.begin(), rtopo.end());
}
// ============ forward flow (given k & swap) ============
struct FlowPack{
vector<vector<double>> inflS; // [M][N] sorter inflow by color
vector<vector<double>> flowD; // [N][N] device intake by color
};
static FlowPack forward_flow_allcolors(
const Plan& best, int N, int M, int K,
const vector<char>& installed, const vector<int>& v1, const vector<int>& v2,
const vector<int>& curK, const vector<char>& swapFlag,
const vector<char>& reachS, const vector<int>& topo,
const vector<vector<double>>& prob
){
vector<vector<double>> inflS(M, vector<double>(N,0.0));
vector<vector<double>> flowD(N, vector<double>(N,0.0));
if(best.s < N){
int d=best.s;
for(int c=0;c<N;c++) flowD[d][c]+=1.0/N;
}else{
int s0=best.s-N;
if(0<=s0&&s0<M&&installed[s0]&&reachS[s0]){
for(int c=0;c<N;c++) inflS[s0][c]+=1.0/N;
}
}
for(int u: topo){
if(!installed[u]) continue;
double sm=0; for(int c=0;c<N;c++) sm+=inflS[u][c];
if(sm==0) continue;
int a=v1[u], b=v2[u];
if(swapFlag[u]) std::swap(a,b);
int k=curK[u];
auto push=[&](int id,int c,double mass){
if(mass==0) return;
if(id<N) flowD[id][c]+=mass;
else{
int v=id-N; if(0<=v&&v<M) inflS[v][c]+=mass;
}
};
for(int c=0;c<N;c++){
double in=inflS[u][c]; if(in==0) continue;
double p=prob[k][c];
push(a,c,in*p);
push(b,c,in*(1.0-p));
}
}
return {inflS, flowD};
}
// ============ 割当固定で (k, swap) を逆トポ順に更新 ============
static void backward_pick_for_assignment(
int N, int M, int K,
const vector<char>& installed, const vector<int>& v1, const vector<int>& v2,
const vector<vector<double>>& inflS, // forward の各ソーター入口の色分布
const vector<char>& reachS, const vector<int>& rtopo,
const vector<int>& device_of_color, // サイズ N: color c -> device d*
vector<int>& curK, vector<char>& swapFlag,
const vector<vector<double>>& prob
){
auto Rdev = [&](int d,int c)->double{ return (device_of_color[c]==d)?1.0:0.0; };
// R[u][c]: sorter u に入った色 c が「割当デバイスへ到達する」確率
vector<vector<double>> R(M, vector<double>(N,0.0));
auto childR = [&](int id,int c)->double{
if(id<N) return Rdev(id,c);
int v=id-N; if(0<=v&&v<M) return R[v][c];
return 0.0;
};
for(int u: rtopo){
if(!installed[u] || !reachS[u]) continue;
int a0=v1[u], b0=v2[u];
double bestVal=-1e100; int argK=curK[u]; char argS=swapFlag[u];
// 子のRをキャッシュ
vector<double> Ra(N), Rb(N);
for(int c=0;c<N;c++){ Ra[c]=childR(a0,c); Rb[c]=childR(b0,c); }
for(int k=0;k<K;k++){
double vKeep=0.0, vSwap=0.0;
for(int c=0;c<N;c++){
double in = inflS[u][c];
if(in==0) continue;
double p = prob[k][c];
vKeep += in*( p*Ra[c] + (1.0-p)*Rb[c] );
vSwap += in*( p*Rb[c] + (1.0-p)*Ra[c] );
}
if(vKeep>bestVal){ bestVal=vKeep; argK=k; argS=0; }
if(vSwap>bestVal){ bestVal=vSwap; argK=k; argS=1; }
}
curK[u]=argK; swapFlag[u]=argS;
// 選んだ (k,swap) で R[u][c] を確定
int aa=a0, bb=b0; if(argS) std::swap(aa,bb);
for(int c=0;c<N;c++){
double p = prob[argK][c];
R[u][c] = p*childR(aa,c) + (1.0-p)*childR(bb,c);
}
}
}
// best を上書き最適化:分類器番号・出口入替・デバイス割当
// 依存: hungarian_max_assign / build_reach_and_topo / forward_flow_allcolors / backward_pick_for_assignment
// best を上書き最適化:分類器番号・出口入替・デバイス割当(改良版)
// best を上書き最適化:分類器番号・出口入替・デバイス割当(+余剰時間での軽量ヒルクライム)
static void optimize_plan(
Plan& best, int N, int M, int K,
const vector<vector<double>>& prob,
int iters = 10,
int restarts = 10,
int extra_hill_ms = 450, // ★余剰時間で回すヒルクライムの時間上限(ms)
int hill_L = 30, // ★1ラウンドで試すノード数(margin 小い順)
int hill_rounds = 100 // ★ラウンド数
){
using namespace std::chrono;
// ==== グラフ解析(固定配線) ====
vector<char> installed; vector<int> v1, v2;
vector<char> reachS; vector<int> topo, rtopo;
build_reach_and_topo(best, N, M, best.lines,
installed, v1, v2, reachS, topo, rtopo);
// 便利ラムダ
auto sumv = [&](const vector<double>& a){ double s=0; for(double x:a)s+=x; return s; };
auto gini = [&](const vector<double>& a){
double S=sumv(a); if(S<=0) return 0.0; double s2=0; for(double x:a){ double p=x/S; s2+=p*p; }
return 1.0 - s2;
};
auto inc_mix = [&](const vector<double>& before, const vector<double>& add){
double Sb=0,Mb=0; for(double x:before){ Sb+=x; Mb=max(Mb,x); }
double Sa=Sb, Ma=Mb;
for(size_t i=0;i<add.size();++i){ double v=before[i]+add[i]; Sa+=add[i]; Ma=max(Ma,v); }
return (Sa-Ma) - (Sb-Mb);
};
// ========== トップダウン初期化 ==========
auto seed_topdown_once = [&](double w_branch, double w_dev, double w_sorter){
vector<vector<double>> histS(M, vector<double>(N,0.0));
vector<vector<double>> histD(N, vector<double>(N,0.0));
vector<int> initK(M,0);
vector<char> initSwap(M,0);
auto child_hist = [&](int id)->vector<double>&{
return (id<N)? histD[id] : histS[id-N];
};
auto child_w = [&](int id){ return (id<N)? w_dev : w_sorter; };
if(best.s >= N){
int s0=best.s-N;
if(0<=s0 && s0<M && installed[s0] && reachS[s0]){
for(int c=0;c<N;c++) histS[s0][c]+=1.0/N;
}
}else{
int d0=best.s;
for(int c=0;c<N;c++) histD[d0][c]+=1.0/N;
}
for(int u: topo){
if(!(u>=0 && u<M)) continue;
if(!installed[u] || !reachS[u]) continue;
auto &fin = histS[u];
if(sumv(fin)==0) continue;
int a=v1[u], b=v2[u]; if(a==-1||b==-1) continue;
auto &HA=child_hist(a); auto &HB=child_hist(b);
double bestCost=1e100; int argK=0; char argS=0;
vector<double> fA(N), fB(N);
for(int k=0;k<K;k++){
for(int c=0;c<N;c++){ double p=prob[k][c], x=fin[c]; fA[c]=x*p; fB[c]=x*(1.0-p); }
double SA=sumv(fA), SB=sumv(fB);
double wA=(SA+SB>0)? SA/(SA+SB):0.0, wB=1.0-wA;
double branch = w_branch*( wA*gini(fA) + wB*gini(fB) );
double keep = branch + child_w(a)*inc_mix(HA,fA) + child_w(b)*inc_mix(HB,fB);
double swap = branch + child_w(a)*inc_mix(HA,fB) + child_w(b)*inc_mix(HB,fA);
if(keep<bestCost){ bestCost=keep; argK=k; argS=0; }
if(swap<bestCost){ bestCost=swap; argK=k; argS=1; }
}
initK[u]=argK; initSwap[u]=argS;
// 反映
for(int c=0;c<N;c++){
double p=prob[argK][c], x=fin[c];
double L=x*p, R=x*(1.0-p);
if(!argS){ child_hist(a)[c]+=L; child_hist(b)[c]+=R; }
else { child_hist(a)[c]+=R; child_hist(b)[c]+=L; }
}
}
return pair<vector<int>,vector<char>>(std::move(initK), std::move(initSwap));
};
// ========== backward:最良+次善手と margin を返す ==========
auto backward_best_and_second = [&]( // curK/swap を最適にし、2番手とマージンも返す
const vector<vector<double>>& inflS,
const vector<int>& color2dev,
vector<int>& curK, vector<char>& swapFlag,
vector<int>& secK, vector<char>& secSwap, vector<double>& margin
){
auto Rdev = [&](int d,int c)->double{ return (color2dev[c]==d)?1.0:0.0; };
vector<vector<double>> R(M, vector<double>(N,0.0));
auto childR = [&](int id,int c)->double{
if(id<N) return Rdev(id,c);
int v=id-N; if(0<=v&&v<M) return R[v][c];
return 0.0;
};
secK.assign(M,0); secSwap.assign(M,0); margin.assign(M,0.0);
for(int u: rtopo){
if(!installed[u] || !reachS[u]) continue;
int a0=v1[u], b0=v2[u];
vector<double> Ra(N), Rb(N);
for(int c=0;c<N;c++){ Ra[c]=childR(a0,c); Rb[c]=childR(b0,c); }
double bestv=-1e100, second=-1e100; int argK=curK[u], argS=swapFlag[u];
int argK2=0; char argS2=0;
auto eval = [&](int k, int sw)->double{
double val=0.0;
for(int c=0;c<N;c++){
double in=inflS[u][c]; if(in==0) continue;
double p=prob[k][c];
if(!sw) val += in*( p*Ra[c] + (1.0-p)*Rb[c] );
else val += in*( p*Rb[c] + (1.0-p)*Ra[c] );
}
return val;
};
for(int k=0;k<K;k++){
double v0=eval(k,0);
if(v0>bestv){ second=bestv; argK2=argK; argS2=argS; bestv=v0; argK=k; argS=0; }
else if(v0>second){ second=v0; argK2=k; argS2=0; }
double v_sw=eval(k,1); // ← rename: v1 -> v_sw(shadow 回避)
if(v_sw>bestv){ second=bestv; argK2=argK; argS2=argS; bestv=v_sw; argK=k; argS=1; }
else if(v_sw>second){ second=v_sw; argK2=k; argS2=1; }
}
curK[u]=argK; swapFlag[u]=argS;
secK[u]=argK2; secSwap[u]=argS2; margin[u]=bestv-second;
// R[u] を確定(best)
int aa=a0, bb=b0; if(argS) std::swap(aa,bb);
for(int c=0;c<N;c++){
double p=prob[argK][c];
R[u][c] = p*childR(aa,c) + (1.0-p)*childR(bb,c);
}
}
};
// ========== 評価 ==========
auto score_from_flow = [&](const vector<vector<double>>& flowD,
const vector<int>& color2dev)->double{
double s=0.0;
for(int c=0;c<N;c++){ int d=color2dev[c]; if(0<=d && d<N) s+=flowD[d][c]; }
return s;
};
auto eval_with_hungarian = [&](const vector<int>& curK, const vector<char>& swapFlag,
vector<int>* out_assign=nullptr, vector<vector<double>>* out_flowD=nullptr)->double{
auto fp = forward_flow_allcolors(best, N, M, K, installed, v1, v2, curK, swapFlag, reachS, topo, prob);
vector<vector<double>> W(N, vector<double>(N,0.0));
for(int d=0; d<N; ++d) for(int c=0; c<N; ++c) W[c][d]=fp.flowD[d][c];
auto col2dev = hungarian_max_assign(W);
if(out_assign) *out_assign = col2dev;
if(out_flowD) *out_flowD = fp.flowD;
return score_from_flow(fp.flowD, col2dev);
};
// ベスト解の保持
double bestScore=-1.0; vector<int> best_d(N,-1);
vector<int> bestK; vector<char> bestSwap;
std::mt19937 rng(1234567);
// ==== シード集合 ====
vector<pair<vector<int>,vector<char>>> seeds;
{ // 既存 lines
vector<int> k0(M,0); vector<char> s0(M,0);
for(int i=0;i<M;i++) if(installed[i]){
int k,a,b; stringstream ss(best.lines[i]); ss>>k>>a>>b;
k0[i]=max(0,min(K-1,k));
}
seeds.push_back({std::move(k0), std::move(s0)});
}
seeds.push_back( seed_topdown_once(0.35, 1.00, 0.25) );
seeds.push_back( seed_topdown_once(0.35, 1.30, 0.35) );
while((int)seeds.size()<restarts){
vector<int> k(M,0); vector<char> s(M,0);
for(int i=0;i<M;i++) if(installed[i]){
if(K>1 && (rng()%3==0)) k[i]=rng()%K;
if(rng()%5==0) s[i]=1;
}
seeds.push_back({std::move(k), std::move(s)});
}
// ==== 各シードで探索 ====
for(auto seed : seeds){
vector<int> curK = std::move(seed.first);
vector<char> swapFlag = std::move(seed.second);
// 小さな初期摂動
for(int i=0;i<M;i++) if(installed[i] && rng()%12==0){
if(K>1) curK[i]=(curK[i]+1+(rng()%2))%K;
if(rng()%2) swapFlag[i]^=1;
}
vector<int> color2dev(N,0);
for(int it=0; it<iters; ++it){
// forward
auto fp = forward_flow_allcolors(best, N, M, K,
installed, v1, v2,
curK, swapFlag,
reachS, topo, prob);
// Hungarian(色→デバイス)
vector<vector<double>> W(N, vector<double>(N,0.0));
for(int d=0; d<N; ++d) for(int c=0; c<N; ++c) W[c][d]=fp.flowD[d][c];
auto col2dev = hungarian_max_assign(W);
color2dev = col2dev;
// backward:最良+次善手と margin
vector<int> secK; vector<char> secSwap; vector<double> margin;
backward_best_and_second(fp.inflS, color2dev,
curK, swapFlag,
secK, secSwap, margin);
// 少数ノードに摂動(マージン小を優先)
vector<int> idx; idx.reserve(M);
for(int i=0;i<M;i++) if(installed[i] && reachS[i]) idx.push_back(i);
int perturb = max(1, (int)(idx.size() * (0.05 + 0.10*(iters-1-it)/max(1,iters-1)))); // 5〜15%
perturb = min(perturb, (int)idx.size());
nth_element(idx.begin(), idx.begin()+perturb, idx.end(),
[&](int a,int b){ return margin[a] < margin[b]; });
for(int t=0;t<perturb; ++t){
int u = idx[t];
curK[u] = secK[u];
if( (bool)swapFlag[u] != (bool)secSwap[u] ) swapFlag[u] ^= 1;
}
}
// 仕上げ forward & Hungarian でスコア
vector<vector<double>> flowD;
auto fp_score = eval_with_hungarian(curK, swapFlag, nullptr, &flowD);
if(fp_score > bestScore){
bestScore = fp_score;
// 割当を色→デバイスからデバイス→色へ
vector<vector<double>> W(N, vector<double>(N,0.0));
for(int d=0; d<N; ++d) for(int c=0; c<N; ++c) W[c][d]=flowD[d][c];
auto col2dev = hungarian_max_assign(W);
best_d.assign(N,-1);
for(int c=0;c<N;c++){ int d=col2dev[c]; if(0<=d && d<N) best_d[d]=c; }
bestK = curK; bestSwap = swapFlag;
}
}
// ==== ★ 余剰時間ヒルクライム(sec-best ピボット)====
{
auto t0 = steady_clock::now();
vector<int> curK = bestK; vector<char> swapFlag = bestSwap;
// 現在の割当・流量
vector<int> color2dev;
vector<vector<double>> flowD;
double curScore = eval_with_hungarian(curK, swapFlag, &color2dev, &flowD);
// inflS を得るため forward を一度(割当は使わない)
auto fp0 = forward_flow_allcolors(best, N, M, K, installed, v1, v2, curK, swapFlag, reachS, topo, prob);
for(int rd=0; rd<hill_rounds; ++rd){
// backward で “2番手” と margin を用意
vector<int> secK; vector<char> secSwap; vector<double> margin;
backward_best_and_second(fp0.inflS, color2dev, curK, swapFlag, secK, secSwap, margin);
// 候補ノード(margin 小さい順 上位 L)
vector<int> cand; cand.reserve(M);
for(int u=0;u<M;u++) if(installed[u] && reachS[u]) cand.push_back(u);
int L = min(hill_L, (int)cand.size());
nth_element(cand.begin(), cand.begin()+L, cand.end(),
[&](int a,int b){ return margin[a] < margin[b]; });
cand.resize(L);
bool improved = false;
for(int u: cand){
if(duration_cast<milliseconds>(steady_clock::now()-t0).count() > extra_hill_ms) break;
// ピボットして評価
int oldK = curK[u]; char oldS = swapFlag[u];
curK[u] = secK[u];
if( (bool)swapFlag[u] != (bool)secSwap[u] ) swapFlag[u] ^= 1;
double sc = eval_with_hungarian(curK, swapFlag);
if(sc > curScore + 1e-12){
curScore = sc; improved = true;
// forward も更新(次ラウンドの inflS 用)
fp0 = forward_flow_allcolors(best, N, M, K, installed, v1, v2, curK, swapFlag, reachS, topo, prob);
// color2dev も更新
vector<vector<double>> W(N, vector<double>(N,0.0));
for(int d=0; d<N; ++d) for(int c=0; c<N; ++c) W[c][d]=fp0.flowD[d][c];
color2dev = hungarian_max_assign(W);
}else{
// 戻す
curK[u] = oldK; swapFlag[u] = oldS;
}
}
if(!improved) break;
}
if(curScore > bestScore + 1e-12){
bestScore = curScore;
// 最終の割当を更新
auto fp = forward_flow_allcolors(best, N, M, K, installed, v1, v2, curK, swapFlag, reachS, topo, prob);
vector<vector<double>> W(N, vector<double>(N,0.0));
for(int d=0; d<N; ++d) for(int c=0; c<N; ++c) W[c][d]=fp.flowD[d][c];
auto col2dev = hungarian_max_assign(W);
best_d.assign(N,-1);
for(int c=0;c<N;c++){ int d=col2dev[c]; if(0<=d && d<N) best_d[d]=c; }
bestK = std::move(curK); bestSwap = std::move(swapFlag);
}
}
// ==== Plan に書き戻し ====
if(bestScore >= 0.0){
best.d = best_d;
for(int i=0;i<M;i++){
if(best.lines[i]=="-1") continue;
int dummy,a,b; { stringstream ss(best.lines[i]); ss>>dummy>>a>>b; }
int k = (i<(int)bestK.size()? bestK[i] : 0);
if(i<(int)bestSwap.size() && bestSwap[i]) std::swap(a,b);
best.lines[i] = to_string(k) + " " + to_string(a) + " " + to_string(b);
}
}
}
// ===================== main =====================
// 既存の P, Plan, Builder, has_crossing を利用
int main(){
ios::sync_with_stdio(false);
cin.tie(nullptr);
int N,M,K;
if(!(cin>>N>>M>>K)) return 0;
vector<P> dev(N), sor(M);
for(int i=0;i<N;i++) cin>>dev[i].x>>dev[i].y;
for(int i=0;i<M;i++) cin>>sor[i].x>>sor[i].y;
vector<vector<double>> prob(K, vector<double>(N,0.5));
for(int k=0;k<K;k++) for(int c=0;c<N;c++){ double x; cin>>x; prob[k][c]=x; }
// 既存ビルダ(グラフは変えない)
vector<int> Bs = {16,14,12,10,8,6,4,2};
Plan best; bool found=false;
int chosen_B = -1;
for(int B: Bs){
Builder bd(N,M,K,B,dev,sor);
Plan p = bd.build();
if(!has_crossing(p.segments)){ best=std::move(p); found=true; break; }
}
if(!found){
for(int i=0;i<N;i++){ if(i) cout<<' '; cout<<i; } cout<<"\n";
cout<<0<<"\n";
for(int i=0;i<M;i++) cout<<-1<<"\n";
return 0;
}
// ★ 交互最適化(Forward→Hungarian→Backward)
// reorient_edges_bfs_snake_downhill(best, N, M, chosen_B, sor);
// reorient_edges_by_lane_x(best, N, M, chosen_B, sor);
optimize_plan(best, N, M, K, prob);
// 出力
for(int i=0;i<N;i++){ if(i) cout<<' '; cout<<best.d[i]; } cout<<"\n";
cout<<best.s<<"\n";
for(int i=0;i<M;i++) cout<<best.lines[i]<<"\n";
return 0;
}
提出情報
コンパイルエラー
Main.cpp: In function ‘FlowPack forward_flow_allcolors(const Plan&, int, int, int, const std::vector<char>&, const std::vector<int>&, const std::vector<int>&, const std::vector<int>&, const std::vector<char>&, const std::vector<char>&, const std::vector<int>&, const std::vector<std::vector<double> >&)’:
Main.cpp:715:41: warning: unused parameter ‘K’ [-Wunused-parameter]
715 | const Plan& best, int N, int M, int K,
| ~~~~^
Main.cpp: In function ‘int main()’:
Main.cpp:1165:9: warning: unused variable ‘chosen_B’ [-Wunused-variable]
1165 | int chosen_B = -1;
| ^~~~~~~~
Main.cpp: At global scope:
Main.cpp:760:13: warning: ‘void backward_pick_for_assignment(int, int, int, const std::vector<char>&, const std::vector<int>&, const std::vector<int>&, const std::vector<std::vector<double> >&, const std::vector<char>&, const std::vector<int>&, const std::vector<int>&, std::vector<int>&, std::vector<char>&, const std::vector<std::vector<double> >&)’ defined but not used [-Wunused-function]
760 | static void backward_pick_for_assignment(
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
Main.cpp:101:13: warning: ‘void add_snake_same_lane_and_bridges(const std::vector<std::vector<int> >&, const std::vector<P>&, std::vector<std::vector<int> >&, std::vector<int>&, std::vector<std::pair<P, P> >&)’ defined but not used [-Wunused-function]
101 | static void add_snake_same_lane_and_bridges(
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
ジャッジ結果
| セット名 |
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 |
| 得点 / 配点 |
818395176 / 1000000000 |
615753169 / 1000000000 |
631254422 / 1000000000 |
615976328 / 1000000000 |
458921687 / 1000000000 |
702130964 / 1000000000 |
591994671 / 1000000000 |
688903326 / 1000000000 |
616831805 / 1000000000 |
916666667 / 1000000000 |
443867969 / 1000000000 |
645576804 / 1000000000 |
614555051 / 1000000000 |
665427108 / 1000000000 |
615721069 / 1000000000 |
833333333 / 1000000000 |
519112482 / 1000000000 |
888888889 / 1000000000 |
535127657 / 1000000000 |
835662031 / 1000000000 |
818228324 / 1000000000 |
698885962 / 1000000000 |
680847061 / 1000000000 |
768046353 / 1000000000 |
672331914 / 1000000000 |
662781953 / 1000000000 |
610621381 / 1000000000 |
781876615 / 1000000000 |
552734871 / 1000000000 |
611191880 / 1000000000 |
664315502 / 1000000000 |
735196135 / 1000000000 |
670094411 / 1000000000 |
588489122 / 1000000000 |
847807092 / 1000000000 |
486302638 / 1000000000 |
556218062 / 1000000000 |
666984324 / 1000000000 |
909090909 / 1000000000 |
622043257 / 1000000000 |
806071591 / 1000000000 |
499215456 / 1000000000 |
806219049 / 1000000000 |
465626528 / 1000000000 |
635204597 / 1000000000 |
637223173 / 1000000000 |
877263499 / 1000000000 |
833333333 / 1000000000 |
664606473 / 1000000000 |
473760387 / 1000000000 |
584198554 / 1000000000 |
731322181 / 1000000000 |
651327095 / 1000000000 |
692443357 / 1000000000 |
588031648 / 1000000000 |
809310562 / 1000000000 |
457654801 / 1000000000 |
633930202 / 1000000000 |
486753960 / 1000000000 |
754709701 / 1000000000 |
477295422 / 1000000000 |
567106670 / 1000000000 |
566141733 / 1000000000 |
888888889 / 1000000000 |
469668180 / 1000000000 |
813232655 / 1000000000 |
652145722 / 1000000000 |
513727396 / 1000000000 |
909090909 / 1000000000 |
704966797 / 1000000000 |
793447745 / 1000000000 |
792520871 / 1000000000 |
941176471 / 1000000000 |
814510423 / 1000000000 |
472242904 / 1000000000 |
633690429 / 1000000000 |
363058863 / 1000000000 |
742801365 / 1000000000 |
833491504 / 1000000000 |
857142857 / 1000000000 |
833333333 / 1000000000 |
740481357 / 1000000000 |
673599013 / 1000000000 |
652462571 / 1000000000 |
900000000 / 1000000000 |
900000000 / 1000000000 |
469490255 / 1000000000 |
747472743 / 1000000000 |
674318442 / 1000000000 |
607324601 / 1000000000 |
789614645 / 1000000000 |
527018418 / 1000000000 |
708859264 / 1000000000 |
807983318 / 1000000000 |
645880496 / 1000000000 |
630674973 / 1000000000 |
875802559 / 1000000000 |
492920485 / 1000000000 |
861769231 / 1000000000 |
458653966 / 1000000000 |
753125497 / 1000000000 |
728000793 / 1000000000 |
555584039 / 1000000000 |
755709994 / 1000000000 |
668917662 / 1000000000 |
499582842 / 1000000000 |
944444444 / 1000000000 |
699830252 / 1000000000 |
872557143 / 1000000000 |
695888248 / 1000000000 |
718612226 / 1000000000 |
782004462 / 1000000000 |
770355872 / 1000000000 |
742589928 / 1000000000 |
900000000 / 1000000000 |
647188982 / 1000000000 |
438324110 / 1000000000 |
950000000 / 1000000000 |
616274487 / 1000000000 |
654946030 / 1000000000 |
600884590 / 1000000000 |
495363011 / 1000000000 |
791398625 / 1000000000 |
652435168 / 1000000000 |
832194262 / 1000000000 |
417537987 / 1000000000 |
720120109 / 1000000000 |
547736494 / 1000000000 |
657546702 / 1000000000 |
802198004 / 1000000000 |
491058972 / 1000000000 |
944444444 / 1000000000 |
770062195 / 1000000000 |
519755339 / 1000000000 |
651987218 / 1000000000 |
600920873 / 1000000000 |
386045641 / 1000000000 |
543728210 / 1000000000 |
702516667 / 1000000000 |
724463065 / 1000000000 |
672794768 / 1000000000 |
629323792 / 1000000000 |
529676349 / 1000000000 |
771698810 / 1000000000 |
462543076 / 1000000000 |
674273057 / 1000000000 |
814071460 / 1000000000 |
479367343 / 1000000000 |
727572799 / 1000000000 |
664591623 / 1000000000 |
909090909 / 1000000000 |
517365397 / 1000000000 |
547400789 / 1000000000 |
801391700 / 1000000000 |
700756518 / 1000000000 |
857142857 / 1000000000 |
503568455 / 1000000000 |
362393689 / 1000000000 |
708028653 / 1000000000 |
818183107 / 1000000000 |
614632054 / 1000000000 |
469469846 / 1000000000 |
781808995 / 1000000000 |
499354477 / 1000000000 |
707534548 / 1000000000 |
352664854 / 1000000000 |
692819090 / 1000000000 |
866444776 / 1000000000 |
593975014 / 1000000000 |
632308603 / 1000000000 |
620111385 / 1000000000 |
611201115 / 1000000000 |
570739604 / 1000000000 |
574522959 / 1000000000 |
585355030 / 1000000000 |
631834340 / 1000000000 |
476759307 / 1000000000 |
697283258 / 1000000000 |
740472907 / 1000000000 |
761820107 / 1000000000 |
564648476 / 1000000000 |
950000000 / 1000000000 |
941176471 / 1000000000 |
782569692 / 1000000000 |
824305593 / 1000000000 |
668993056 / 1000000000 |
799098532 / 1000000000 |
627851299 / 1000000000 |
286738957 / 1000000000 |
653737354 / 1000000000 |
857142857 / 1000000000 |
752190398 / 1000000000 |
759457143 / 1000000000 |
626743411 / 1000000000 |
739056741 / 1000000000 |
774920921 / 1000000000 |
777100153 / 1000000000 |
842654545 / 1000000000 |
800000000 / 1000000000 |
538639432 / 1000000000 |
900000000 / 1000000000 |
648574282 / 1000000000 |
586011002 / 1000000000 |
572985454 / 1000000000 |
741366647 / 1000000000 |
727824575 / 1000000000 |
805469863 / 1000000000 |
540160085 / 1000000000 |
710448177 / 1000000000 |
791887087 / 1000000000 |
832431709 / 1000000000 |
485989377 / 1000000000 |
538192608 / 1000000000 |
777203821 / 1000000000 |
690318873 / 1000000000 |
538903207 / 1000000000 |
585871406 / 1000000000 |
680114769 / 1000000000 |
745085714 / 1000000000 |
579439990 / 1000000000 |
875000000 / 1000000000 |
900000000 / 1000000000 |
609557863 / 1000000000 |
804687550 / 1000000000 |
426045916 / 1000000000 |
875000000 / 1000000000 |
888888889 / 1000000000 |
657538487 / 1000000000 |
704438389 / 1000000000 |
805790139 / 1000000000 |
691652537 / 1000000000 |
699408523 / 1000000000 |
542488525 / 1000000000 |
754686096 / 1000000000 |
833333333 / 1000000000 |
773685450 / 1000000000 |
691101062 / 1000000000 |
543101117 / 1000000000 |
699023784 / 1000000000 |
605791224 / 1000000000 |
947368421 / 1000000000 |
792116176 / 1000000000 |
695755052 / 1000000000 |
933333333 / 1000000000 |
724809271 / 1000000000 |
817785595 / 1000000000 |
800000000 / 1000000000 |
635501264 / 1000000000 |
597590624 / 1000000000 |
683458889 / 1000000000 |
738696274 / 1000000000 |
728326187 / 1000000000 |
817198294 / 1000000000 |
857142857 / 1000000000 |
621793177 / 1000000000 |
527473214 / 1000000000 |
676833872 / 1000000000 |
625949451 / 1000000000 |
385837936 / 1000000000 |
745997206 / 1000000000 |
583562722 / 1000000000 |
677992099 / 1000000000 |
625714012 / 1000000000 |
610085795 / 1000000000 |
437985628 / 1000000000 |
682765638 / 1000000000 |
273923929 / 1000000000 |
720514982 / 1000000000 |
640697788 / 1000000000 |
502625153 / 1000000000 |
699841833 / 1000000000 |
719985308 / 1000000000 |
800000000 / 1000000000 |
835487234 / 1000000000 |
637494370 / 1000000000 |
466665383 / 1000000000 |
470651840 / 1000000000 |
655439082 / 1000000000 |
941176471 / 1000000000 |
345895092 / 1000000000 |
557031532 / 1000000000 |
536009450 / 1000000000 |
712814617 / 1000000000 |
455007635 / 1000000000 |
701862933 / 1000000000 |
652457551 / 1000000000 |
666478270 / 1000000000 |
490084962 / 1000000000 |
535484693 / 1000000000 |
773341325 / 1000000000 |
0 / 1000000000 |
820181934 / 1000000000 |
764958134 / 1000000000 |
652786527 / 1000000000 |
659854165 / 1000000000 |
888888889 / 1000000000 |
653752469 / 1000000000 |
800418869 / 1000000000 |
716133766 / 1000000000 |
703362470 / 1000000000 |
782445977 / 1000000000 |
706254324 / 1000000000 |
694051937 / 1000000000 |
479581054 / 1000000000 |
684419269 / 1000000000 |
645310966 / 1000000000 |
548614302 / 1000000000 |
447061623 / 1000000000 |
583074093 / 1000000000 |
582169210 / 1000000000 |
594281847 / 1000000000 |
636464589 / 1000000000 |
790182203 / 1000000000 |
667337414 / 1000000000 |
688702522 / 1000000000 |
745793083 / 1000000000 |
441423393 / 1000000000 |
458049655 / 1000000000 |
631984480 / 1000000000 |
371278284 / 1000000000 |
833333333 / 1000000000 |
601505708 / 1000000000 |
706456221 / 1000000000 |
638651822 / 1000000000 |
400076637 / 1000000000 |
790173866 / 1000000000 |
771136940 / 1000000000 |
646957759 / 1000000000 |
434452495 / 1000000000 |
440831977 / 1000000000 |
448069008 / 1000000000 |
792506637 / 1000000000 |
759004903 / 1000000000 |
717595795 / 1000000000 |
761522047 / 1000000000 |
799744702 / 1000000000 |
950000000 / 1000000000 |
736066209 / 1000000000 |
275621030 / 1000000000 |
432576573 / 1000000000 |
556772814 / 1000000000 |
599694165 / 1000000000 |
722533647 / 1000000000 |
573138786 / 1000000000 |
395678388 / 1000000000 |
703092780 / 1000000000 |
404850611 / 1000000000 |
661336020 / 1000000000 |
599603088 / 1000000000 |
819805912 / 1000000000 |
944444444 / 1000000000 |
867459860 / 1000000000 |
675902788 / 1000000000 |
522191774 / 1000000000 |
689892685 / 1000000000 |
706908853 / 1000000000 |
592176491 / 1000000000 |
772126644 / 1000000000 |
726652804 / 1000000000 |
619942647 / 1000000000 |
798564664 / 1000000000 |
650940067 / 1000000000 |
506306423 / 1000000000 |
727358437 / 1000000000 |
608478956 / 1000000000 |
904159999 / 1000000000 |
609484667 / 1000000000 |
527940559 / 1000000000 |
602628130 / 1000000000 |
736824848 / 1000000000 |
400884130 / 1000000000 |
676754530 / 1000000000 |
833333333 / 1000000000 |
790425503 / 1000000000 |
683431606 / 1000000000 |
821990000 / 1000000000 |
631635898 / 1000000000 |
520488711 / 1000000000 |
509357381 / 1000000000 |
533535164 / 1000000000 |
666571214 / 1000000000 |
426908134 / 1000000000 |
854111085 / 1000000000 |
657594497 / 1000000000 |
820907918 / 1000000000 |
458308392 / 1000000000 |
620633443 / 1000000000 |
768411091 / 1000000000 |
556406762 / 1000000000 |
686742779 / 1000000000 |
730894471 / 1000000000 |
476109344 / 1000000000 |
821257756 / 1000000000 |
412631162 / 1000000000 |
684782571 / 1000000000 |
857142857 / 1000000000 |
631368186 / 1000000000 |
600418087 / 1000000000 |
740933078 / 1000000000 |
713527835 / 1000000000 |
480114967 / 1000000000 |
589242756 / 1000000000 |
824664157 / 1000000000 |
697165919 / 1000000000 |
784109200 / 1000000000 |
580975003 / 1000000000 |
695091823 / 1000000000 |
407010985 / 1000000000 |
597613954 / 1000000000 |
641297489 / 1000000000 |
801579413 / 1000000000 |
609733417 / 1000000000 |
658910757 / 1000000000 |
561512533 / 1000000000 |
780865370 / 1000000000 |
588193505 / 1000000000 |
582275404 / 1000000000 |
815300011 / 1000000000 |
538324714 / 1000000000 |
833333333 / 1000000000 |
715596022 / 1000000000 |
923076923 / 1000000000 |
630757767 / 1000000000 |
620202090 / 1000000000 |
492336575 / 1000000000 |
950000000 / 1000000000 |
774579698 / 1000000000 |
634049112 / 1000000000 |
373935721 / 1000000000 |
778832451 / 1000000000 |
554185590 / 1000000000 |
711785087 / 1000000000 |
778482316 / 1000000000 |
668090712 / 1000000000 |
539417501 / 1000000000 |
554974584 / 1000000000 |
358547487 / 1000000000 |
550320086 / 1000000000 |
560366007 / 1000000000 |
872900779 / 1000000000 |
533233653 / 1000000000 |
534589304 / 1000000000 |
467274209 / 1000000000 |
0 / 1000000000 |
537365722 / 1000000000 |
637037159 / 1000000000 |
640373567 / 1000000000 |
539691827 / 1000000000 |
713485231 / 1000000000 |
851709407 / 1000000000 |
716904793 / 1000000000 |
626858770 / 1000000000 |
823775452 / 1000000000 |
732522209 / 1000000000 |
557434587 / 1000000000 |
716312217 / 1000000000 |
472052717 / 1000000000 |
647837201 / 1000000000 |
541963560 / 1000000000 |
491722574 / 1000000000 |
715831353 / 1000000000 |
781811650 / 1000000000 |
841221336 / 1000000000 |
709683391 / 1000000000 |
747560746 / 1000000000 |
797062434 / 1000000000 |
606431524 / 1000000000 |
751594144 / 1000000000 |
698589648 / 1000000000 |
728013743 / 1000000000 |
597849364 / 1000000000 |
689515508 / 1000000000 |
527308515 / 1000000000 |
613002251 / 1000000000 |
647340673 / 1000000000 |
833333333 / 1000000000 |
732079404 / 1000000000 |
734256093 / 1000000000 |
696562751 / 1000000000 |
488190337 / 1000000000 |
608471619 / 1000000000 |
513330910 / 1000000000 |
609356621 / 1000000000 |
933333333 / 1000000000 |
827195857 / 1000000000 |
937500000 / 1000000000 |
806895538 / 1000000000 |
668729985 / 1000000000 |
782440796 / 1000000000 |
705075234 / 1000000000 |
598125412 / 1000000000 |
536591995 / 1000000000 |
682390324 / 1000000000 |
645060138 / 1000000000 |
800000000 / 1000000000 |
621030698 / 1000000000 |
679552566 / 1000000000 |
756620737 / 1000000000 |
816351237 / 1000000000 |
854001669 / 1000000000 |
460730020 / 1000000000 |
428106998 / 1000000000 |
599180569 / 1000000000 |
714590469 / 1000000000 |
648284874 / 1000000000 |
534769831 / 1000000000 |
439150658 / 1000000000 |
944444444 / 1000000000 |
602740270 / 1000000000 |
550338124 / 1000000000 |
389239315 / 1000000000 |
689848336 / 1000000000 |
767103329 / 1000000000 |
465503238 / 1000000000 |
944444444 / 1000000000 |
560394375 / 1000000000 |
688276856 / 1000000000 |
675324915 / 1000000000 |
665969599 / 1000000000 |
937500000 / 1000000000 |
679683661 / 1000000000 |
0 / 1000000000 |
797641888 / 1000000000 |
560976221 / 1000000000 |
715161611 / 1000000000 |
504229581 / 1000000000 |
496524980 / 1000000000 |
857142857 / 1000000000 |
682475048 / 1000000000 |
465677833 / 1000000000 |
545880133 / 1000000000 |
548703902 / 1000000000 |
800000000 / 1000000000 |
547842850 / 1000000000 |
466479796 / 1000000000 |
414513772 / 1000000000 |
531558209 / 1000000000 |
673818593 / 1000000000 |
516148990 / 1000000000 |
613099277 / 1000000000 |
727913118 / 1000000000 |
541093654 / 1000000000 |
800000000 / 1000000000 |
844224373 / 1000000000 |
762716346 / 1000000000 |
644462420 / 1000000000 |
706932434 / 1000000000 |
800000000 / 1000000000 |
679965368 / 1000000000 |
663640300 / 1000000000 |
340647490 / 1000000000 |
637302023 / 1000000000 |
857142857 / 1000000000 |
937500000 / 1000000000 |
491749329 / 1000000000 |
531300971 / 1000000000 |
687794569 / 1000000000 |
704754997 / 1000000000 |
640412343 / 1000000000 |
551168803 / 1000000000 |
662742146 / 1000000000 |
712803484 / 1000000000 |
800000000 / 1000000000 |
712315088 / 1000000000 |
707803938 / 1000000000 |
914085600 / 1000000000 |
714248831 / 1000000000 |
817395675 / 1000000000 |
888888889 / 1000000000 |
688495055 / 1000000000 |
456338352 / 1000000000 |
746200475 / 1000000000 |
755745852 / 1000000000 |
761832332 / 1000000000 |
790327169 / 1000000000 |
737548802 / 1000000000 |
816404931 / 1000000000 |
569468317 / 1000000000 |
821222737 / 1000000000 |
554753406 / 1000000000 |
558043993 / 1000000000 |
771874494 / 1000000000 |
687398123 / 1000000000 |
609381714 / 1000000000 |
695568965 / 1000000000 |
683902487 / 1000000000 |
839590909 / 1000000000 |
715182720 / 1000000000 |
687079194 / 1000000000 |
562101797 / 1000000000 |
622982505 / 1000000000 |
604958984 / 1000000000 |
782149772 / 1000000000 |
801066105 / 1000000000 |
533654752 / 1000000000 |
759672773 / 1000000000 |
765544997 / 1000000000 |
586798633 / 1000000000 |
718653673 / 1000000000 |
727645574 / 1000000000 |
646682137 / 1000000000 |
548607730 / 1000000000 |
753582132 / 1000000000 |
797992472 / 1000000000 |
744950631 / 1000000000 |
443323018 / 1000000000 |
505324389 / 1000000000 |
538420358 / 1000000000 |
750959293 / 1000000000 |
503855845 / 1000000000 |
780577768 / 1000000000 |
504736432 / 1000000000 |
655284101 / 1000000000 |
678756742 / 1000000000 |
611144867 / 1000000000 |
655783372 / 1000000000 |
613539832 / 1000000000 |
807740452 / 1000000000 |
642111932 / 1000000000 |
584583831 / 1000000000 |
760019560 / 1000000000 |
496719053 / 1000000000 |
567084724 / 1000000000 |
809732622 / 1000000000 |
597928912 / 1000000000 |
693399344 / 1000000000 |
641968814 / 1000000000 |
656553707 / 1000000000 |
888888889 / 1000000000 |
837309091 / 1000000000 |
539299510 / 1000000000 |
737818617 / 1000000000 |
736047458 / 1000000000 |
819979351 / 1000000000 |
423850231 / 1000000000 |
650772952 / 1000000000 |
618290672 / 1000000000 |
699515485 / 1000000000 |
616511598 / 1000000000 |
608252018 / 1000000000 |
729644426 / 1000000000 |
729826131 / 1000000000 |
648326638 / 1000000000 |
571382908 / 1000000000 |
571505694 / 1000000000 |
617156466 / 1000000000 |
464693205 / 1000000000 |
442993639 / 1000000000 |
597660660 / 1000000000 |
294046588 / 1000000000 |
557341080 / 1000000000 |
663585702 / 1000000000 |
694103605 / 1000000000 |
728382988 / 1000000000 |
352344923 / 1000000000 |
514989864 / 1000000000 |
783922433 / 1000000000 |
502834990 / 1000000000 |
648343647 / 1000000000 |
432215603 / 1000000000 |
821687535 / 1000000000 |
501235933 / 1000000000 |
560402482 / 1000000000 |
591919598 / 1000000000 |
818038564 / 1000000000 |
783321882 / 1000000000 |
498802571 / 1000000000 |
684693864 / 1000000000 |
798251094 / 1000000000 |
727302590 / 1000000000 |
686773593 / 1000000000 |
543920552 / 1000000000 |
499309986 / 1000000000 |
592934676 / 1000000000 |
668017679 / 1000000000 |
298986571 / 1000000000 |
670450284 / 1000000000 |
598338668 / 1000000000 |
732345560 / 1000000000 |
791250688 / 1000000000 |
726192387 / 1000000000 |
526604084 / 1000000000 |
620075259 / 1000000000 |
839475188 / 1000000000 |
797245308 / 1000000000 |
772540032 / 1000000000 |
626774704 / 1000000000 |
664207878 / 1000000000 |
643336453 / 1000000000 |
708863861 / 1000000000 |
735609858 / 1000000000 |
635544086 / 1000000000 |
707512480 / 1000000000 |
716573292 / 1000000000 |
774803254 / 1000000000 |
736114015 / 1000000000 |
822870000 / 1000000000 |
584065233 / 1000000000 |
448968056 / 1000000000 |
674176836 / 1000000000 |
640077848 / 1000000000 |
682782471 / 1000000000 |
590509180 / 1000000000 |
332820604 / 1000000000 |
933333333 / 1000000000 |
661945909 / 1000000000 |
832881771 / 1000000000 |
603314310 / 1000000000 |
434254108 / 1000000000 |
800000000 / 1000000000 |
575089038 / 1000000000 |
798934731 / 1000000000 |
792385576 / 1000000000 |
596705119 / 1000000000 |
689300579 / 1000000000 |
551702621 / 1000000000 |
556821594 / 1000000000 |
752641769 / 1000000000 |
0 / 1000000000 |
800000000 / 1000000000 |
749108751 / 1000000000 |
782738809 / 1000000000 |
511619993 / 1000000000 |
800000000 / 1000000000 |
689223562 / 1000000000 |
833333333 / 1000000000 |
562260928 / 1000000000 |
619258564 / 1000000000 |
857142857 / 1000000000 |
629187935 / 1000000000 |
325668063 / 1000000000 |
699488066 / 1000000000 |
685910081 / 1000000000 |
691286034 / 1000000000 |
765035758 / 1000000000 |
941176471 / 1000000000 |
492380931 / 1000000000 |
493212186 / 1000000000 |
937500000 / 1000000000 |
503324849 / 1000000000 |
503596509 / 1000000000 |
686876414 / 1000000000 |
437704817 / 1000000000 |
735359079 / 1000000000 |
537819121 / 1000000000 |
578892084 / 1000000000 |
444172985 / 1000000000 |
460857854 / 1000000000 |
650173736 / 1000000000 |
644669597 / 1000000000 |
521392609 / 1000000000 |
923076923 / 1000000000 |
759649497 / 1000000000 |
933333333 / 1000000000 |
647742842 / 1000000000 |
861260322 / 1000000000 |
797126962 / 1000000000 |
630915286 / 1000000000 |
580857866 / 1000000000 |
572737757 / 1000000000 |
539878537 / 1000000000 |
693193894 / 1000000000 |
941176471 / 1000000000 |
595280933 / 1000000000 |
633863243 / 1000000000 |
822806350 / 1000000000 |
579880962 / 1000000000 |
430342917 / 1000000000 |
769231618 / 1000000000 |
618887979 / 1000000000 |
622002157 / 1000000000 |
833333333 / 1000000000 |
696191239 / 1000000000 |
857142857 / 1000000000 |
557100635 / 1000000000 |
800103309 / 1000000000 |
617658184 / 1000000000 |
659838094 / 1000000000 |
803763849 / 1000000000 |
800244827 / 1000000000 |
0 / 1000000000 |
777688717 / 1000000000 |
733359554 / 1000000000 |
479505672 / 1000000000 |
525448694 / 1000000000 |
763442844 / 1000000000 |
730623058 / 1000000000 |
373184498 / 1000000000 |
394693811 / 1000000000 |
699534577 / 1000000000 |
619315715 / 1000000000 |
719979416 / 1000000000 |
599168242 / 1000000000 |
809667326 / 1000000000 |
417494384 / 1000000000 |
751414286 / 1000000000 |
790140485 / 1000000000 |
808202693 / 1000000000 |
576994284 / 1000000000 |
401220035 / 1000000000 |
923076923 / 1000000000 |
784930743 / 1000000000 |
0 / 1000000000 |
562869414 / 1000000000 |
683993135 / 1000000000 |
712266667 / 1000000000 |
771473477 / 1000000000 |
753968756 / 1000000000 |
513641942 / 1000000000 |
487430748 / 1000000000 |
675937545 / 1000000000 |
618494057 / 1000000000 |
549495482 / 1000000000 |
804763162 / 1000000000 |
581880809 / 1000000000 |
704273417 / 1000000000 |
565871983 / 1000000000 |
611651838 / 1000000000 |
611544197 / 1000000000 |
702853269 / 1000000000 |
800000000 / 1000000000 |
564052199 / 1000000000 |
567807690 / 1000000000 |
769448197 / 1000000000 |
771010638 / 1000000000 |
635019084 / 1000000000 |
665042718 / 1000000000 |
767042292 / 1000000000 |
762033177 / 1000000000 |
578056942 / 1000000000 |
624263819 / 1000000000 |
655667076 / 1000000000 |
640054681 / 1000000000 |
706909156 / 1000000000 |
711506697 / 1000000000 |
679309395 / 1000000000 |
381302994 / 1000000000 |
565489351 / 1000000000 |
800592710 / 1000000000 |
560364235 / 1000000000 |
519352428 / 1000000000 |
753589482 / 1000000000 |
709200000 / 1000000000 |
590549508 / 1000000000 |
605146907 / 1000000000 |
532109638 / 1000000000 |
892727963 / 1000000000 |
638894412 / 1000000000 |
579306292 / 1000000000 |
567003274 / 1000000000 |
435519765 / 1000000000 |
794228625 / 1000000000 |
504204369 / 1000000000 |
585305992 / 1000000000 |
461253939 / 1000000000 |
833333333 / 1000000000 |
626448502 / 1000000000 |
0 / 1000000000 |
756728979 / 1000000000 |
947368421 / 1000000000 |
660463930 / 1000000000 |
659908733 / 1000000000 |
576813333 / 1000000000 |
659389769 / 1000000000 |
755304586 / 1000000000 |
612718835 / 1000000000 |
752575908 / 1000000000 |
518378160 / 1000000000 |
706050000 / 1000000000 |
793026630 / 1000000000 |
693201672 / 1000000000 |
526557034 / 1000000000 |
414734981 / 1000000000 |
428814556 / 1000000000 |
799937721 / 1000000000 |
800000000 / 1000000000 |
715346914 / 1000000000 |
689218461 / 1000000000 |
700976810 / 1000000000 |
833333333 / 1000000000 |
655429114 / 1000000000 |
507062905 / 1000000000 |
706090620 / 1000000000 |
564092805 / 1000000000 |
654858014 / 1000000000 |
711779749 / 1000000000 |
700332161 / 1000000000 |
332767788 / 1000000000 |
593231788 / 1000000000 |
582880522 / 1000000000 |
753466229 / 1000000000 |
647698538 / 1000000000 |
926863812 / 1000000000 |
665474692 / 1000000000 |
718446775 / 1000000000 |
811939416 / 1000000000 |
833333333 / 1000000000 |
616270168 / 1000000000 |
646456020 / 1000000000 |
675317398 / 1000000000 |
518602772 / 1000000000 |
452076527 / 1000000000 |
709246870 / 1000000000 |
669065949 / 1000000000 |
420845613 / 1000000000 |
687046043 / 1000000000 |
648100000 / 1000000000 |
432925615 / 1000000000 |
737599411 / 1000000000 |
585458605 / 1000000000 |
729449366 / 1000000000 |
780100000 / 1000000000 |
570630108 / 1000000000 |
857142857 / 1000000000 |
579671221 / 1000000000 |
914945032 / 1000000000 |
535030180 / 1000000000 |
697590759 / 1000000000 |
928571429 / 1000000000 |
674603388 / 1000000000 |
778325000 / 1000000000 |
723714867 / 1000000000 |
555695050 / 1000000000 |
747028074 / 1000000000 |
933333333 / 1000000000 |
558541697 / 1000000000 |
693280036 / 1000000000 |
594777310 / 1000000000 |
554375523 / 1000000000 |
520228907 / 1000000000 |
707202275 / 1000000000 |
728947293 / 1000000000 |
483957736 / 1000000000 |
660276102 / 1000000000 |
684761533 / 1000000000 |
742988825 / 1000000000 |
587625195 / 1000000000 |
536593583 / 1000000000 |
566178553 / 1000000000 |
837367291 / 1000000000 |
622090249 / 1000000000 |
670319356 / 1000000000 |
571183860 / 1000000000 |
811702334 / 1000000000 |
472987229 / 1000000000 |
534397967 / 1000000000 |
705328183 / 1000000000 |
646383052 / 1000000000 |
692571008 / 1000000000 |
543819308 / 1000000000 |
675078339 / 1000000000 |
730614032 / 1000000000 |
501094592 / 1000000000 |
947368421 / 1000000000 |
453921935 / 1000000000 |
399012677 / 1000000000 |
455138832 / 1000000000 |
699204805 / 1000000000 |
748639444 / 1000000000 |
543017555 / 1000000000 |
469823678 / 1000000000 |
697181070 / 1000000000 |
768020094 / 1000000000 |
741767348 / 1000000000 |
366591297 / 1000000000 |
498748253 / 1000000000 |
707724739 / 1000000000 |
551389633 / 1000000000 |
775306389 / 1000000000 |
800000000 / 1000000000 |
702284197 / 1000000000 |
596679293 / 1000000000 |
950000000 / 1000000000 |
541866889 / 1000000000 |
684901531 / 1000000000 |
833333333 / 1000000000 |
497224027 / 1000000000 |
748655508 / 1000000000 |
888888889 / 1000000000 |
570340527 / 1000000000 |
489877379 / 1000000000 |
782681553 / 1000000000 |
827174673 / 1000000000 |
722258606 / 1000000000 |
450323466 / 1000000000 |
888888889 / 1000000000 |
716339952 / 1000000000 |
774029220 / 1000000000 |
674792198 / 1000000000 |
563303635 / 1000000000 |
526093482 / 1000000000 |
485591273 / 1000000000 |
702766667 / 1000000000 |
631555950 / 1000000000 |
788451181 / 1000000000 |
845820754 / 1000000000 |
728464322 / 1000000000 |
705473491 / 1000000000 |
602624579 / 1000000000 |
507116224 / 1000000000 |
822207690 / 1000000000 |
719892335 / 1000000000 |
721518994 / 1000000000 |
916666667 / 1000000000 |
950000000 / 1000000000 |
628103806 / 1000000000 |
575951838 / 1000000000 |
616104894 / 1000000000 |
786092793 / 1000000000 |
842670723 / 1000000000 |
660705521 / 1000000000 |
875000000 / 1000000000 |
658010629 / 1000000000 |
810792491 / 1000000000 |
844634034 / 1000000000 |
875000000 / 1000000000 |
853961342 / 1000000000 |
882006667 / 1000000000 |
810963978 / 1000000000 |
797676876 / 1000000000 |
656070798 / 1000000000 |
507666613 / 1000000000 |
673779853 / 1000000000 |
553199629 / 1000000000 |
665994774 / 1000000000 |
774499772 / 1000000000 |
584461020 / 1000000000 |
650310211 / 1000000000 |
928571429 / 1000000000 |
677790627 / 1000000000 |
754952615 / 1000000000 |
378053694 / 1000000000 |
628240475 / 1000000000 |
588411872 / 1000000000 |
439248545 / 1000000000 |
643340516 / 1000000000 |
702043744 / 1000000000 |
832167281 / 1000000000 |
937500000 / 1000000000 |
678547609 / 1000000000 |
665390893 / 1000000000 |
841852199 / 1000000000 |
594300041 / 1000000000 |
475621077 / 1000000000 |
822540000 / 1000000000 |
645387970 / 1000000000 |
262539741 / 1000000000 |
584569203 / 1000000000 |
734587086 / 1000000000 |
659467127 / 1000000000 |
619517370 / 1000000000 |
921574185 / 1000000000 |
742386274 / 1000000000 |
659951089 / 1000000000 |
823122146 / 1000000000 |
475113923 / 1000000000 |
498899930 / 1000000000 |
786873581 / 1000000000 |
536412493 / 1000000000 |
512939389 / 1000000000 |
465583861 / 1000000000 |
431074091 / 1000000000 |
383579793 / 1000000000 |
715071938 / 1000000000 |
831123686 / 1000000000 |
563656730 / 1000000000 |
326280388 / 1000000000 |
378011782 / 1000000000 |
545937552 / 1000000000 |
782506235 / 1000000000 |
631151672 / 1000000000 |
426223888 / 1000000000 |
716081713 / 1000000000 |
647012857 / 1000000000 |
616357589 / 1000000000 |
629429651 / 1000000000 |
573209370 / 1000000000 |
433480580 / 1000000000 |
425418296 / 1000000000 |
667523114 / 1000000000 |
868348896 / 1000000000 |
857142857 / 1000000000 |
478668637 / 1000000000 |
742200653 / 1000000000 |
730496042 / 1000000000 |
780865587 / 1000000000 |
592680580 / 1000000000 |
363882752 / 1000000000 |
584885419 / 1000000000 |
568409203 / 1000000000 |
785991113 / 1000000000 |
659075350 / 1000000000 |
765319825 / 1000000000 |
710294158 / 1000000000 |
702616054 / 1000000000 |
706275723 / 1000000000 |
641883347 / 1000000000 |
888888889 / 1000000000 |
806635006 / 1000000000 |
698071045 / 1000000000 |
643442501 / 1000000000 |
777972316 / 1000000000 |
676697031 / 1000000000 |
517995683 / 1000000000 |
669744375 / 1000000000 |
688888045 / 1000000000 |
726212185 / 1000000000 |
712809588 / 1000000000 |
623658369 / 1000000000 |
839047828 / 1000000000 |
675025987 / 1000000000 |
708682449 / 1000000000 |
845086307 / 1000000000 |
495477339 / 1000000000 |
742987156 / 1000000000 |
815278517 / 1000000000 |
711200000 / 1000000000 |
541428453 / 1000000000 |
701136443 / 1000000000 |
937500000 / 1000000000 |
609637706 / 1000000000 |
413316490 / 1000000000 |
849539147 / 1000000000 |
227333333 / 1000000000 |
412329967 / 1000000000 |
509014333 / 1000000000 |
716550000 / 1000000000 |
774874792 / 1000000000 |
923076923 / 1000000000 |
765851092 / 1000000000 |
804139949 / 1000000000 |
795983451 / 1000000000 |
539679885 / 1000000000 |
720888410 / 1000000000 |
706386651 / 1000000000 |
743465183 / 1000000000 |
715955018 / 1000000000 |
720654897 / 1000000000 |
823138732 / 1000000000 |
769458782 / 1000000000 |
548761545 / 1000000000 |
484583351 / 1000000000 |
515974732 / 1000000000 |
732664906 / 1000000000 |
480414077 / 1000000000 |
660468011 / 1000000000 |
321988912 / 1000000000 |
791139371 / 1000000000 |
596030068 / 1000000000 |
867407988 / 1000000000 |
900000000 / 1000000000 |
523203721 / 1000000000 |
773708839 / 1000000000 |
571779511 / 1000000000 |
809792863 / 1000000000 |
432940703 / 1000000000 |
758182902 / 1000000000 |
833333333 / 1000000000 |
909090909 / 1000000000 |
594754127 / 1000000000 |
820958146 / 1000000000 |
690788504 / 1000000000 |
383841011 / 1000000000 |
814306431 / 1000000000 |
880913333 / 1000000000 |
554256586 / 1000000000 |
632719112 / 1000000000 |
687421568 / 1000000000 |
350946911 / 1000000000 |
554710879 / 1000000000 |
416391258 / 1000000000 |
900000000 / 1000000000 |
771732920 / 1000000000 |
780487687 / 1000000000 |
669933576 / 1000000000 |
533976900 / 1000000000 |
790811252 / 1000000000 |
311572812 / 1000000000 |
694976064 / 1000000000 |
748903945 / 1000000000 |
691954681 / 1000000000 |
724251836 / 1000000000 |
602188687 / 1000000000 |
797166856 / 1000000000 |
563406852 / 1000000000 |
700405570 / 1000000000 |
704366667 / 1000000000 |
503905449 / 1000000000 |
731333735 / 1000000000 |
749037519 / 1000000000 |
662048824 / 1000000000 |
707140342 / 1000000000 |
800650070 / 1000000000 |
675836684 / 1000000000 |
715051156 / 1000000000 |
565027106 / 1000000000 |
450328748 / 1000000000 |
567457802 / 1000000000 |
629703795 / 1000000000 |
448918417 / 1000000000 |
590543649 / 1000000000 |
635751106 / 1000000000 |
596299769 / 1000000000 |
508498640 / 1000000000 |
745400859 / 1000000000 |
638509246 / 1000000000 |
397368821 / 1000000000 |
686952558 / 1000000000 |
807847458 / 1000000000 |
642855321 / 1000000000 |
667392949 / 1000000000 |
674259439 / 1000000000 |
592406011 / 1000000000 |
609114749 / 1000000000 |
700369444 / 1000000000 |
691686900 / 1000000000 |
776161796 / 1000000000 |
581843737 / 1000000000 |
561617413 / 1000000000 |
633994955 / 1000000000 |
489691375 / 1000000000 |
491983411 / 1000000000 |
613185243 / 1000000000 |
663515355 / 1000000000 |
611963716 / 1000000000 |
658217297 / 1000000000 |
734138310 / 1000000000 |
402821642 / 1000000000 |
447701100 / 1000000000 |
688482225 / 1000000000 |
800000000 / 1000000000 |
572208880 / 1000000000 |
626256050 / 1000000000 |
737256316 / 1000000000 |
730484225 / 1000000000 |
461795277 / 1000000000 |
589155175 / 1000000000 |
468721581 / 1000000000 |
916666667 / 1000000000 |
549298966 / 1000000000 |
541255247 / 1000000000 |
944444444 / 1000000000 |
909090909 / 1000000000 |
535384941 / 1000000000 |
721846619 / 1000000000 |
772465763 / 1000000000 |
514764199 / 1000000000 |
550279738 / 1000000000 |
916666667 / 1000000000 |
581498200 / 1000000000 |
757371429 / 1000000000 |
532112598 / 1000000000 |
458157388 / 1000000000 |
429509246 / 1000000000 |
928571429 / 1000000000 |
539045232 / 1000000000 |
517809543 / 1000000000 |
746331212 / 1000000000 |
414751641 / 1000000000 |
944444444 / 1000000000 |
941176471 / 1000000000 |
634797187 / 1000000000 |
430501423 / 1000000000 |
787448699 / 1000000000 |
800334027 / 1000000000 |
848041698 / 1000000000 |
794166078 / 1000000000 |
812558924 / 1000000000 |
786223950 / 1000000000 |
626866893 / 1000000000 |
682311872 / 1000000000 |
761005115 / 1000000000 |
550706832 / 1000000000 |
583550536 / 1000000000 |
625904228 / 1000000000 |
677445816 / 1000000000 |
504413786 / 1000000000 |
850732810 / 1000000000 |
487999483 / 1000000000 |
824629200 / 1000000000 |
548489925 / 1000000000 |
539490308 / 1000000000 |
670601247 / 1000000000 |
0 / 1000000000 |
813553634 / 1000000000 |
454176284 / 1000000000 |
751063316 / 1000000000 |
366784918 / 1000000000 |
612114944 / 1000000000 |
502166525 / 1000000000 |
544785727 / 1000000000 |
680690818 / 1000000000 |
751014515 / 1000000000 |
574789868 / 1000000000 |
606020878 / 1000000000 |
411809208 / 1000000000 |
641461354 / 1000000000 |
837389078 / 1000000000 |
643440764 / 1000000000 |
662846257 / 1000000000 |
722747327 / 1000000000 |
666012044 / 1000000000 |
554283674 / 1000000000 |
576066127 / 1000000000 |
720096328 / 1000000000 |
541325867 / 1000000000 |
759640299 / 1000000000 |
583435323 / 1000000000 |
640706895 / 1000000000 |
916666667 / 1000000000 |
634754156 / 1000000000 |
336544366 / 1000000000 |
800000000 / 1000000000 |
520506905 / 1000000000 |
524233391 / 1000000000 |
591766292 / 1000000000 |
524235791 / 1000000000 |
618044508 / 1000000000 |
822294644 / 1000000000 |
727817613 / 1000000000 |
800460078 / 1000000000 |
581277111 / 1000000000 |
578316024 / 1000000000 |
714400710 / 1000000000 |
616942324 / 1000000000 |
652523212 / 1000000000 |
639384975 / 1000000000 |
517845981 / 1000000000 |
626725222 / 1000000000 |
701536172 / 1000000000 |
748752307 / 1000000000 |
650173239 / 1000000000 |
411471366 / 1000000000 |
747318989 / 1000000000 |
705026943 / 1000000000 |
835286796 / 1000000000 |
631056130 / 1000000000 |
857142857 / 1000000000 |
848671963 / 1000000000 |
384236556 / 1000000000 |
506047435 / 1000000000 |
539578254 / 1000000000 |
818090242 / 1000000000 |
651507168 / 1000000000 |
618002875 / 1000000000 |
522209346 / 1000000000 |
653702474 / 1000000000 |
742184832 / 1000000000 |
686718910 / 1000000000 |
436428409 / 1000000000 |
502045833 / 1000000000 |
555999275 / 1000000000 |
713270098 / 1000000000 |
703393133 / 1000000000 |
553764539 / 1000000000 |
514862927 / 1000000000 |
784397910 / 1000000000 |
774627872 / 1000000000 |
685921362 / 1000000000 |
937500000 / 1000000000 |
688184150 / 1000000000 |
731638366 / 1000000000 |
875000000 / 1000000000 |
875000000 / 1000000000 |
533606382 / 1000000000 |
937500000 / 1000000000 |
469755963 / 1000000000 |
555179459 / 1000000000 |
738122176 / 1000000000 |
562085842 / 1000000000 |
462529271 / 1000000000 |
658067269 / 1000000000 |
757246682 / 1000000000 |
514914430 / 1000000000 |
627137103 / 1000000000 |
582992603 / 1000000000 |
564024504 / 1000000000 |
630957540 / 1000000000 |
670624423 / 1000000000 |
573462676 / 1000000000 |
469547509 / 1000000000 |
475342187 / 1000000000 |
781164889 / 1000000000 |
668529384 / 1000000000 |
916666667 / 1000000000 |
581944393 / 1000000000 |
675982512 / 1000000000 |
770550383 / 1000000000 |
725209355 / 1000000000 |
709100000 / 1000000000 |
806635134 / 1000000000 |
686246813 / 1000000000 |
578333473 / 1000000000 |
888081250 / 1000000000 |
808231350 / 1000000000 |
482524289 / 1000000000 |
681301792 / 1000000000 |
928571429 / 1000000000 |
739505844 / 1000000000 |
754413120 / 1000000000 |
750335979 / 1000000000 |
723762761 / 1000000000 |
661447815 / 1000000000 |
697432410 / 1000000000 |
621860201 / 1000000000 |
630046324 / 1000000000 |
637316933 / 1000000000 |
695521904 / 1000000000 |
721253742 / 1000000000 |
689478937 / 1000000000 |
806100000 / 1000000000 |
553412277 / 1000000000 |
556447808 / 1000000000 |
741894640 / 1000000000 |
544449399 / 1000000000 |
818052613 / 1000000000 |
457360657 / 1000000000 |
692606712 / 1000000000 |
661705931 / 1000000000 |
800716866 / 1000000000 |
300810634 / 1000000000 |
822299146 / 1000000000 |
0 / 1000000000 |
508856034 / 1000000000 |
888888889 / 1000000000 |
426118907 / 1000000000 |
384745866 / 1000000000 |
578356419 / 1000000000 |
723167963 / 1000000000 |
549815424 / 1000000000 |
694346735 / 1000000000 |
0 / 1000000000 |
439003489 / 1000000000 |
678383830 / 1000000000 |
628436205 / 1000000000 |
726181671 / 1000000000 |
941176471 / 1000000000 |
510774181 / 1000000000 |
642651103 / 1000000000 |
402042172 / 1000000000 |
727475711 / 1000000000 |
623617476 / 1000000000 |
701833333 / 1000000000 |
937500000 / 1000000000 |
661827211 / 1000000000 |
941176471 / 1000000000 |
644965209 / 1000000000 |
727390611 / 1000000000 |
687743706 / 1000000000 |
432879080 / 1000000000 |
697412722 / 1000000000 |
617820363 / 1000000000 |
602541437 / 1000000000 |
520312871 / 1000000000 |
472101489 / 1000000000 |
585794820 / 1000000000 |
649707665 / 1000000000 |
667324438 / 1000000000 |
766749861 / 1000000000 |
658929579 / 1000000000 |
635609764 / 1000000000 |
528558056 / 1000000000 |
545807413 / 1000000000 |
853058908 / 1000000000 |
764321447 / 1000000000 |
446134996 / 1000000000 |
517121576 / 1000000000 |
833638087 / 1000000000 |
807076878 / 1000000000 |
544383732 / 1000000000 |
765983474 / 1000000000 |
875000000 / 1000000000 |
480103085 / 1000000000 |
646504844 / 1000000000 |
617733737 / 1000000000 |
619012350 / 1000000000 |
596051941 / 1000000000 |
622216437 / 1000000000 |
941176471 / 1000000000 |
618758769 / 1000000000 |
673385331 / 1000000000 |
950000000 / 1000000000 |
944444444 / 1000000000 |
916666667 / 1000000000 |
688847145 / 1000000000 |
571615527 / 1000000000 |
557194810 / 1000000000 |
738643424 / 1000000000 |
667777041 / 1000000000 |
690347486 / 1000000000 |
446708019 / 1000000000 |
866701234 / 1000000000 |
923076923 / 1000000000 |
909090909 / 1000000000 |
822536995 / 1000000000 |
749560850 / 1000000000 |
840063594 / 1000000000 |
731211435 / 1000000000 |
916666667 / 1000000000 |
654783833 / 1000000000 |
695194003 / 1000000000 |
634653216 / 1000000000 |
708160512 / 1000000000 |
597088598 / 1000000000 |
479071396 / 1000000000 |
941176471 / 1000000000 |
814879687 / 1000000000 |
677806297 / 1000000000 |
717807911 / 1000000000 |
639908456 / 1000000000 |
812604825 / 1000000000 |
756162975 / 1000000000 |
304681197 / 1000000000 |
688255149 / 1000000000 |
605191114 / 1000000000 |
482788156 / 1000000000 |
712977871 / 1000000000 |
576555251 / 1000000000 |
797903319 / 1000000000 |
828798172 / 1000000000 |
665770100 / 1000000000 |
849276223 / 1000000000 |
522732742 / 1000000000 |
677732936 / 1000000000 |
681036064 / 1000000000 |
622606890 / 1000000000 |
950000000 / 1000000000 |
560039724 / 1000000000 |
744926436 / 1000000000 |
485661234 / 1000000000 |
887144973 / 1000000000 |
632281398 / 1000000000 |
466228002 / 1000000000 |
511284281 / 1000000000 |
801045933 / 1000000000 |
656616619 / 1000000000 |
597221085 / 1000000000 |
937500000 / 1000000000 |
823192765 / 1000000000 |
638004481 / 1000000000 |
620967476 / 1000000000 |
611095528 / 1000000000 |
666948048 / 1000000000 |
822902864 / 1000000000 |
923076923 / 1000000000 |
568649333 / 1000000000 |
693153726 / 1000000000 |
476852727 / 1000000000 |
640332388 / 1000000000 |
644547490 / 1000000000 |
717153286 / 1000000000 |
570973247 / 1000000000 |
423613053 / 1000000000 |
670523016 / 1000000000 |
673916073 / 1000000000 |
760804938 / 1000000000 |
786911071 / 1000000000 |
575283228 / 1000000000 |
817728592 / 1000000000 |
923076923 / 1000000000 |
538774599 / 1000000000 |
524266992 / 1000000000 |
589839751 / 1000000000 |
663096265 / 1000000000 |
512043504 / 1000000000 |
511030689 / 1000000000 |
397376892 / 1000000000 |
801943825 / 1000000000 |
590445252 / 1000000000 |
548596144 / 1000000000 |
664450154 / 1000000000 |
731996207 / 1000000000 |
769816215 / 1000000000 |
909090909 / 1000000000 |
391252999 / 1000000000 |
598465410 / 1000000000 |
479687542 / 1000000000 |
763031115 / 1000000000 |
827217847 / 1000000000 |
716208027 / 1000000000 |
565023113 / 1000000000 |
859334783 / 1000000000 |
449775671 / 1000000000 |
637232649 / 1000000000 |
607203797 / 1000000000 |
796772832 / 1000000000 |
738831669 / 1000000000 |
768007581 / 1000000000 |
535645907 / 1000000000 |
916666667 / 1000000000 |
420047564 / 1000000000 |
635000691 / 1000000000 |
592604873 / 1000000000 |
522861347 / 1000000000 |
671210825 / 1000000000 |
301786884 / 1000000000 |
685828006 / 1000000000 |
441801230 / 1000000000 |
473855589 / 1000000000 |
695045587 / 1000000000 |
615405289 / 1000000000 |
741222385 / 1000000000 |
568850180 / 1000000000 |
687557647 / 1000000000 |
695826214 / 1000000000 |
330935134 / 1000000000 |
638760175 / 1000000000 |
684445290 / 1000000000 |
833333333 / 1000000000 |
813540096 / 1000000000 |
557594287 / 1000000000 |
764013236 / 1000000000 |
443003201 / 1000000000 |
399155263 / 1000000000 |
735292805 / 1000000000 |
684549479 / 1000000000 |
691654178 / 1000000000 |
587766866 / 1000000000 |
685231491 / 1000000000 |
488536279 / 1000000000 |
776455517 / 1000000000 |
638341831 / 1000000000 |
322743687 / 1000000000 |
748975381 / 1000000000 |
554261686 / 1000000000 |
589930436 / 1000000000 |
519875412 / 1000000000 |
423667656 / 1000000000 |
618571519 / 1000000000 |
525932232 / 1000000000 |
462931622 / 1000000000 |
661800650 / 1000000000 |
657004826 / 1000000000 |
479565940 / 1000000000 |
820893094 / 1000000000 |
624733912 / 1000000000 |
856839762 / 1000000000 |
596080767 / 1000000000 |
678930945 / 1000000000 |
590253196 / 1000000000 |
749191298 / 1000000000 |
525804991 / 1000000000 |
590401658 / 1000000000 |
722386019 / 1000000000 |
256022155 / 1000000000 |
823923248 / 1000000000 |
512400855 / 1000000000 |
786464965 / 1000000000 |
534238491 / 1000000000 |
524717327 / 1000000000 |
941176471 / 1000000000 |
721048819 / 1000000000 |
835661133 / 1000000000 |
637265202 / 1000000000 |
665587564 / 1000000000 |
445514717 / 1000000000 |
442947352 / 1000000000 |
800000000 / 1000000000 |
618233292 / 1000000000 |
624382214 / 1000000000 |
518263769 / 1000000000 |
595559429 / 1000000000 |
570542028 / 1000000000 |
766789266 / 1000000000 |
611667929 / 1000000000 |
875000000 / 1000000000 |
787101823 / 1000000000 |
400630831 / 1000000000 |
582175865 / 1000000000 |
746035814 / 1000000000 |
641314448 / 1000000000 |
732906015 / 1000000000 |
742304045 / 1000000000 |
862835025 / 1000000000 |
804911168 / 1000000000 |
370651430 / 1000000000 |
686863362 / 1000000000 |
489543550 / 1000000000 |
461945698 / 1000000000 |
684437679 / 1000000000 |
606721182 / 1000000000 |
722547237 / 1000000000 |
544522660 / 1000000000 |
629167149 / 1000000000 |
886060010 / 1000000000 |
638689393 / 1000000000 |
798431278 / 1000000000 |
578320155 / 1000000000 |
563720929 / 1000000000 |
833096665 / 1000000000 |
469910660 / 1000000000 |
460867751 / 1000000000 |
719685374 / 1000000000 |
503751648 / 1000000000 |
648912080 / 1000000000 |
616544892 / 1000000000 |
826954895 / 1000000000 |
857142857 / 1000000000 |
788424279 / 1000000000 |
683965520 / 1000000000 |
544990368 / 1000000000 |
585399459 / 1000000000 |
802535546 / 1000000000 |
561147374 / 1000000000 |
358539077 / 1000000000 |
723908055 / 1000000000 |
809057244 / 1000000000 |
717300756 / 1000000000 |
510316690 / 1000000000 |
630158449 / 1000000000 |
398800716 / 1000000000 |
649161564 / 1000000000 |
517606577 / 1000000000 |
311507424 / 1000000000 |
599372454 / 1000000000 |
720723368 / 1000000000 |
833333333 / 1000000000 |
857142857 / 1000000000 |
648619903 / 1000000000 |
435018188 / 1000000000 |
709510896 / 1000000000 |
720603207 / 1000000000 |
682859794 / 1000000000 |
608434582 / 1000000000 |
571986217 / 1000000000 |
833333333 / 1000000000 |
557574147 / 1000000000 |
365586367 / 1000000000 |
557021866 / 1000000000 |
557615069 / 1000000000 |
800000000 / 1000000000 |
647041737 / 1000000000 |
577428579 / 1000000000 |
620442962 / 1000000000 |
628813839 / 1000000000 |
408243195 / 1000000000 |
699866457 / 1000000000 |
810228634 / 1000000000 |
664908313 / 1000000000 |
415812730 / 1000000000 |
762254848 / 1000000000 |
876441991 / 1000000000 |
808448175 / 1000000000 |
782487500 / 1000000000 |
863146525 / 1000000000 |
787684838 / 1000000000 |
909090909 / 1000000000 |
695094136 / 1000000000 |
0 / 1000000000 |
627180118 / 1000000000 |
937500000 / 1000000000 |
586107465 / 1000000000 |
743635489 / 1000000000 |
928571429 / 1000000000 |
435301171 / 1000000000 |
651384624 / 1000000000 |
482098101 / 1000000000 |
531172302 / 1000000000 |
888888889 / 1000000000 |
493146550 / 1000000000 |
690904231 / 1000000000 |
843881508 / 1000000000 |
616589088 / 1000000000 |
772925988 / 1000000000 |
579182201 / 1000000000 |
460656085 / 1000000000 |
694266005 / 1000000000 |
661068967 / 1000000000 |
866495765 / 1000000000 |
771346437 / 1000000000 |
612796623 / 1000000000 |
699344102 / 1000000000 |
613032149 / 1000000000 |
657926988 / 1000000000 |
339358877 / 1000000000 |
775341413 / 1000000000 |
622096287 / 1000000000 |
576118800 / 1000000000 |
735083076 / 1000000000 |
614509296 / 1000000000 |
0 / 1000000000 |
592339996 / 1000000000 |
740648562 / 1000000000 |
683364601 / 1000000000 |
524806270 / 1000000000 |
815634361 / 1000000000 |
420165431 / 1000000000 |
916666667 / 1000000000 |
170942069 / 1000000000 |
563613553 / 1000000000 |
523196617 / 1000000000 |
817184213 / 1000000000 |
600916994 / 1000000000 |
667642300 / 1000000000 |
684254310 / 1000000000 |
678941077 / 1000000000 |
643596610 / 1000000000 |
753531772 / 1000000000 |
652778547 / 1000000000 |
528179395 / 1000000000 |
788200841 / 1000000000 |
743269524 / 1000000000 |
360490294 / 1000000000 |
473333182 / 1000000000 |
721281636 / 1000000000 |
714240371 / 1000000000 |
798403922 / 1000000000 |
760203902 / 1000000000 |
710640164 / 1000000000 |
541903595 / 1000000000 |
737245306 / 1000000000 |
701106324 / 1000000000 |
875000000 / 1000000000 |
594882346 / 1000000000 |
785085714 / 1000000000 |
857542108 / 1000000000 |
545204278 / 1000000000 |
606460726 / 1000000000 |
751082926 / 1000000000 |
447021556 / 1000000000 |
771411799 / 1000000000 |
827829441 / 1000000000 |
391283207 / 1000000000 |
747704033 / 1000000000 |
580780714 / 1000000000 |
731899127 / 1000000000 |
679328323 / 1000000000 |
835553107 / 1000000000 |
490601754 / 1000000000 |
544771906 / 1000000000 |
755651085 / 1000000000 |
489459893 / 1000000000 |
735366011 / 1000000000 |
585507765 / 1000000000 |
601508804 / 1000000000 |
778348185 / 1000000000 |
619967397 / 1000000000 |
523888425 / 1000000000 |
730964624 / 1000000000 |
500311484 / 1000000000 |
556434485 / 1000000000 |
719991860 / 1000000000 |
523060982 / 1000000000 |
595927519 / 1000000000 |
794801956 / 1000000000 |
406164215 / 1000000000 |
705751334 / 1000000000 |
672523931 / 1000000000 |
933333333 / 1000000000 |
655622459 / 1000000000 |
706089871 / 1000000000 |
700418292 / 1000000000 |
579809448 / 1000000000 |
909090909 / 1000000000 |
687573090 / 1000000000 |
644682913 / 1000000000 |
615337693 / 1000000000 |
636244213 / 1000000000 |
572800154 / 1000000000 |
617874555 / 1000000000 |
846170097 / 1000000000 |
756310787 / 1000000000 |
507917747 / 1000000000 |
712342753 / 1000000000 |
941176471 / 1000000000 |
819728958 / 1000000000 |
692685953 / 1000000000 |
636609507 / 1000000000 |
876806754 / 1000000000 |
800000000 / 1000000000 |
857142857 / 1000000000 |
549283835 / 1000000000 |
750082763 / 1000000000 |
562746989 / 1000000000 |
482133098 / 1000000000 |
425199313 / 1000000000 |
565075154 / 1000000000 |
805872145 / 1000000000 |
685413938 / 1000000000 |
733881433 / 1000000000 |
838018716 / 1000000000 |
607587861 / 1000000000 |
745712291 / 1000000000 |
663698732 / 1000000000 |
657169218 / 1000000000 |
909090909 / 1000000000 |
689609307 / 1000000000 |
751553979 / 1000000000 |
726326953 / 1000000000 |
502467801 / 1000000000 |
528503663 / 1000000000 |
770431260 / 1000000000 |
717442360 / 1000000000 |
857142857 / 1000000000 |
764946139 / 1000000000 |
510390850 / 1000000000 |
822968982 / 1000000000 |
679322512 / 1000000000 |
629193927 / 1000000000 |
646704281 / 1000000000 |
532434731 / 1000000000 |
600385339 / 1000000000 |
662979205 / 1000000000 |
481134674 / 1000000000 |
791604548 / 1000000000 |
721741209 / 1000000000 |
650395615 / 1000000000 |
876241369 / 1000000000 |
947368421 / 1000000000 |
744103537 / 1000000000 |
708366232 / 1000000000 |
730357327 / 1000000000 |
724850251 / 1000000000 |
684556577 / 1000000000 |
692066675 / 1000000000 |
864166772 / 1000000000 |
798989803 / 1000000000 |
763491167 / 1000000000 |
860278886 / 1000000000 |
788501962 / 1000000000 |
469733209 / 1000000000 |
537206457 / 1000000000 |
612400429 / 1000000000 |
328974029 / 1000000000 |
644407128 / 1000000000 |
657162693 / 1000000000 |
645497754 / 1000000000 |
600693150 / 1000000000 |
631413615 / 1000000000 |
950000000 / 1000000000 |
586309823 / 1000000000 |
768710897 / 1000000000 |
659564959 / 1000000000 |
704798842 / 1000000000 |
833333333 / 1000000000 |
513619189 / 1000000000 |
612215687 / 1000000000 |
520664916 / 1000000000 |
490380430 / 1000000000 |
553713663 / 1000000000 |
366670498 / 1000000000 |
728749800 / 1000000000 |
612795784 / 1000000000 |
337952719 / 1000000000 |
606663486 / 1000000000 |
640980493 / 1000000000 |
707783857 / 1000000000 |
549384837 / 1000000000 |
487517879 / 1000000000 |
339544929 / 1000000000 |
507411713 / 1000000000 |
694961317 / 1000000000 |
533757685 / 1000000000 |
548389973 / 1000000000 |
846593002 / 1000000000 |
624183677 / 1000000000 |
363330744 / 1000000000 |
577890508 / 1000000000 |
802836881 / 1000000000 |
496927763 / 1000000000 |
898162044 / 1000000000 |
700617175 / 1000000000 |
542684239 / 1000000000 |
533601109 / 1000000000 |
541558485 / 1000000000 |
654021282 / 1000000000 |
944444444 / 1000000000 |
821111835 / 1000000000 |
677436680 / 1000000000 |
875000000 / 1000000000 |
597670163 / 1000000000 |
587226798 / 1000000000 |
677008366 / 1000000000 |
762939578 / 1000000000 |
371440148 / 1000000000 |
414396660 / 1000000000 |
933333333 / 1000000000 |
453356594 / 1000000000 |
833333333 / 1000000000 |
819514420 / 1000000000 |
479010831 / 1000000000 |
364376202 / 1000000000 |
941176471 / 1000000000 |
741420639 / 1000000000 |
606249964 / 1000000000 |
712421702 / 1000000000 |
694983724 / 1000000000 |
950000000 / 1000000000 |
662605237 / 1000000000 |
718387570 / 1000000000 |
569378354 / 1000000000 |
844255775 / 1000000000 |
661040215 / 1000000000 |
504840153 / 1000000000 |
534707015 / 1000000000 |
685720088 / 1000000000 |
658059260 / 1000000000 |
461863395 / 1000000000 |
432518969 / 1000000000 |
643628551 / 1000000000 |
| 結果 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| セット名 |
テストケース |
| 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 |
| ケース名 |
結果 |
実行時間 |
メモリ |
| test_0000.txt |
AC |
115 ms |
4276 KiB |
| test_0001.txt |
AC |
108 ms |
4092 KiB |
| test_0002.txt |
AC |
36 ms |
4016 KiB |
| test_0003.txt |
AC |
25 ms |
3760 KiB |
| test_0004.txt |
AC |
23 ms |
4004 KiB |
| test_0005.txt |
AC |
58 ms |
4044 KiB |
| test_0006.txt |
AC |
76 ms |
4008 KiB |
| test_0007.txt |
AC |
35 ms |
3924 KiB |
| test_0008.txt |
AC |
12 ms |
3912 KiB |
| test_0009.txt |
AC |
33 ms |
3900 KiB |
| test_0010.txt |
AC |
24 ms |
3904 KiB |
| test_0011.txt |
AC |
118 ms |
4052 KiB |
| test_0012.txt |
AC |
30 ms |
3928 KiB |
| test_0013.txt |
AC |
216 ms |
4284 KiB |
| test_0014.txt |
AC |
13 ms |
3944 KiB |
| test_0015.txt |
AC |
4 ms |
3760 KiB |
| test_0016.txt |
AC |
122 ms |
4184 KiB |
| test_0017.txt |
AC |
23 ms |
3992 KiB |
| test_0018.txt |
AC |
36 ms |
3988 KiB |
| test_0019.txt |
AC |
56 ms |
3944 KiB |
| test_0020.txt |
AC |
125 ms |
4164 KiB |
| test_0021.txt |
AC |
185 ms |
4396 KiB |
| test_0022.txt |
AC |
315 ms |
4416 KiB |
| test_0023.txt |
AC |
157 ms |
4180 KiB |
| test_0024.txt |
AC |
89 ms |
4176 KiB |
| test_0025.txt |
AC |
18 ms |
3888 KiB |
| test_0026.txt |
AC |
291 ms |
4396 KiB |
| test_0027.txt |
AC |
383 ms |
4528 KiB |
| test_0028.txt |
AC |
109 ms |
4076 KiB |
| test_0029.txt |
AC |
34 ms |
3988 KiB |
| test_0030.txt |
AC |
145 ms |
4316 KiB |
| test_0031.txt |
AC |
8 ms |
3904 KiB |
| test_0032.txt |
AC |
61 ms |
4092 KiB |
| test_0033.txt |
AC |
6 ms |
3876 KiB |
| test_0034.txt |
AC |
172 ms |
4284 KiB |
| test_0035.txt |
AC |
25 ms |
4056 KiB |
| test_0036.txt |
AC |
157 ms |
3968 KiB |
| test_0037.txt |
AC |
78 ms |
4132 KiB |
| test_0038.txt |
AC |
52 ms |
3964 KiB |
| test_0039.txt |
AC |
60 ms |
4144 KiB |
| test_0040.txt |
AC |
207 ms |
4308 KiB |
| test_0041.txt |
AC |
12 ms |
3968 KiB |
| test_0042.txt |
AC |
43 ms |
3956 KiB |
| test_0043.txt |
AC |
183 ms |
4312 KiB |
| test_0044.txt |
AC |
32 ms |
3952 KiB |
| test_0045.txt |
AC |
36 ms |
3864 KiB |
| test_0046.txt |
AC |
119 ms |
4140 KiB |
| test_0047.txt |
AC |
5 ms |
3908 KiB |
| test_0048.txt |
AC |
95 ms |
4076 KiB |
| test_0049.txt |
AC |
55 ms |
3832 KiB |
| test_0050.txt |
AC |
5 ms |
3876 KiB |
| test_0051.txt |
AC |
265 ms |
4464 KiB |
| test_0052.txt |
AC |
46 ms |
3988 KiB |
| test_0053.txt |
AC |
70 ms |
4076 KiB |
| test_0054.txt |
AC |
28 ms |
3916 KiB |
| test_0055.txt |
AC |
172 ms |
4500 KiB |
| test_0056.txt |
AC |
60 ms |
3984 KiB |
| test_0057.txt |
AC |
95 ms |
4116 KiB |
| test_0058.txt |
AC |
30 ms |
3912 KiB |
| test_0059.txt |
AC |
36 ms |
4044 KiB |
| test_0060.txt |
AC |
51 ms |
3824 KiB |
| test_0061.txt |
AC |
15 ms |
3860 KiB |
| test_0062.txt |
AC |
12 ms |
3876 KiB |
| test_0063.txt |
AC |
9 ms |
4016 KiB |
| test_0064.txt |
AC |
31 ms |
3976 KiB |
| test_0065.txt |
AC |
50 ms |
4048 KiB |
| test_0066.txt |
AC |
111 ms |
4232 KiB |
| test_0067.txt |
AC |
33 ms |
3924 KiB |
| test_0068.txt |
AC |
9 ms |
3928 KiB |
| test_0069.txt |
AC |
44 ms |
3808 KiB |
| test_0070.txt |
AC |
54 ms |
4068 KiB |
| test_0071.txt |
AC |
95 ms |
4064 KiB |
| test_0072.txt |
AC |
193 ms |
4124 KiB |
| test_0073.txt |
AC |
246 ms |
4448 KiB |
| test_0074.txt |
AC |
335 ms |
4436 KiB |
| test_0075.txt |
AC |
16 ms |
3904 KiB |
| test_0076.txt |
AC |
11 ms |
3872 KiB |
| test_0077.txt |
AC |
30 ms |
3944 KiB |
| test_0078.txt |
AC |
28 ms |
4012 KiB |
| test_0079.txt |
AC |
11 ms |
4020 KiB |
| test_0080.txt |
AC |
6 ms |
3868 KiB |
| test_0081.txt |
AC |
69 ms |
4088 KiB |
| test_0082.txt |
AC |
124 ms |
4088 KiB |
| test_0083.txt |
AC |
74 ms |
3980 KiB |
| test_0084.txt |
AC |
4 ms |
4000 KiB |
| test_0085.txt |
AC |
22 ms |
4048 KiB |
| test_0086.txt |
AC |
24 ms |
3960 KiB |
| test_0087.txt |
AC |
180 ms |
4260 KiB |
| test_0088.txt |
AC |
120 ms |
4184 KiB |
| test_0089.txt |
AC |
48 ms |
3880 KiB |
| test_0090.txt |
AC |
206 ms |
4400 KiB |
| test_0091.txt |
AC |
14 ms |
3944 KiB |
| test_0092.txt |
AC |
24 ms |
3836 KiB |
| test_0093.txt |
AC |
67 ms |
4132 KiB |
| test_0094.txt |
AC |
80 ms |
4028 KiB |
| test_0095.txt |
AC |
71 ms |
4168 KiB |
| test_0096.txt |
AC |
464 ms |
4464 KiB |
| test_0097.txt |
AC |
17 ms |
4044 KiB |
| test_0098.txt |
AC |
60 ms |
4084 KiB |
| test_0099.txt |
AC |
333 ms |
4380 KiB |
| test_0100.txt |
AC |
179 ms |
4368 KiB |
| test_0101.txt |
AC |
96 ms |
3856 KiB |
| test_0102.txt |
AC |
25 ms |
3904 KiB |
| test_0103.txt |
AC |
18 ms |
3788 KiB |
| test_0104.txt |
AC |
5 ms |
3864 KiB |
| test_0105.txt |
AC |
88 ms |
4176 KiB |
| test_0106.txt |
AC |
172 ms |
4172 KiB |
| test_0107.txt |
AC |
450 ms |
4512 KiB |
| test_0108.txt |
AC |
10 ms |
3956 KiB |
| test_0109.txt |
AC |
270 ms |
4244 KiB |
| test_0110.txt |
AC |
104 ms |
3908 KiB |
| test_0111.txt |
AC |
208 ms |
4236 KiB |
| test_0112.txt |
AC |
274 ms |
4208 KiB |
| test_0113.txt |
AC |
51 ms |
4000 KiB |
| test_0114.txt |
AC |
5 ms |
3864 KiB |
| test_0115.txt |
AC |
83 ms |
4304 KiB |
| test_0116.txt |
AC |
171 ms |
4180 KiB |
| test_0117.txt |
AC |
193 ms |
4264 KiB |
| test_0118.txt |
AC |
344 ms |
4384 KiB |
| test_0119.txt |
AC |
136 ms |
4132 KiB |
| test_0120.txt |
AC |
23 ms |
3892 KiB |
| test_0121.txt |
AC |
8 ms |
3972 KiB |
| test_0122.txt |
AC |
44 ms |
3980 KiB |
| test_0123.txt |
AC |
70 ms |
4128 KiB |
| test_0124.txt |
AC |
58 ms |
4072 KiB |
| test_0125.txt |
AC |
19 ms |
3880 KiB |
| test_0126.txt |
AC |
50 ms |
3984 KiB |
| test_0127.txt |
AC |
338 ms |
4448 KiB |
| test_0128.txt |
AC |
84 ms |
4016 KiB |
| test_0129.txt |
AC |
432 ms |
4488 KiB |
| test_0130.txt |
AC |
14 ms |
3856 KiB |
| test_0131.txt |
AC |
46 ms |
3972 KiB |
| test_0132.txt |
AC |
171 ms |
4452 KiB |
| test_0133.txt |
AC |
29 ms |
3932 KiB |
| test_0134.txt |
AC |
16 ms |
3924 KiB |
| test_0135.txt |
AC |
15 ms |
3920 KiB |
| test_0136.txt |
AC |
27 ms |
3968 KiB |
| test_0137.txt |
AC |
93 ms |
4172 KiB |
| test_0138.txt |
AC |
25 ms |
3944 KiB |
| test_0139.txt |
AC |
162 ms |
4392 KiB |
| test_0140.txt |
AC |
192 ms |
4212 KiB |
| test_0141.txt |
AC |
109 ms |
4204 KiB |
| test_0142.txt |
AC |
70 ms |
4088 KiB |
| test_0143.txt |
AC |
102 ms |
4164 KiB |
| test_0144.txt |
AC |
16 ms |
3900 KiB |
| test_0145.txt |
AC |
79 ms |
4020 KiB |
| test_0146.txt |
AC |
141 ms |
4280 KiB |
| test_0147.txt |
AC |
107 ms |
4132 KiB |
| test_0148.txt |
AC |
167 ms |
4264 KiB |
| test_0149.txt |
AC |
126 ms |
4080 KiB |
| test_0150.txt |
AC |
6 ms |
3916 KiB |
| test_0151.txt |
AC |
271 ms |
4224 KiB |
| test_0152.txt |
AC |
13 ms |
3876 KiB |
| test_0153.txt |
AC |
126 ms |
4156 KiB |
| test_0154.txt |
AC |
141 ms |
4216 KiB |
| test_0155.txt |
AC |
17 ms |
3956 KiB |
| test_0156.txt |
AC |
202 ms |
4260 KiB |
| test_0157.txt |
AC |
16 ms |
4004 KiB |
| test_0158.txt |
AC |
154 ms |
4168 KiB |
| test_0159.txt |
AC |
301 ms |
4296 KiB |
| test_0160.txt |
AC |
103 ms |
4172 KiB |
| test_0161.txt |
AC |
24 ms |
3724 KiB |
| test_0162.txt |
AC |
31 ms |
3916 KiB |
| test_0163.txt |
AC |
28 ms |
3948 KiB |
| test_0164.txt |
AC |
146 ms |
4400 KiB |
| test_0165.txt |
AC |
24 ms |
4024 KiB |
| test_0166.txt |
AC |
85 ms |
4200 KiB |
| test_0167.txt |
AC |
128 ms |
4188 KiB |
| test_0168.txt |
AC |
163 ms |
4136 KiB |
| test_0169.txt |
AC |
221 ms |
4028 KiB |
| test_0170.txt |
AC |
75 ms |
4136 KiB |
| test_0171.txt |
AC |
22 ms |
3940 KiB |
| test_0172.txt |
AC |
85 ms |
4084 KiB |
| test_0173.txt |
AC |
135 ms |
4172 KiB |
| test_0174.txt |
AC |
39 ms |
3992 KiB |
| test_0175.txt |
AC |
28 ms |
4044 KiB |
| test_0176.txt |
AC |
38 ms |
4076 KiB |
| test_0177.txt |
AC |
183 ms |
4228 KiB |
| test_0178.txt |
AC |
31 ms |
3900 KiB |
| test_0179.txt |
AC |
28 ms |
3912 KiB |
| test_0180.txt |
AC |
10 ms |
3828 KiB |
| test_0181.txt |
AC |
136 ms |
4312 KiB |
| test_0182.txt |
AC |
72 ms |
4132 KiB |
| test_0183.txt |
AC |
13 ms |
3944 KiB |
| test_0184.txt |
AC |
66 ms |
4048 KiB |
| test_0185.txt |
AC |
62 ms |
4088 KiB |
| test_0186.txt |
AC |
52 ms |
4092 KiB |
| test_0187.txt |
AC |
12 ms |
4004 KiB |
| test_0188.txt |
AC |
8 ms |
3724 KiB |
| test_0189.txt |
AC |
294 ms |
4300 KiB |
| test_0190.txt |
AC |
6 ms |
3920 KiB |
| test_0191.txt |
AC |
252 ms |
4356 KiB |
| test_0192.txt |
AC |
7 ms |
3888 KiB |
| test_0193.txt |
AC |
40 ms |
3936 KiB |
| test_0194.txt |
AC |
122 ms |
3976 KiB |
| test_0195.txt |
AC |
62 ms |
4056 KiB |
| test_0196.txt |
AC |
15 ms |
3912 KiB |
| test_0197.txt |
AC |
23 ms |
4004 KiB |
| test_0198.txt |
AC |
5 ms |
3976 KiB |
| test_0199.txt |
AC |
12 ms |
3908 KiB |
| test_0200.txt |
AC |
5 ms |
3876 KiB |
| test_0201.txt |
AC |
24 ms |
4036 KiB |
| test_0202.txt |
AC |
252 ms |
4288 KiB |
| test_0203.txt |
AC |
11 ms |
3988 KiB |
| test_0204.txt |
AC |
98 ms |
4068 KiB |
| test_0205.txt |
AC |
174 ms |
4228 KiB |
| test_0206.txt |
AC |
92 ms |
4008 KiB |
| test_0207.txt |
AC |
8 ms |
3876 KiB |
| test_0208.txt |
AC |
234 ms |
4512 KiB |
| test_0209.txt |
AC |
161 ms |
4012 KiB |
| test_0210.txt |
AC |
74 ms |
4076 KiB |
| test_0211.txt |
AC |
22 ms |
3816 KiB |
| test_0212.txt |
AC |
85 ms |
4120 KiB |
| test_0213.txt |
AC |
85 ms |
4172 KiB |
| test_0214.txt |
AC |
143 ms |
4196 KiB |
| test_0215.txt |
AC |
27 ms |
3940 KiB |
| test_0216.txt |
AC |
129 ms |
4168 KiB |
| test_0217.txt |
AC |
119 ms |
4128 KiB |
| test_0218.txt |
AC |
17 ms |
3900 KiB |
| test_0219.txt |
AC |
79 ms |
4136 KiB |
| test_0220.txt |
AC |
6 ms |
3892 KiB |
| test_0221.txt |
AC |
4 ms |
3856 KiB |
| test_0222.txt |
AC |
112 ms |
4060 KiB |
| test_0223.txt |
AC |
64 ms |
4060 KiB |
| test_0224.txt |
AC |
12 ms |
3896 KiB |
| test_0225.txt |
AC |
4 ms |
3672 KiB |
| test_0226.txt |
AC |
5 ms |
3920 KiB |
| test_0227.txt |
AC |
126 ms |
4076 KiB |
| test_0228.txt |
AC |
7 ms |
3872 KiB |
| test_0229.txt |
AC |
197 ms |
3972 KiB |
| test_0230.txt |
AC |
78 ms |
4156 KiB |
| test_0231.txt |
AC |
54 ms |
4196 KiB |
| test_0232.txt |
AC |
209 ms |
4212 KiB |
| test_0233.txt |
AC |
133 ms |
4040 KiB |
| test_0234.txt |
AC |
6 ms |
3868 KiB |
| test_0235.txt |
AC |
26 ms |
3884 KiB |
| test_0236.txt |
AC |
22 ms |
3968 KiB |
| test_0237.txt |
AC |
73 ms |
3940 KiB |
| test_0238.txt |
AC |
16 ms |
3812 KiB |
| test_0239.txt |
AC |
75 ms |
4084 KiB |
| test_0240.txt |
AC |
15 ms |
3932 KiB |
| test_0241.txt |
AC |
47 ms |
3808 KiB |
| test_0242.txt |
AC |
70 ms |
3968 KiB |
| test_0243.txt |
AC |
67 ms |
4056 KiB |
| test_0244.txt |
AC |
52 ms |
3996 KiB |
| test_0245.txt |
AC |
35 ms |
3988 KiB |
| test_0246.txt |
AC |
7 ms |
3984 KiB |
| test_0247.txt |
AC |
48 ms |
3892 KiB |
| test_0248.txt |
AC |
281 ms |
4392 KiB |
| test_0249.txt |
AC |
134 ms |
4280 KiB |
| test_0250.txt |
AC |
125 ms |
3988 KiB |
| test_0251.txt |
AC |
255 ms |
4176 KiB |
| test_0252.txt |
AC |
128 ms |
4160 KiB |
| test_0253.txt |
AC |
6 ms |
3880 KiB |
| test_0254.txt |
AC |
61 ms |
4164 KiB |
| test_0255.txt |
AC |
88 ms |
4028 KiB |
| test_0256.txt |
AC |
49 ms |
4096 KiB |
| test_0257.txt |
AC |
59 ms |
4044 KiB |
| test_0258.txt |
AC |
31 ms |
3872 KiB |
| test_0259.txt |
AC |
217 ms |
4300 KiB |
| test_0260.txt |
AC |
118 ms |
4248 KiB |
| test_0261.txt |
AC |
327 ms |
4348 KiB |
| test_0262.txt |
AC |
10 ms |
3904 KiB |
| test_0263.txt |
AC |
105 ms |
4120 KiB |
| test_0264.txt |
AC |
16 ms |
3728 KiB |
| test_0265.txt |
AC |
63 ms |
4060 KiB |
| test_0266.txt |
AC |
8 ms |
3896 KiB |
| test_0267.txt |
AC |
275 ms |
4388 KiB |
| test_0268.txt |
AC |
136 ms |
4236 KiB |
| test_0269.txt |
AC |
35 ms |
4004 KiB |
| test_0270.txt |
AC |
70 ms |
4044 KiB |
| test_0271.txt |
AC |
259 ms |
4428 KiB |
| test_0272.txt |
AC |
3 ms |
3840 KiB |
| test_0273.txt |
AC |
266 ms |
4332 KiB |
| test_0274.txt |
AC |
49 ms |
3968 KiB |
| test_0275.txt |
AC |
8 ms |
3848 KiB |
| test_0276.txt |
AC |
11 ms |
3880 KiB |
| test_0277.txt |
AC |
53 ms |
3988 KiB |
| test_0278.txt |
AC |
8 ms |
4084 KiB |
| test_0279.txt |
AC |
17 ms |
4028 KiB |
| test_0280.txt |
AC |
44 ms |
4008 KiB |
| test_0281.txt |
AC |
16 ms |
3912 KiB |
| test_0282.txt |
AC |
39 ms |
3932 KiB |
| test_0283.txt |
AC |
38 ms |
4088 KiB |
| test_0284.txt |
AC |
4 ms |
3804 KiB |
| test_0285.txt |
AC |
6 ms |
3952 KiB |
| test_0286.txt |
AC |
52 ms |
4020 KiB |
| test_0287.txt |
AC |
30 ms |
3904 KiB |
| test_0288.txt |
AC |
63 ms |
4040 KiB |
| test_0289.txt |
AC |
29 ms |
4104 KiB |
| test_0290.txt |
WA |
389 ms |
4556 KiB |
| test_0291.txt |
AC |
77 ms |
4100 KiB |
| test_0292.txt |
AC |
251 ms |
4352 KiB |
| test_0293.txt |
AC |
64 ms |
4028 KiB |
| test_0294.txt |
AC |
24 ms |
3936 KiB |
| test_0295.txt |
AC |
15 ms |
3744 KiB |
| test_0296.txt |
AC |
163 ms |
4324 KiB |
| test_0297.txt |
AC |
81 ms |
4172 KiB |
| test_0298.txt |
AC |
91 ms |
4088 KiB |
| test_0299.txt |
AC |
12 ms |
3944 KiB |
| test_0300.txt |
AC |
36 ms |
3896 KiB |
| test_0301.txt |
AC |
107 ms |
4060 KiB |
| test_0302.txt |
AC |
14 ms |
3892 KiB |
| test_0303.txt |
AC |
7 ms |
3848 KiB |
| test_0304.txt |
AC |
136 ms |
4016 KiB |
| test_0305.txt |
AC |
34 ms |
3884 KiB |
| test_0306.txt |
AC |
29 ms |
3876 KiB |
| test_0307.txt |
AC |
22 ms |
3956 KiB |
| test_0308.txt |
AC |
76 ms |
3996 KiB |
| test_0309.txt |
AC |
109 ms |
4148 KiB |
| test_0310.txt |
AC |
8 ms |
3872 KiB |
| test_0311.txt |
AC |
43 ms |
3912 KiB |
| test_0312.txt |
AC |
23 ms |
3792 KiB |
| test_0313.txt |
AC |
75 ms |
3960 KiB |
| test_0314.txt |
AC |
55 ms |
4056 KiB |
| test_0315.txt |
AC |
40 ms |
3936 KiB |
| test_0316.txt |
AC |
4 ms |
3832 KiB |
| test_0317.txt |
AC |
30 ms |
3988 KiB |
| test_0318.txt |
AC |
125 ms |
4216 KiB |
| test_0319.txt |
AC |
7 ms |
3852 KiB |
| test_0320.txt |
AC |
3 ms |
3784 KiB |
| test_0321.txt |
AC |
226 ms |
4356 KiB |
| test_0322.txt |
AC |
46 ms |
4020 KiB |
| test_0323.txt |
AC |
11 ms |
3836 KiB |
| test_0324.txt |
AC |
5 ms |
3852 KiB |
| test_0325.txt |
AC |
106 ms |
4100 KiB |
| test_0326.txt |
AC |
130 ms |
3996 KiB |
| test_0327.txt |
AC |
268 ms |
4332 KiB |
| test_0328.txt |
AC |
52 ms |
3996 KiB |
| test_0329.txt |
AC |
13 ms |
3836 KiB |
| test_0330.txt |
AC |
53 ms |
3988 KiB |
| test_0331.txt |
AC |
77 ms |
4060 KiB |
| test_0332.txt |
AC |
183 ms |
4280 KiB |
| test_0333.txt |
AC |
33 ms |
3996 KiB |
| test_0334.txt |
AC |
102 ms |
4200 KiB |
| test_0335.txt |
AC |
38 ms |
4008 KiB |
| test_0336.txt |
AC |
163 ms |
4436 KiB |
| test_0337.txt |
AC |
18 ms |
3932 KiB |
| test_0338.txt |
AC |
24 ms |
3976 KiB |
| test_0339.txt |
AC |
60 ms |
4012 KiB |
| test_0340.txt |
AC |
42 ms |
3988 KiB |
| test_0341.txt |
AC |
17 ms |
3908 KiB |
| test_0342.txt |
AC |
116 ms |
3936 KiB |
| test_0343.txt |
AC |
40 ms |
4120 KiB |
| test_0344.txt |
AC |
16 ms |
3912 KiB |
| test_0345.txt |
AC |
102 ms |
4204 KiB |
| test_0346.txt |
AC |
21 ms |
4036 KiB |
| test_0347.txt |
AC |
22 ms |
4032 KiB |
| test_0348.txt |
AC |
40 ms |
3952 KiB |
| test_0349.txt |
AC |
252 ms |
4508 KiB |
| test_0350.txt |
AC |
32 ms |
3968 KiB |
| test_0351.txt |
AC |
393 ms |
4492 KiB |
| test_0352.txt |
AC |
113 ms |
4048 KiB |
| test_0353.txt |
AC |
16 ms |
4016 KiB |
| test_0354.txt |
AC |
14 ms |
4044 KiB |
| test_0355.txt |
AC |
26 ms |
3920 KiB |
| test_0356.txt |
AC |
104 ms |
4004 KiB |
| test_0357.txt |
AC |
62 ms |
3956 KiB |
| test_0358.txt |
AC |
23 ms |
3880 KiB |
| test_0359.txt |
AC |
118 ms |
4216 KiB |
| test_0360.txt |
AC |
135 ms |
4100 KiB |
| test_0361.txt |
AC |
12 ms |
3884 KiB |
| test_0362.txt |
AC |
272 ms |
4400 KiB |
| test_0363.txt |
AC |
186 ms |
4436 KiB |
| test_0364.txt |
AC |
132 ms |
4276 KiB |
| test_0365.txt |
AC |
322 ms |
4400 KiB |
| test_0366.txt |
AC |
32 ms |
3960 KiB |
| test_0367.txt |
AC |
48 ms |
4036 KiB |
| test_0368.txt |
AC |
19 ms |
3904 KiB |
| test_0369.txt |
AC |
14 ms |
3908 KiB |
| test_0370.txt |
AC |
20 ms |
3928 KiB |
| test_0371.txt |
AC |
85 ms |
4012 KiB |
| test_0372.txt |
AC |
9 ms |
3900 KiB |
| test_0373.txt |
AC |
27 ms |
4056 KiB |
| test_0374.txt |
AC |
23 ms |
3968 KiB |
| test_0375.txt |
AC |
15 ms |
3936 KiB |
| test_0376.txt |
AC |
32 ms |
3908 KiB |
| test_0377.txt |
AC |
203 ms |
4208 KiB |
| test_0378.txt |
AC |
9 ms |
3900 KiB |
| test_0379.txt |
AC |
57 ms |
4000 KiB |
| test_0380.txt |
AC |
88 ms |
4052 KiB |
| test_0381.txt |
AC |
194 ms |
4220 KiB |
| test_0382.txt |
AC |
98 ms |
4092 KiB |
| test_0383.txt |
AC |
84 ms |
4004 KiB |
| test_0384.txt |
AC |
171 ms |
4192 KiB |
| test_0385.txt |
AC |
33 ms |
4000 KiB |
| test_0386.txt |
AC |
49 ms |
3960 KiB |
| test_0387.txt |
AC |
164 ms |
4248 KiB |
| test_0388.txt |
AC |
19 ms |
3908 KiB |
| test_0389.txt |
AC |
27 ms |
3904 KiB |
| test_0390.txt |
AC |
51 ms |
4004 KiB |
| test_0391.txt |
AC |
164 ms |
4184 KiB |
| test_0392.txt |
AC |
86 ms |
4056 KiB |
| test_0393.txt |
AC |
33 ms |
4016 KiB |
| test_0394.txt |
AC |
141 ms |
4232 KiB |
| test_0395.txt |
AC |
12 ms |
3936 KiB |
| test_0396.txt |
AC |
34 ms |
3996 KiB |
| test_0397.txt |
AC |
12 ms |
3904 KiB |
| test_0398.txt |
AC |
26 ms |
3956 KiB |
| test_0399.txt |
AC |
37 ms |
4092 KiB |
| test_0400.txt |
AC |
32 ms |
3824 KiB |
| test_0401.txt |
AC |
10 ms |
3756 KiB |
| test_0402.txt |
AC |
49 ms |
4076 KiB |
| test_0403.txt |
AC |
64 ms |
4100 KiB |
| test_0404.txt |
AC |
86 ms |
3988 KiB |
| test_0405.txt |
AC |
80 ms |
4056 KiB |
| test_0406.txt |
AC |
91 ms |
3972 KiB |
| test_0407.txt |
AC |
37 ms |
4060 KiB |
| test_0408.txt |
AC |
9 ms |
3984 KiB |
| test_0409.txt |
AC |
249 ms |
4548 KiB |
| test_0410.txt |
AC |
13 ms |
3720 KiB |
| test_0411.txt |
AC |
90 ms |
4088 KiB |
| test_0412.txt |
AC |
70 ms |
4016 KiB |
| test_0413.txt |
AC |
71 ms |
3956 KiB |
| test_0414.txt |
AC |
25 ms |
3884 KiB |
| test_0415.txt |
AC |
49 ms |
4092 KiB |
| test_0416.txt |
AC |
15 ms |
4012 KiB |
| test_0417.txt |
AC |
42 ms |
4008 KiB |
| test_0418.txt |
AC |
33 ms |
3876 KiB |
| test_0419.txt |
AC |
18 ms |
3964 KiB |
| test_0420.txt |
AC |
201 ms |
4252 KiB |
| test_0421.txt |
AC |
55 ms |
4048 KiB |
| test_0422.txt |
AC |
18 ms |
3912 KiB |
| test_0423.txt |
AC |
228 ms |
4280 KiB |
| test_0424.txt |
AC |
6 ms |
3856 KiB |
| test_0425.txt |
AC |
135 ms |
4160 KiB |
| test_0426.txt |
AC |
146 ms |
4252 KiB |
| test_0427.txt |
AC |
37 ms |
4044 KiB |
| test_0428.txt |
AC |
11 ms |
3908 KiB |
| test_0429.txt |
AC |
45 ms |
4092 KiB |
| test_0430.txt |
AC |
32 ms |
3996 KiB |
| test_0431.txt |
AC |
215 ms |
4220 KiB |
| test_0432.txt |
AC |
46 ms |
4100 KiB |
| test_0433.txt |
AC |
99 ms |
4072 KiB |
| test_0434.txt |
AC |
17 ms |
3912 KiB |
| test_0435.txt |
AC |
55 ms |
3980 KiB |
| test_0436.txt |
AC |
9 ms |
3880 KiB |
| test_0437.txt |
AC |
17 ms |
3788 KiB |
| test_0438.txt |
AC |
9 ms |
3744 KiB |
| test_0439.txt |
AC |
160 ms |
4288 KiB |
| test_0440.txt |
AC |
12 ms |
3916 KiB |
| test_0441.txt |
AC |
391 ms |
4452 KiB |
| test_0442.txt |
AC |
32 ms |
3916 KiB |
| test_0443.txt |
WA |
70 ms |
4164 KiB |
| test_0444.txt |
AC |
62 ms |
4012 KiB |
| test_0445.txt |
AC |
9 ms |
3880 KiB |
| test_0446.txt |
AC |
54 ms |
4128 KiB |
| test_0447.txt |
AC |
92 ms |
4128 KiB |
| test_0448.txt |
AC |
44 ms |
3992 KiB |
| test_0449.txt |
AC |
35 ms |
4044 KiB |
| test_0450.txt |
AC |
40 ms |
3940 KiB |
| test_0451.txt |
AC |
20 ms |
3928 KiB |
| test_0452.txt |
AC |
143 ms |
4220 KiB |
| test_0453.txt |
AC |
156 ms |
4296 KiB |
| test_0454.txt |
AC |
94 ms |
4056 KiB |
| test_0455.txt |
AC |
58 ms |
4132 KiB |
| test_0456.txt |
AC |
18 ms |
3716 KiB |
| test_0457.txt |
AC |
12 ms |
3708 KiB |
| test_0458.txt |
AC |
165 ms |
4156 KiB |
| test_0459.txt |
AC |
12 ms |
3732 KiB |
| test_0460.txt |
AC |
34 ms |
4088 KiB |
| test_0461.txt |
AC |
138 ms |
4280 KiB |
| test_0462.txt |
AC |
102 ms |
4080 KiB |
| test_0463.txt |
AC |
46 ms |
3900 KiB |
| test_0464.txt |
AC |
224 ms |
4284 KiB |
| test_0465.txt |
AC |
358 ms |
4408 KiB |
| test_0466.txt |
AC |
30 ms |
4000 KiB |
| test_0467.txt |
AC |
176 ms |
4116 KiB |
| test_0468.txt |
AC |
342 ms |
4344 KiB |
| test_0469.txt |
AC |
28 ms |
3928 KiB |
| test_0470.txt |
AC |
9 ms |
3984 KiB |
| test_0471.txt |
AC |
12 ms |
3900 KiB |
| test_0472.txt |
AC |
7 ms |
3952 KiB |
| test_0473.txt |
AC |
123 ms |
4000 KiB |
| test_0474.txt |
AC |
46 ms |
4012 KiB |
| test_0475.txt |
AC |
18 ms |
3960 KiB |
| test_0476.txt |
AC |
157 ms |
4260 KiB |
| test_0477.txt |
AC |
70 ms |
4060 KiB |
| test_0478.txt |
AC |
52 ms |
4060 KiB |
| test_0479.txt |
AC |
33 ms |
3892 KiB |
| test_0480.txt |
AC |
37 ms |
3936 KiB |
| test_0481.txt |
AC |
294 ms |
4452 KiB |
| test_0482.txt |
AC |
28 ms |
3980 KiB |
| test_0483.txt |
AC |
35 ms |
3912 KiB |
| test_0484.txt |
AC |
67 ms |
4088 KiB |
| test_0485.txt |
AC |
65 ms |
4044 KiB |
| test_0486.txt |
AC |
35 ms |
3796 KiB |
| test_0487.txt |
AC |
74 ms |
4032 KiB |
| test_0488.txt |
AC |
16 ms |
3708 KiB |
| test_0489.txt |
AC |
306 ms |
4576 KiB |
| test_0490.txt |
AC |
78 ms |
3904 KiB |
| test_0491.txt |
AC |
81 ms |
4012 KiB |
| test_0492.txt |
AC |
18 ms |
3864 KiB |
| test_0493.txt |
AC |
87 ms |
4096 KiB |
| test_0494.txt |
AC |
4 ms |
3844 KiB |
| test_0495.txt |
AC |
36 ms |
3980 KiB |
| test_0496.txt |
AC |
41 ms |
3976 KiB |
| test_0497.txt |
AC |
120 ms |
4088 KiB |
| test_0498.txt |
AC |
155 ms |
4128 KiB |
| test_0499.txt |
AC |
302 ms |
4412 KiB |
| test_0500.txt |
AC |
9 ms |
3872 KiB |
| test_0501.txt |
AC |
51 ms |
4008 KiB |
| test_0502.txt |
AC |
12 ms |
3908 KiB |
| test_0503.txt |
AC |
124 ms |
4216 KiB |
| test_0504.txt |
AC |
178 ms |
4416 KiB |
| test_0505.txt |
AC |
11 ms |
3904 KiB |
| test_0506.txt |
AC |
22 ms |
3848 KiB |
| test_0507.txt |
AC |
49 ms |
4440 KiB |
| test_0508.txt |
AC |
443 ms |
4564 KiB |
| test_0509.txt |
AC |
49 ms |
3984 KiB |
| test_0510.txt |
AC |
8 ms |
3804 KiB |
| test_0511.txt |
AC |
5 ms |
3740 KiB |
| test_0512.txt |
AC |
61 ms |
3972 KiB |
| test_0513.txt |
AC |
231 ms |
4276 KiB |
| test_0514.txt |
AC |
17 ms |
4080 KiB |
| test_0515.txt |
AC |
44 ms |
3936 KiB |
| test_0516.txt |
AC |
220 ms |
4280 KiB |
| test_0517.txt |
AC |
47 ms |
3988 KiB |
| test_0518.txt |
AC |
131 ms |
4272 KiB |
| test_0519.txt |
AC |
143 ms |
4220 KiB |
| test_0520.txt |
AC |
171 ms |
4188 KiB |
| test_0521.txt |
WA |
99 ms |
4404 KiB |
| test_0522.txt |
AC |
92 ms |
4044 KiB |
| test_0523.txt |
AC |
55 ms |
4056 KiB |
| test_0524.txt |
AC |
442 ms |
4336 KiB |
| test_0525.txt |
AC |
8 ms |
3836 KiB |
| test_0526.txt |
AC |
53 ms |
3936 KiB |
| test_0527.txt |
AC |
2 ms |
3852 KiB |
| test_0528.txt |
AC |
49 ms |
4068 KiB |
| test_0529.txt |
AC |
9 ms |
3944 KiB |
| test_0530.txt |
AC |
6 ms |
3944 KiB |
| test_0531.txt |
AC |
15 ms |
3788 KiB |
| test_0532.txt |
AC |
4 ms |
3732 KiB |
| test_0533.txt |
AC |
7 ms |
3808 KiB |
| test_0534.txt |
AC |
6 ms |
3844 KiB |
| test_0535.txt |
AC |
18 ms |
3956 KiB |
| test_0536.txt |
AC |
6 ms |
3864 KiB |
| test_0537.txt |
AC |
136 ms |
4180 KiB |
| test_0538.txt |
AC |
19 ms |
3908 KiB |
| test_0539.txt |
AC |
16 ms |
3868 KiB |
| test_0540.txt |
AC |
405 ms |
4376 KiB |
| test_0541.txt |
AC |
333 ms |
4368 KiB |
| test_0542.txt |
AC |
8 ms |
3916 KiB |
| test_0543.txt |
AC |
232 ms |
4300 KiB |
| test_0544.txt |
AC |
36 ms |
4092 KiB |
| test_0545.txt |
AC |
121 ms |
4100 KiB |
| test_0546.txt |
AC |
20 ms |
3960 KiB |
| test_0547.txt |
AC |
2 ms |
3808 KiB |
| test_0548.txt |
AC |
12 ms |
3896 KiB |
| test_0549.txt |
AC |
127 ms |
4236 KiB |
| test_0550.txt |
AC |
43 ms |
4092 KiB |
| test_0551.txt |
AC |
17 ms |
3916 KiB |
| test_0552.txt |
AC |
4 ms |
3872 KiB |
| test_0553.txt |
AC |
41 ms |
4040 KiB |
| test_0554.txt |
AC |
8 ms |
3952 KiB |
| test_0555.txt |
AC |
76 ms |
4092 KiB |
| test_0556.txt |
AC |
188 ms |
4204 KiB |
| test_0557.txt |
AC |
24 ms |
3896 KiB |
| test_0558.txt |
AC |
41 ms |
4156 KiB |
| test_0559.txt |
AC |
29 ms |
3980 KiB |
| test_0560.txt |
AC |
81 ms |
4148 KiB |
| test_0561.txt |
AC |
73 ms |
4240 KiB |
| test_0562.txt |
AC |
3 ms |
3724 KiB |
| test_0563.txt |
AC |
180 ms |
4184 KiB |
| test_0564.txt |
AC |
68 ms |
3996 KiB |
| test_0565.txt |
AC |
39 ms |
4128 KiB |
| test_0566.txt |
AC |
218 ms |
4232 KiB |
| test_0567.txt |
AC |
242 ms |
4372 KiB |
| test_0568.txt |
AC |
57 ms |
3940 KiB |
| test_0569.txt |
AC |
150 ms |
4164 KiB |
| test_0570.txt |
AC |
6 ms |
3852 KiB |
| test_0571.txt |
AC |
101 ms |
4136 KiB |
| test_0572.txt |
AC |
27 ms |
4040 KiB |
| test_0573.txt |
AC |
96 ms |
3956 KiB |
| test_0574.txt |
AC |
24 ms |
3932 KiB |
| test_0575.txt |
AC |
34 ms |
3972 KiB |
| test_0576.txt |
AC |
112 ms |
4128 KiB |
| test_0577.txt |
AC |
30 ms |
4008 KiB |
| test_0578.txt |
AC |
122 ms |
4056 KiB |
| test_0579.txt |
AC |
45 ms |
3876 KiB |
| test_0580.txt |
AC |
41 ms |
3944 KiB |
| test_0581.txt |
AC |
42 ms |
3964 KiB |
| test_0582.txt |
AC |
52 ms |
3864 KiB |
| test_0583.txt |
AC |
132 ms |
4248 KiB |
| test_0584.txt |
AC |
260 ms |
4312 KiB |
| test_0585.txt |
AC |
128 ms |
4284 KiB |
| test_0586.txt |
AC |
13 ms |
4048 KiB |
| test_0587.txt |
AC |
30 ms |
4028 KiB |
| test_0588.txt |
AC |
141 ms |
4044 KiB |
| test_0589.txt |
AC |
82 ms |
4144 KiB |
| test_0590.txt |
AC |
6 ms |
3800 KiB |
| test_0591.txt |
AC |
25 ms |
3884 KiB |
| test_0592.txt |
AC |
191 ms |
4108 KiB |
| test_0593.txt |
AC |
160 ms |
4272 KiB |
| test_0594.txt |
AC |
32 ms |
3940 KiB |
| test_0595.txt |
AC |
40 ms |
3964 KiB |
| test_0596.txt |
AC |
171 ms |
4028 KiB |
| test_0597.txt |
AC |
85 ms |
3928 KiB |
| test_0598.txt |
AC |
35 ms |
4004 KiB |
| test_0599.txt |
AC |
130 ms |
4148 KiB |
| test_0600.txt |
AC |
79 ms |
4088 KiB |
| test_0601.txt |
AC |
120 ms |
4224 KiB |
| test_0602.txt |
AC |
13 ms |
3832 KiB |
| test_0603.txt |
AC |
303 ms |
4492 KiB |
| test_0604.txt |
AC |
55 ms |
4000 KiB |
| test_0605.txt |
AC |
7 ms |
3868 KiB |
| test_0606.txt |
AC |
7 ms |
3848 KiB |
| test_0607.txt |
AC |
9 ms |
3808 KiB |
| test_0608.txt |
AC |
206 ms |
4568 KiB |
| test_0609.txt |
AC |
6 ms |
3716 KiB |
| test_0610.txt |
AC |
317 ms |
4564 KiB |
| test_0611.txt |
AC |
245 ms |
4324 KiB |
| test_0612.txt |
AC |
32 ms |
3960 KiB |
| test_0613.txt |
AC |
96 ms |
4028 KiB |
| test_0614.txt |
AC |
11 ms |
3820 KiB |
| test_0615.txt |
AC |
94 ms |
4116 KiB |
| test_0616.txt |
AC |
40 ms |
3980 KiB |
| test_0617.txt |
AC |
81 ms |
4020 KiB |
| test_0618.txt |
AC |
22 ms |
3964 KiB |
| test_0619.txt |
AC |
210 ms |
4136 KiB |
| test_0620.txt |
AC |
44 ms |
4112 KiB |
| test_0621.txt |
AC |
20 ms |
3920 KiB |
| test_0622.txt |
AC |
34 ms |
3936 KiB |
| test_0623.txt |
AC |
26 ms |
3964 KiB |
| test_0624.txt |
AC |
46 ms |
3928 KiB |
| test_0625.txt |
AC |
269 ms |
4504 KiB |
| test_0626.txt |
AC |
41 ms |
4072 KiB |
| test_0627.txt |
AC |
6 ms |
3872 KiB |
| test_0628.txt |
AC |
13 ms |
3924 KiB |
| test_0629.txt |
AC |
92 ms |
4136 KiB |
| test_0630.txt |
AC |
53 ms |
3916 KiB |
| test_0631.txt |
AC |
48 ms |
3984 KiB |
| test_0632.txt |
AC |
27 ms |
3932 KiB |
| test_0633.txt |
AC |
75 ms |
4132 KiB |
| test_0634.txt |
AC |
4 ms |
3852 KiB |
| test_0635.txt |
AC |
53 ms |
4084 KiB |
| test_0636.txt |
AC |
4 ms |
3940 KiB |
| test_0637.txt |
AC |
27 ms |
3948 KiB |
| test_0638.txt |
AC |
13 ms |
3868 KiB |
| test_0639.txt |
AC |
21 ms |
3888 KiB |
| test_0640.txt |
AC |
76 ms |
3908 KiB |
| test_0641.txt |
AC |
221 ms |
4384 KiB |
| test_0642.txt |
AC |
17 ms |
3792 KiB |
| test_0643.txt |
AC |
51 ms |
4008 KiB |
| test_0644.txt |
AC |
8 ms |
3956 KiB |
| test_0645.txt |
AC |
8 ms |
3960 KiB |
| test_0646.txt |
AC |
16 ms |
3880 KiB |
| test_0647.txt |
AC |
28 ms |
4060 KiB |
| test_0648.txt |
AC |
49 ms |
3992 KiB |
| test_0649.txt |
AC |
14 ms |
4016 KiB |
| test_0650.txt |
AC |
9 ms |
3756 KiB |
| test_0651.txt |
AC |
271 ms |
4360 KiB |
| test_0652.txt |
AC |
38 ms |
4104 KiB |
| test_0653.txt |
AC |
44 ms |
3964 KiB |
| test_0654.txt |
AC |
13 ms |
4032 KiB |
| test_0655.txt |
AC |
17 ms |
3828 KiB |
| test_0656.txt |
AC |
296 ms |
4284 KiB |
| test_0657.txt |
AC |
113 ms |
4128 KiB |
| test_0658.txt |
AC |
53 ms |
4100 KiB |
| test_0659.txt |
AC |
60 ms |
4136 KiB |
| test_0660.txt |
AC |
52 ms |
4036 KiB |
| test_0661.txt |
AC |
401 ms |
4336 KiB |
| test_0662.txt |
AC |
10 ms |
3852 KiB |
| test_0663.txt |
AC |
39 ms |
3968 KiB |
| test_0664.txt |
AC |
114 ms |
4156 KiB |
| test_0665.txt |
AC |
38 ms |
3960 KiB |
| test_0666.txt |
AC |
3 ms |
3924 KiB |
| test_0667.txt |
AC |
10 ms |
3964 KiB |
| test_0668.txt |
AC |
49 ms |
4104 KiB |
| test_0669.txt |
AC |
51 ms |
3952 KiB |
| test_0670.txt |
AC |
50 ms |
4120 KiB |
| test_0671.txt |
AC |
203 ms |
4304 KiB |
| test_0672.txt |
AC |
5 ms |
3852 KiB |
| test_0673.txt |
AC |
51 ms |
3952 KiB |
| test_0674.txt |
AC |
287 ms |
4416 KiB |
| test_0675.txt |
AC |
8 ms |
3832 KiB |
| test_0676.txt |
AC |
91 ms |
4184 KiB |
| test_0677.txt |
AC |
189 ms |
4480 KiB |
| test_0678.txt |
AC |
204 ms |
4356 KiB |
| test_0679.txt |
AC |
321 ms |
4488 KiB |
| test_0680.txt |
AC |
25 ms |
3952 KiB |
| test_0681.txt |
AC |
275 ms |
4544 KiB |
| test_0682.txt |
AC |
120 ms |
4108 KiB |
| test_0683.txt |
AC |
79 ms |
4120 KiB |
| test_0684.txt |
AC |
92 ms |
4056 KiB |
| test_0685.txt |
AC |
150 ms |
4132 KiB |
| test_0686.txt |
AC |
330 ms |
4416 KiB |
| test_0687.txt |
AC |
16 ms |
3936 KiB |
| test_0688.txt |
AC |
77 ms |
4032 KiB |
| test_0689.txt |
AC |
229 ms |
4432 KiB |
| test_0690.txt |
AC |
160 ms |
4320 KiB |
| test_0691.txt |
AC |
69 ms |
4008 KiB |
| test_0692.txt |
AC |
165 ms |
4256 KiB |
| test_0693.txt |
AC |
75 ms |
3996 KiB |
| test_0694.txt |
AC |
218 ms |
4236 KiB |
| test_0695.txt |
AC |
118 ms |
3956 KiB |
| test_0696.txt |
AC |
12 ms |
3856 KiB |
| test_0697.txt |
AC |
25 ms |
4088 KiB |
| test_0698.txt |
AC |
9 ms |
3992 KiB |
| test_0699.txt |
AC |
47 ms |
4128 KiB |
| test_0700.txt |
AC |
355 ms |
4436 KiB |
| test_0701.txt |
AC |
138 ms |
4212 KiB |
| test_0702.txt |
AC |
37 ms |
3956 KiB |
| test_0703.txt |
AC |
91 ms |
4056 KiB |
| test_0704.txt |
AC |
16 ms |
3868 KiB |
| test_0705.txt |
AC |
23 ms |
3888 KiB |
| test_0706.txt |
AC |
247 ms |
4244 KiB |
| test_0707.txt |
AC |
247 ms |
4420 KiB |
| test_0708.txt |
AC |
12 ms |
3964 KiB |
| test_0709.txt |
AC |
10 ms |
3832 KiB |
| test_0710.txt |
AC |
59 ms |
4220 KiB |
| test_0711.txt |
AC |
31 ms |
4052 KiB |
| test_0712.txt |
AC |
65 ms |
4052 KiB |
| test_0713.txt |
AC |
19 ms |
4052 KiB |
| test_0714.txt |
AC |
121 ms |
4180 KiB |
| test_0715.txt |
AC |
158 ms |
4288 KiB |
| test_0716.txt |
AC |
11 ms |
3784 KiB |
| test_0717.txt |
AC |
191 ms |
4296 KiB |
| test_0718.txt |
WA |
3 ms |
3832 KiB |
| test_0719.txt |
AC |
17 ms |
3844 KiB |
| test_0720.txt |
AC |
12 ms |
3908 KiB |
| test_0721.txt |
AC |
213 ms |
4376 KiB |
| test_0722.txt |
AC |
8 ms |
3708 KiB |
| test_0723.txt |
AC |
5 ms |
3976 KiB |
| test_0724.txt |
AC |
54 ms |
4020 KiB |
| test_0725.txt |
AC |
6 ms |
3864 KiB |
| test_0726.txt |
AC |
11 ms |
3908 KiB |
| test_0727.txt |
AC |
15 ms |
3912 KiB |
| test_0728.txt |
AC |
4 ms |
3940 KiB |
| test_0729.txt |
AC |
106 ms |
4068 KiB |
| test_0730.txt |
AC |
16 ms |
3920 KiB |
| test_0731.txt |
AC |
148 ms |
4036 KiB |
| test_0732.txt |
AC |
160 ms |
4280 KiB |
| test_0733.txt |
AC |
53 ms |
4160 KiB |
| test_0734.txt |
AC |
48 ms |
4104 KiB |
| test_0735.txt |
AC |
134 ms |
4216 KiB |
| test_0736.txt |
AC |
7 ms |
3876 KiB |
| test_0737.txt |
AC |
10 ms |
3752 KiB |
| test_0738.txt |
AC |
92 ms |
4088 KiB |
| test_0739.txt |
AC |
132 ms |
4192 KiB |
| test_0740.txt |
AC |
51 ms |
3824 KiB |
| test_0741.txt |
AC |
15 ms |
3892 KiB |
| test_0742.txt |
AC |
10 ms |
3980 KiB |
| test_0743.txt |
AC |
114 ms |
4152 KiB |
| test_0744.txt |
AC |
4 ms |
3652 KiB |
| test_0745.txt |
AC |
21 ms |
3984 KiB |
| test_0746.txt |
AC |
119 ms |
4096 KiB |
| test_0747.txt |
AC |
75 ms |
4264 KiB |
| test_0748.txt |
AC |
51 ms |
3984 KiB |
| test_0749.txt |
AC |
62 ms |
4120 KiB |
| test_0750.txt |
AC |
36 ms |
3964 KiB |
| test_0751.txt |
AC |
71 ms |
4064 KiB |
| test_0752.txt |
AC |
185 ms |
4312 KiB |
| test_0753.txt |
AC |
50 ms |
3904 KiB |
| test_0754.txt |
AC |
32 ms |
4056 KiB |
| test_0755.txt |
AC |
78 ms |
4304 KiB |
| test_0756.txt |
AC |
100 ms |
4184 KiB |
| test_0757.txt |
AC |
144 ms |
4196 KiB |
| test_0758.txt |
AC |
18 ms |
3912 KiB |
| test_0759.txt |
AC |
12 ms |
3920 KiB |
| test_0760.txt |
AC |
96 ms |
4104 KiB |
| test_0761.txt |
AC |
18 ms |
3908 KiB |
| test_0762.txt |
AC |
33 ms |
3996 KiB |
| test_0763.txt |
AC |
66 ms |
4076 KiB |
| test_0764.txt |
AC |
7 ms |
3812 KiB |
| test_0765.txt |
AC |
144 ms |
4300 KiB |
| test_0766.txt |
AC |
29 ms |
3960 KiB |
| test_0767.txt |
AC |
7 ms |
3872 KiB |
| test_0768.txt |
AC |
28 ms |
3936 KiB |
| test_0769.txt |
AC |
32 ms |
3928 KiB |
| test_0770.txt |
AC |
270 ms |
4368 KiB |
| test_0771.txt |
AC |
3 ms |
3840 KiB |
| test_0772.txt |
AC |
105 ms |
4128 KiB |
| test_0773.txt |
AC |
3 ms |
3872 KiB |
| test_0774.txt |
AC |
96 ms |
3984 KiB |
| test_0775.txt |
AC |
233 ms |
4348 KiB |
| test_0776.txt |
AC |
10 ms |
3724 KiB |
| test_0777.txt |
AC |
146 ms |
4364 KiB |
| test_0778.txt |
AC |
210 ms |
4460 KiB |
| test_0779.txt |
AC |
34 ms |
4000 KiB |
| test_0780.txt |
WA |
80 ms |
4308 KiB |
| test_0781.txt |
AC |
28 ms |
4028 KiB |
| test_0782.txt |
AC |
95 ms |
4156 KiB |
| test_0783.txt |
AC |
55 ms |
4064 KiB |
| test_0784.txt |
AC |
15 ms |
3892 KiB |
| test_0785.txt |
AC |
87 ms |
4076 KiB |
| test_0786.txt |
AC |
42 ms |
3836 KiB |
| test_0787.txt |
AC |
61 ms |
4080 KiB |
| test_0788.txt |
AC |
8 ms |
3868 KiB |
| test_0789.txt |
AC |
77 ms |
4124 KiB |
| test_0790.txt |
AC |
33 ms |
3980 KiB |
| test_0791.txt |
AC |
131 ms |
4124 KiB |
| test_0792.txt |
AC |
58 ms |
4040 KiB |
| test_0793.txt |
AC |
102 ms |
4132 KiB |
| test_0794.txt |
AC |
46 ms |
4048 KiB |
| test_0795.txt |
AC |
5 ms |
3864 KiB |
| test_0796.txt |
AC |
51 ms |
4100 KiB |
| test_0797.txt |
AC |
231 ms |
4260 KiB |
| test_0798.txt |
AC |
21 ms |
3936 KiB |
| test_0799.txt |
AC |
34 ms |
3996 KiB |
| test_0800.txt |
AC |
19 ms |
4068 KiB |
| test_0801.txt |
AC |
46 ms |
3948 KiB |
| test_0802.txt |
WA |
42 ms |
3876 KiB |
| test_0803.txt |
AC |
41 ms |
4008 KiB |
| test_0804.txt |
AC |
24 ms |
3940 KiB |
| test_0805.txt |
AC |
5 ms |
3860 KiB |
| test_0806.txt |
AC |
490 ms |
4396 KiB |
| test_0807.txt |
AC |
129 ms |
4144 KiB |
| test_0808.txt |
AC |
6 ms |
3796 KiB |
| test_0809.txt |
AC |
26 ms |
3924 KiB |
| test_0810.txt |
AC |
209 ms |
4412 KiB |
| test_0811.txt |
AC |
38 ms |
4044 KiB |
| test_0812.txt |
AC |
10 ms |
3712 KiB |
| test_0813.txt |
AC |
34 ms |
4008 KiB |
| test_0814.txt |
AC |
14 ms |
3840 KiB |
| test_0815.txt |
AC |
123 ms |
4116 KiB |
| test_0816.txt |
AC |
8 ms |
3828 KiB |
| test_0817.txt |
AC |
53 ms |
3904 KiB |
| test_0818.txt |
AC |
30 ms |
3912 KiB |
| test_0819.txt |
AC |
269 ms |
4368 KiB |
| test_0820.txt |
AC |
5 ms |
3900 KiB |
| test_0821.txt |
AC |
16 ms |
3920 KiB |
| test_0822.txt |
AC |
46 ms |
4000 KiB |
| test_0823.txt |
AC |
291 ms |
4552 KiB |
| test_0824.txt |
AC |
112 ms |
4032 KiB |
| test_0825.txt |
AC |
188 ms |
4276 KiB |
| test_0826.txt |
AC |
96 ms |
4144 KiB |
| test_0827.txt |
AC |
21 ms |
4064 KiB |
| test_0828.txt |
AC |
275 ms |
4380 KiB |
| test_0829.txt |
AC |
23 ms |
3748 KiB |
| test_0830.txt |
AC |
18 ms |
4028 KiB |
| test_0831.txt |
AC |
22 ms |
4064 KiB |
| test_0832.txt |
AC |
6 ms |
3872 KiB |
| test_0833.txt |
AC |
233 ms |
4372 KiB |
| test_0834.txt |
AC |
64 ms |
4028 KiB |
| test_0835.txt |
AC |
65 ms |
3996 KiB |
| test_0836.txt |
AC |
8 ms |
3844 KiB |
| test_0837.txt |
AC |
87 ms |
3996 KiB |
| test_0838.txt |
AC |
70 ms |
4208 KiB |
| test_0839.txt |
AC |
152 ms |
4196 KiB |
| test_0840.txt |
AC |
48 ms |
4080 KiB |
| test_0841.txt |
AC |
48 ms |
4072 KiB |
| test_0842.txt |
AC |
10 ms |
4004 KiB |
| test_0843.txt |
AC |
16 ms |
3848 KiB |
| test_0844.txt |
AC |
80 ms |
4004 KiB |
| test_0845.txt |
AC |
12 ms |
3832 KiB |
| test_0846.txt |
AC |
115 ms |
4420 KiB |
| test_0847.txt |
AC |
17 ms |
4032 KiB |
| test_0848.txt |
AC |
22 ms |
3984 KiB |
| test_0849.txt |
AC |
107 ms |
3960 KiB |
| test_0850.txt |
AC |
8 ms |
3688 KiB |
| test_0851.txt |
AC |
65 ms |
4104 KiB |
| test_0852.txt |
AC |
85 ms |
4028 KiB |
| test_0853.txt |
AC |
60 ms |
3976 KiB |
| test_0854.txt |
AC |
34 ms |
3976 KiB |
| test_0855.txt |
AC |
19 ms |
3996 KiB |
| test_0856.txt |
AC |
168 ms |
4176 KiB |
| test_0857.txt |
WA |
75 ms |
4192 KiB |
| test_0858.txt |
AC |
110 ms |
4140 KiB |
| test_0859.txt |
AC |
51 ms |
3972 KiB |
| test_0860.txt |
AC |
110 ms |
4052 KiB |
| test_0861.txt |
AC |
28 ms |
3952 KiB |
| test_0862.txt |
AC |
90 ms |
4144 KiB |
| test_0863.txt |
AC |
205 ms |
4292 KiB |
| test_0864.txt |
AC |
84 ms |
4208 KiB |
| test_0865.txt |
AC |
214 ms |
4228 KiB |
| test_0866.txt |
AC |
163 ms |
4288 KiB |
| test_0867.txt |
AC |
42 ms |
3988 KiB |
| test_0868.txt |
AC |
8 ms |
3936 KiB |
| test_0869.txt |
AC |
156 ms |
4164 KiB |
| test_0870.txt |
AC |
152 ms |
4184 KiB |
| test_0871.txt |
AC |
138 ms |
4292 KiB |
| test_0872.txt |
AC |
20 ms |
3896 KiB |
| test_0873.txt |
AC |
38 ms |
4044 KiB |
| test_0874.txt |
AC |
127 ms |
4372 KiB |
| test_0875.txt |
AC |
14 ms |
3920 KiB |
| test_0876.txt |
AC |
411 ms |
4304 KiB |
| test_0877.txt |
AC |
89 ms |
3984 KiB |
| test_0878.txt |
AC |
160 ms |
4280 KiB |
| test_0879.txt |
AC |
12 ms |
3784 KiB |
| test_0880.txt |
AC |
52 ms |
3796 KiB |
| test_0881.txt |
AC |
9 ms |
3692 KiB |
| test_0882.txt |
AC |
56 ms |
4016 KiB |
| test_0883.txt |
AC |
23 ms |
3928 KiB |
| test_0884.txt |
AC |
23 ms |
4012 KiB |
| test_0885.txt |
AC |
31 ms |
3792 KiB |
| test_0886.txt |
AC |
240 ms |
4460 KiB |
| test_0887.txt |
AC |
6 ms |
3676 KiB |
| test_0888.txt |
AC |
15 ms |
3884 KiB |
| test_0889.txt |
AC |
225 ms |
4484 KiB |
| test_0890.txt |
AC |
321 ms |
4336 KiB |
| test_0891.txt |
AC |
77 ms |
3872 KiB |
| test_0892.txt |
AC |
51 ms |
4188 KiB |
| test_0893.txt |
AC |
226 ms |
4232 KiB |
| test_0894.txt |
AC |
180 ms |
4236 KiB |
| test_0895.txt |
AC |
52 ms |
4164 KiB |
| test_0896.txt |
AC |
11 ms |
3908 KiB |
| test_0897.txt |
AC |
93 ms |
4192 KiB |
| test_0898.txt |
AC |
121 ms |
4292 KiB |
| test_0899.txt |
AC |
35 ms |
3948 KiB |
| test_0900.txt |
AC |
40 ms |
4100 KiB |
| test_0901.txt |
AC |
16 ms |
3948 KiB |
| test_0902.txt |
AC |
243 ms |
4300 KiB |
| test_0903.txt |
AC |
64 ms |
4112 KiB |
| test_0904.txt |
AC |
10 ms |
4024 KiB |
| test_0905.txt |
AC |
115 ms |
4300 KiB |
| test_0906.txt |
AC |
7 ms |
3900 KiB |
| test_0907.txt |
AC |
193 ms |
4400 KiB |
| test_0908.txt |
AC |
54 ms |
3964 KiB |
| test_0909.txt |
AC |
104 ms |
4052 KiB |
| test_0910.txt |
AC |
28 ms |
3936 KiB |
| test_0911.txt |
AC |
18 ms |
3952 KiB |
| test_0912.txt |
AC |
113 ms |
4176 KiB |
| test_0913.txt |
AC |
5 ms |
3864 KiB |
| test_0914.txt |
AC |
96 ms |
4148 KiB |
| test_0915.txt |
AC |
295 ms |
4624 KiB |
| test_0916.txt |
AC |
108 ms |
4168 KiB |
| test_0917.txt |
AC |
17 ms |
3784 KiB |
| test_0918.txt |
AC |
53 ms |
4040 KiB |
| test_0919.txt |
AC |
27 ms |
3932 KiB |
| test_0920.txt |
AC |
10 ms |
3996 KiB |
| test_0921.txt |
AC |
33 ms |
3972 KiB |
| test_0922.txt |
AC |
72 ms |
4136 KiB |
| test_0923.txt |
AC |
23 ms |
3740 KiB |
| test_0924.txt |
AC |
51 ms |
4056 KiB |
| test_0925.txt |
AC |
13 ms |
3976 KiB |
| test_0926.txt |
AC |
76 ms |
3852 KiB |
| test_0927.txt |
AC |
19 ms |
3856 KiB |
| test_0928.txt |
AC |
89 ms |
4048 KiB |
| test_0929.txt |
AC |
53 ms |
4112 KiB |
| test_0930.txt |
AC |
33 ms |
3860 KiB |
| test_0931.txt |
AC |
77 ms |
4160 KiB |
| test_0932.txt |
AC |
356 ms |
4496 KiB |
| test_0933.txt |
AC |
324 ms |
4328 KiB |
| test_0934.txt |
AC |
33 ms |
3860 KiB |
| test_0935.txt |
AC |
40 ms |
3824 KiB |
| test_0936.txt |
AC |
33 ms |
4072 KiB |
| test_0937.txt |
AC |
10 ms |
3868 KiB |
| test_0938.txt |
AC |
67 ms |
4104 KiB |
| test_0939.txt |
AC |
5 ms |
4012 KiB |
| test_0940.txt |
AC |
101 ms |
3992 KiB |
| test_0941.txt |
AC |
116 ms |
4220 KiB |
| test_0942.txt |
AC |
5 ms |
3852 KiB |
| test_0943.txt |
AC |
23 ms |
3812 KiB |
| test_0944.txt |
AC |
11 ms |
3928 KiB |
| test_0945.txt |
AC |
31 ms |
3804 KiB |
| test_0946.txt |
AC |
17 ms |
3900 KiB |
| test_0947.txt |
AC |
56 ms |
4080 KiB |
| test_0948.txt |
AC |
116 ms |
4200 KiB |
| test_0949.txt |
AC |
84 ms |
4296 KiB |
| test_0950.txt |
AC |
18 ms |
3940 KiB |
| test_0951.txt |
AC |
235 ms |
4048 KiB |
| test_0952.txt |
AC |
14 ms |
3804 KiB |
| test_0953.txt |
AC |
38 ms |
4288 KiB |
| test_0954.txt |
AC |
25 ms |
3944 KiB |
| test_0955.txt |
AC |
14 ms |
4004 KiB |
| test_0956.txt |
AC |
22 ms |
3964 KiB |
| test_0957.txt |
AC |
16 ms |
3868 KiB |
| test_0958.txt |
AC |
96 ms |
4156 KiB |
| test_0959.txt |
AC |
118 ms |
4088 KiB |
| test_0960.txt |
AC |
13 ms |
3888 KiB |
| test_0961.txt |
AC |
48 ms |
3948 KiB |
| test_0962.txt |
AC |
67 ms |
3896 KiB |
| test_0963.txt |
AC |
38 ms |
4052 KiB |
| test_0964.txt |
AC |
8 ms |
3856 KiB |
| test_0965.txt |
AC |
25 ms |
3968 KiB |
| test_0966.txt |
AC |
423 ms |
4500 KiB |
| test_0967.txt |
AC |
12 ms |
3984 KiB |
| test_0968.txt |
AC |
142 ms |
4128 KiB |
| test_0969.txt |
AC |
4 ms |
3860 KiB |
| test_0970.txt |
AC |
216 ms |
4436 KiB |
| test_0971.txt |
AC |
8 ms |
3900 KiB |
| test_0972.txt |
AC |
187 ms |
4268 KiB |
| test_0973.txt |
AC |
72 ms |
4008 KiB |
| test_0974.txt |
AC |
85 ms |
4036 KiB |
| test_0975.txt |
AC |
15 ms |
3916 KiB |
| test_0976.txt |
AC |
65 ms |
4100 KiB |
| test_0977.txt |
AC |
43 ms |
4096 KiB |
| test_0978.txt |
AC |
43 ms |
4044 KiB |
| test_0979.txt |
AC |
136 ms |
4192 KiB |
| test_0980.txt |
AC |
24 ms |
3912 KiB |
| test_0981.txt |
AC |
36 ms |
3896 KiB |
| test_0982.txt |
AC |
98 ms |
4216 KiB |
| test_0983.txt |
AC |
13 ms |
4016 KiB |
| test_0984.txt |
AC |
8 ms |
3876 KiB |
| test_0985.txt |
AC |
22 ms |
3976 KiB |
| test_0986.txt |
AC |
270 ms |
4232 KiB |
| test_0987.txt |
AC |
182 ms |
4252 KiB |
| test_0988.txt |
AC |
61 ms |
4036 KiB |
| test_0989.txt |
AC |
59 ms |
4020 KiB |
| test_0990.txt |
AC |
67 ms |
4000 KiB |
| test_0991.txt |
AC |
6 ms |
3868 KiB |
| test_0992.txt |
AC |
20 ms |
4028 KiB |
| test_0993.txt |
AC |
56 ms |
4092 KiB |
| test_0994.txt |
AC |
64 ms |
4140 KiB |
| test_0995.txt |
AC |
44 ms |
3992 KiB |
| test_0996.txt |
AC |
95 ms |
4064 KiB |
| test_0997.txt |
AC |
37 ms |
3888 KiB |
| test_0998.txt |
AC |
25 ms |
3988 KiB |
| test_0999.txt |
AC |
18 ms |
4052 KiB |
| test_1000.txt |
AC |
112 ms |
4120 KiB |
| test_1001.txt |
AC |
41 ms |
3904 KiB |
| test_1002.txt |
AC |
21 ms |
3880 KiB |
| test_1003.txt |
AC |
74 ms |
4060 KiB |
| test_1004.txt |
AC |
71 ms |
4152 KiB |
| test_1005.txt |
AC |
25 ms |
3936 KiB |
| test_1006.txt |
AC |
46 ms |
3940 KiB |
| test_1007.txt |
AC |
53 ms |
3824 KiB |
| test_1008.txt |
AC |
291 ms |
4576 KiB |
| test_1009.txt |
AC |
68 ms |
4208 KiB |
| test_1010.txt |
AC |
37 ms |
4012 KiB |
| test_1011.txt |
AC |
8 ms |
3948 KiB |
| test_1012.txt |
AC |
4 ms |
3868 KiB |
| test_1013.txt |
AC |
49 ms |
4060 KiB |
| test_1014.txt |
AC |
120 ms |
4128 KiB |
| test_1015.txt |
AC |
5 ms |
3976 KiB |
| test_1016.txt |
AC |
141 ms |
4328 KiB |
| test_1017.txt |
AC |
75 ms |
4112 KiB |
| test_1018.txt |
AC |
145 ms |
3940 KiB |
| test_1019.txt |
AC |
101 ms |
4168 KiB |
| test_1020.txt |
AC |
115 ms |
4076 KiB |
| test_1021.txt |
AC |
86 ms |
3980 KiB |
| test_1022.txt |
AC |
20 ms |
3888 KiB |
| test_1023.txt |
AC |
38 ms |
3988 KiB |
| test_1024.txt |
AC |
55 ms |
3988 KiB |
| test_1025.txt |
AC |
336 ms |
4596 KiB |
| test_1026.txt |
AC |
81 ms |
4164 KiB |
| test_1027.txt |
AC |
70 ms |
3984 KiB |
| test_1028.txt |
AC |
104 ms |
4208 KiB |
| test_1029.txt |
AC |
53 ms |
4184 KiB |
| test_1030.txt |
AC |
10 ms |
3740 KiB |
| test_1031.txt |
AC |
15 ms |
3892 KiB |
| test_1032.txt |
AC |
108 ms |
4236 KiB |
| test_1033.txt |
AC |
79 ms |
4132 KiB |
| test_1034.txt |
AC |
34 ms |
3912 KiB |
| test_1035.txt |
AC |
22 ms |
3752 KiB |
| test_1036.txt |
AC |
130 ms |
4300 KiB |
| test_1037.txt |
AC |
83 ms |
4124 KiB |
| test_1038.txt |
AC |
16 ms |
3944 KiB |
| test_1039.txt |
AC |
106 ms |
4052 KiB |
| test_1040.txt |
AC |
86 ms |
4012 KiB |
| test_1041.txt |
AC |
93 ms |
4132 KiB |
| test_1042.txt |
AC |
249 ms |
4348 KiB |
| test_1043.txt |
AC |
46 ms |
4024 KiB |
| test_1044.txt |
AC |
25 ms |
3860 KiB |
| test_1045.txt |
AC |
127 ms |
4256 KiB |
| test_1046.txt |
AC |
16 ms |
3916 KiB |
| test_1047.txt |
AC |
61 ms |
3936 KiB |
| test_1048.txt |
AC |
39 ms |
3964 KiB |
| test_1049.txt |
AC |
87 ms |
4024 KiB |
| test_1050.txt |
AC |
8 ms |
3856 KiB |
| test_1051.txt |
AC |
131 ms |
4124 KiB |
| test_1052.txt |
AC |
56 ms |
3900 KiB |
| test_1053.txt |
AC |
162 ms |
4288 KiB |
| test_1054.txt |
AC |
58 ms |
4108 KiB |
| test_1055.txt |
AC |
6 ms |
3876 KiB |
| test_1056.txt |
AC |
12 ms |
3988 KiB |
| test_1057.txt |
AC |
120 ms |
3972 KiB |
| test_1058.txt |
AC |
27 ms |
3928 KiB |
| test_1059.txt |
AC |
19 ms |
3976 KiB |
| test_1060.txt |
AC |
12 ms |
3892 KiB |
| test_1061.txt |
AC |
19 ms |
3916 KiB |
| test_1062.txt |
AC |
11 ms |
3904 KiB |
| test_1063.txt |
AC |
164 ms |
4016 KiB |
| test_1064.txt |
AC |
314 ms |
4328 KiB |
| test_1065.txt |
AC |
121 ms |
4296 KiB |
| test_1066.txt |
AC |
16 ms |
3928 KiB |
| test_1067.txt |
AC |
23 ms |
3944 KiB |
| test_1068.txt |
AC |
69 ms |
3860 KiB |
| test_1069.txt |
AC |
44 ms |
3860 KiB |
| test_1070.txt |
AC |
122 ms |
4228 KiB |
| test_1071.txt |
AC |
20 ms |
3936 KiB |
| test_1072.txt |
AC |
36 ms |
4116 KiB |
| test_1073.txt |
AC |
224 ms |
4240 KiB |
| test_1074.txt |
AC |
74 ms |
4028 KiB |
| test_1075.txt |
AC |
97 ms |
4128 KiB |
| test_1076.txt |
AC |
430 ms |
4560 KiB |
| test_1077.txt |
AC |
20 ms |
3856 KiB |
| test_1078.txt |
AC |
24 ms |
4020 KiB |
| test_1079.txt |
AC |
108 ms |
4048 KiB |
| test_1080.txt |
AC |
37 ms |
4132 KiB |
| test_1081.txt |
AC |
10 ms |
3836 KiB |
| test_1082.txt |
AC |
91 ms |
4084 KiB |
| test_1083.txt |
AC |
29 ms |
4060 KiB |
| test_1084.txt |
AC |
44 ms |
3952 KiB |
| test_1085.txt |
AC |
35 ms |
3892 KiB |
| test_1086.txt |
AC |
11 ms |
3832 KiB |
| test_1087.txt |
AC |
64 ms |
4004 KiB |
| test_1088.txt |
AC |
71 ms |
4128 KiB |
| test_1089.txt |
AC |
13 ms |
3920 KiB |
| test_1090.txt |
AC |
56 ms |
3972 KiB |
| test_1091.txt |
AC |
13 ms |
3916 KiB |
| test_1092.txt |
AC |
217 ms |
4312 KiB |
| test_1093.txt |
AC |
28 ms |
3980 KiB |
| test_1094.txt |
AC |
90 ms |
4260 KiB |
| test_1095.txt |
AC |
10 ms |
3688 KiB |
| test_1096.txt |
AC |
387 ms |
4484 KiB |
| test_1097.txt |
AC |
48 ms |
4144 KiB |
| test_1098.txt |
AC |
206 ms |
4292 KiB |
| test_1099.txt |
AC |
117 ms |
4044 KiB |
| test_1100.txt |
AC |
97 ms |
4200 KiB |
| test_1101.txt |
AC |
8 ms |
3968 KiB |
| test_1102.txt |
AC |
225 ms |
4452 KiB |
| test_1103.txt |
AC |
26 ms |
3948 KiB |
| test_1104.txt |
AC |
28 ms |
3864 KiB |
| test_1105.txt |
AC |
22 ms |
3976 KiB |
| test_1106.txt |
AC |
5 ms |
3872 KiB |
| test_1107.txt |
AC |
177 ms |
4168 KiB |
| test_1108.txt |
AC |
74 ms |
4144 KiB |
| test_1109.txt |
AC |
227 ms |
4408 KiB |
| test_1110.txt |
AC |
59 ms |
3996 KiB |
| test_1111.txt |
AC |
60 ms |
4088 KiB |
| test_1112.txt |
AC |
99 ms |
4304 KiB |
| test_1113.txt |
AC |
101 ms |
4224 KiB |
| test_1114.txt |
AC |
176 ms |
4212 KiB |
| test_1115.txt |
AC |
250 ms |
4464 KiB |
| test_1116.txt |
AC |
8 ms |
3932 KiB |
| test_1117.txt |
AC |
10 ms |
3988 KiB |
| test_1118.txt |
AC |
209 ms |
4188 KiB |
| test_1119.txt |
AC |
31 ms |
4320 KiB |
| test_1120.txt |
AC |
68 ms |
4064 KiB |
| test_1121.txt |
AC |
11 ms |
3848 KiB |
| test_1122.txt |
AC |
104 ms |
4184 KiB |
| test_1123.txt |
AC |
9 ms |
3836 KiB |
| test_1124.txt |
AC |
18 ms |
3844 KiB |
| test_1125.txt |
AC |
8 ms |
3876 KiB |
| test_1126.txt |
AC |
10 ms |
3928 KiB |
| test_1127.txt |
AC |
37 ms |
3944 KiB |
| test_1128.txt |
AC |
78 ms |
4076 KiB |
| test_1129.txt |
AC |
413 ms |
4428 KiB |
| test_1130.txt |
AC |
169 ms |
3984 KiB |
| test_1131.txt |
AC |
12 ms |
3796 KiB |
| test_1132.txt |
AC |
35 ms |
3960 KiB |
| test_1133.txt |
AC |
211 ms |
4216 KiB |
| test_1134.txt |
AC |
67 ms |
4052 KiB |
| test_1135.txt |
AC |
33 ms |
4072 KiB |
| test_1136.txt |
AC |
246 ms |
4452 KiB |
| test_1137.txt |
AC |
67 ms |
4040 KiB |
| test_1138.txt |
AC |
69 ms |
3980 KiB |
| test_1139.txt |
AC |
207 ms |
4340 KiB |
| test_1140.txt |
AC |
19 ms |
3928 KiB |
| test_1141.txt |
AC |
36 ms |
3908 KiB |
| test_1142.txt |
AC |
31 ms |
3916 KiB |
| test_1143.txt |
AC |
41 ms |
3832 KiB |
| test_1144.txt |
AC |
37 ms |
4004 KiB |
| test_1145.txt |
AC |
118 ms |
4104 KiB |
| test_1146.txt |
AC |
6 ms |
3884 KiB |
| test_1147.txt |
AC |
130 ms |
4156 KiB |
| test_1148.txt |
AC |
8 ms |
3860 KiB |
| test_1149.txt |
AC |
58 ms |
4176 KiB |
| test_1150.txt |
AC |
7 ms |
3700 KiB |
| test_1151.txt |
AC |
12 ms |
3836 KiB |
| test_1152.txt |
AC |
121 ms |
4132 KiB |
| test_1153.txt |
AC |
21 ms |
3920 KiB |
| test_1154.txt |
AC |
95 ms |
4008 KiB |
| test_1155.txt |
AC |
112 ms |
4028 KiB |
| test_1156.txt |
AC |
182 ms |
4240 KiB |
| test_1157.txt |
AC |
13 ms |
3928 KiB |
| test_1158.txt |
AC |
6 ms |
3888 KiB |
| test_1159.txt |
AC |
100 ms |
4164 KiB |
| test_1160.txt |
AC |
468 ms |
4432 KiB |
| test_1161.txt |
AC |
181 ms |
4036 KiB |
| test_1162.txt |
AC |
103 ms |
4044 KiB |
| test_1163.txt |
AC |
64 ms |
3936 KiB |
| test_1164.txt |
AC |
108 ms |
4400 KiB |
| test_1165.txt |
AC |
11 ms |
3904 KiB |
| test_1166.txt |
AC |
53 ms |
3992 KiB |
| test_1167.txt |
AC |
10 ms |
3900 KiB |
| test_1168.txt |
AC |
6 ms |
3948 KiB |
| test_1169.txt |
AC |
111 ms |
4140 KiB |
| test_1170.txt |
AC |
33 ms |
3992 KiB |
| test_1171.txt |
AC |
4 ms |
3884 KiB |
| test_1172.txt |
AC |
37 ms |
4016 KiB |
| test_1173.txt |
AC |
181 ms |
4144 KiB |
| test_1174.txt |
AC |
135 ms |
4116 KiB |
| test_1175.txt |
AC |
30 ms |
4056 KiB |
| test_1176.txt |
AC |
11 ms |
3900 KiB |
| test_1177.txt |
AC |
20 ms |
3872 KiB |
| test_1178.txt |
AC |
105 ms |
4152 KiB |
| test_1179.txt |
AC |
44 ms |
3892 KiB |
| test_1180.txt |
AC |
34 ms |
4068 KiB |
| test_1181.txt |
AC |
120 ms |
3984 KiB |
| test_1182.txt |
AC |
5 ms |
3976 KiB |
| test_1183.txt |
AC |
127 ms |
4236 KiB |
| test_1184.txt |
AC |
14 ms |
3932 KiB |
| test_1185.txt |
AC |
53 ms |
4092 KiB |
| test_1186.txt |
AC |
13 ms |
4036 KiB |
| test_1187.txt |
AC |
34 ms |
3928 KiB |
| test_1188.txt |
AC |
63 ms |
3872 KiB |
| test_1189.txt |
AC |
47 ms |
4000 KiB |
| test_1190.txt |
AC |
89 ms |
4088 KiB |
| test_1191.txt |
AC |
27 ms |
4012 KiB |
| test_1192.txt |
AC |
98 ms |
4180 KiB |
| test_1193.txt |
AC |
120 ms |
4016 KiB |
| test_1194.txt |
AC |
177 ms |
4236 KiB |
| test_1195.txt |
AC |
100 ms |
4272 KiB |
| test_1196.txt |
AC |
44 ms |
3864 KiB |
| test_1197.txt |
AC |
36 ms |
3824 KiB |
| test_1198.txt |
AC |
116 ms |
4100 KiB |
| test_1199.txt |
AC |
8 ms |
3860 KiB |
| test_1200.txt |
AC |
16 ms |
3932 KiB |
| test_1201.txt |
AC |
31 ms |
3888 KiB |
| test_1202.txt |
AC |
184 ms |
4304 KiB |
| test_1203.txt |
AC |
15 ms |
3936 KiB |
| test_1204.txt |
AC |
98 ms |
4044 KiB |
| test_1205.txt |
AC |
16 ms |
3892 KiB |
| test_1206.txt |
AC |
12 ms |
3728 KiB |
| test_1207.txt |
AC |
257 ms |
4268 KiB |
| test_1208.txt |
AC |
34 ms |
3944 KiB |
| test_1209.txt |
AC |
14 ms |
3900 KiB |
| test_1210.txt |
AC |
25 ms |
3936 KiB |
| test_1211.txt |
AC |
40 ms |
4020 KiB |
| test_1212.txt |
AC |
63 ms |
3888 KiB |
| test_1213.txt |
AC |
180 ms |
4196 KiB |
| test_1214.txt |
AC |
35 ms |
3992 KiB |
| test_1215.txt |
AC |
67 ms |
4016 KiB |
| test_1216.txt |
AC |
20 ms |
3964 KiB |
| test_1217.txt |
AC |
14 ms |
3912 KiB |
| test_1218.txt |
AC |
40 ms |
3936 KiB |
| test_1219.txt |
AC |
192 ms |
4188 KiB |
| test_1220.txt |
AC |
42 ms |
3804 KiB |
| test_1221.txt |
AC |
14 ms |
3720 KiB |
| test_1222.txt |
AC |
71 ms |
4060 KiB |
| test_1223.txt |
AC |
164 ms |
4152 KiB |
| test_1224.txt |
AC |
37 ms |
3948 KiB |
| test_1225.txt |
AC |
17 ms |
3852 KiB |
| test_1226.txt |
AC |
305 ms |
4588 KiB |
| test_1227.txt |
AC |
28 ms |
3964 KiB |
| test_1228.txt |
AC |
21 ms |
3748 KiB |
| test_1229.txt |
AC |
129 ms |
4244 KiB |
| test_1230.txt |
AC |
3 ms |
3848 KiB |
| test_1231.txt |
AC |
32 ms |
3944 KiB |
| test_1232.txt |
AC |
5 ms |
3888 KiB |
| test_1233.txt |
AC |
136 ms |
4196 KiB |
| test_1234.txt |
AC |
12 ms |
3964 KiB |
| test_1235.txt |
AC |
45 ms |
4044 KiB |
| test_1236.txt |
AC |
82 ms |
3948 KiB |
| test_1237.txt |
AC |
69 ms |
3892 KiB |
| test_1238.txt |
AC |
11 ms |
3924 KiB |
| test_1239.txt |
AC |
147 ms |
4128 KiB |
| test_1240.txt |
AC |
12 ms |
3904 KiB |
| test_1241.txt |
AC |
28 ms |
4232 KiB |
| test_1242.txt |
AC |
12 ms |
3984 KiB |
| test_1243.txt |
AC |
10 ms |
3892 KiB |
| test_1244.txt |
AC |
102 ms |
4184 KiB |
| test_1245.txt |
AC |
25 ms |
3968 KiB |
| test_1246.txt |
AC |
51 ms |
3820 KiB |
| test_1247.txt |
AC |
11 ms |
3916 KiB |
| test_1248.txt |
AC |
32 ms |
4000 KiB |
| test_1249.txt |
AC |
8 ms |
3880 KiB |
| test_1250.txt |
AC |
12 ms |
3912 KiB |
| test_1251.txt |
AC |
30 ms |
4080 KiB |
| test_1252.txt |
AC |
33 ms |
3972 KiB |
| test_1253.txt |
AC |
10 ms |
3844 KiB |
| test_1254.txt |
AC |
108 ms |
4180 KiB |
| test_1255.txt |
AC |
6 ms |
3852 KiB |
| test_1256.txt |
AC |
57 ms |
4196 KiB |
| test_1257.txt |
AC |
18 ms |
3992 KiB |
| test_1258.txt |
AC |
13 ms |
3988 KiB |
| test_1259.txt |
AC |
234 ms |
4180 KiB |
| test_1260.txt |
AC |
21 ms |
4160 KiB |
| test_1261.txt |
AC |
53 ms |
3972 KiB |
| test_1262.txt |
AC |
22 ms |
3848 KiB |
| test_1263.txt |
AC |
105 ms |
4300 KiB |
| test_1264.txt |
AC |
177 ms |
4120 KiB |
| test_1265.txt |
AC |
186 ms |
4384 KiB |
| test_1266.txt |
AC |
54 ms |
4032 KiB |
| test_1267.txt |
AC |
128 ms |
4152 KiB |
| test_1268.txt |
AC |
347 ms |
4448 KiB |
| test_1269.txt |
AC |
188 ms |
4248 KiB |
| test_1270.txt |
AC |
78 ms |
4204 KiB |
| test_1271.txt |
AC |
127 ms |
4212 KiB |
| test_1272.txt |
AC |
10 ms |
3880 KiB |
| test_1273.txt |
AC |
28 ms |
3984 KiB |
| test_1274.txt |
AC |
67 ms |
4168 KiB |
| test_1275.txt |
AC |
328 ms |
4352 KiB |
| test_1276.txt |
AC |
16 ms |
3912 KiB |
| test_1277.txt |
AC |
17 ms |
4092 KiB |
| test_1278.txt |
AC |
13 ms |
4024 KiB |
| test_1279.txt |
AC |
386 ms |
4452 KiB |
| test_1280.txt |
AC |
10 ms |
3892 KiB |
| test_1281.txt |
AC |
8 ms |
3896 KiB |
| test_1282.txt |
AC |
87 ms |
4012 KiB |
| test_1283.txt |
WA |
54 ms |
3976 KiB |
| test_1284.txt |
AC |
92 ms |
4068 KiB |
| test_1285.txt |
AC |
15 ms |
3776 KiB |
| test_1286.txt |
AC |
58 ms |
4068 KiB |
| test_1287.txt |
AC |
19 ms |
3728 KiB |
| test_1288.txt |
AC |
139 ms |
3996 KiB |
| test_1289.txt |
AC |
79 ms |
3896 KiB |
| test_1290.txt |
AC |
11 ms |
3928 KiB |
| test_1291.txt |
AC |
41 ms |
4048 KiB |
| test_1292.txt |
AC |
83 ms |
4068 KiB |
| test_1293.txt |
AC |
11 ms |
3892 KiB |
| test_1294.txt |
AC |
29 ms |
3932 KiB |
| test_1295.txt |
AC |
42 ms |
3992 KiB |
| test_1296.txt |
AC |
184 ms |
4344 KiB |
| test_1297.txt |
AC |
60 ms |
4128 KiB |
| test_1298.txt |
AC |
22 ms |
3696 KiB |
| test_1299.txt |
AC |
8 ms |
3800 KiB |
| test_1300.txt |
AC |
87 ms |
4164 KiB |
| test_1301.txt |
AC |
27 ms |
3920 KiB |
| test_1302.txt |
AC |
4 ms |
3848 KiB |
| test_1303.txt |
AC |
144 ms |
4096 KiB |
| test_1304.txt |
AC |
111 ms |
4016 KiB |
| test_1305.txt |
AC |
123 ms |
4220 KiB |
| test_1306.txt |
AC |
64 ms |
4120 KiB |
| test_1307.txt |
AC |
25 ms |
3804 KiB |
| test_1308.txt |
AC |
94 ms |
4056 KiB |
| test_1309.txt |
AC |
27 ms |
4000 KiB |
| test_1310.txt |
AC |
3 ms |
3844 KiB |
| test_1311.txt |
AC |
22 ms |
3788 KiB |
| test_1312.txt |
AC |
4 ms |
3804 KiB |
| test_1313.txt |
AC |
174 ms |
4252 KiB |
| test_1314.txt |
AC |
6 ms |
3976 KiB |
| test_1315.txt |
AC |
146 ms |
4204 KiB |
| test_1316.txt |
AC |
103 ms |
4028 KiB |
| test_1317.txt |
AC |
164 ms |
4396 KiB |
| test_1318.txt |
AC |
31 ms |
4124 KiB |
| test_1319.txt |
AC |
67 ms |
4020 KiB |
| test_1320.txt |
AC |
89 ms |
4100 KiB |
| test_1321.txt |
AC |
102 ms |
4136 KiB |
| test_1322.txt |
AC |
33 ms |
4012 KiB |
| test_1323.txt |
AC |
239 ms |
4268 KiB |
| test_1324.txt |
AC |
12 ms |
4000 KiB |
| test_1325.txt |
AC |
62 ms |
3968 KiB |
| test_1326.txt |
AC |
71 ms |
4016 KiB |
| test_1327.txt |
AC |
29 ms |
3800 KiB |
| test_1328.txt |
AC |
15 ms |
3796 KiB |
| test_1329.txt |
AC |
197 ms |
4448 KiB |
| test_1330.txt |
AC |
72 ms |
4080 KiB |
| test_1331.txt |
AC |
86 ms |
4112 KiB |
| test_1332.txt |
AC |
17 ms |
3736 KiB |
| test_1333.txt |
AC |
92 ms |
4004 KiB |
| test_1334.txt |
AC |
39 ms |
3948 KiB |
| test_1335.txt |
AC |
282 ms |
4424 KiB |
| test_1336.txt |
AC |
20 ms |
3996 KiB |
| test_1337.txt |
AC |
15 ms |
3920 KiB |
| test_1338.txt |
AC |
7 ms |
3736 KiB |
| test_1339.txt |
AC |
6 ms |
3956 KiB |
| test_1340.txt |
AC |
46 ms |
4016 KiB |
| test_1341.txt |
AC |
301 ms |
4384 KiB |
| test_1342.txt |
AC |
465 ms |
4576 KiB |
| test_1343.txt |
AC |
331 ms |
4476 KiB |
| test_1344.txt |
AC |
9 ms |
3888 KiB |
| test_1345.txt |
AC |
50 ms |
4088 KiB |
| test_1346.txt |
AC |
61 ms |
4012 KiB |
| test_1347.txt |
AC |
299 ms |
4432 KiB |
| test_1348.txt |
AC |
91 ms |
4168 KiB |
| test_1349.txt |
AC |
191 ms |
4136 KiB |
| test_1350.txt |
AC |
12 ms |
3888 KiB |
| test_1351.txt |
AC |
38 ms |
3768 KiB |
| test_1352.txt |
AC |
111 ms |
4088 KiB |
| test_1353.txt |
AC |
6 ms |
3836 KiB |
| test_1354.txt |
AC |
30 ms |
4124 KiB |
| test_1355.txt |
AC |
34 ms |
3840 KiB |
| test_1356.txt |
AC |
172 ms |
4144 KiB |
| test_1357.txt |
AC |
104 ms |
4132 KiB |
| test_1358.txt |
AC |
42 ms |
4048 KiB |
| test_1359.txt |
AC |
110 ms |
4204 KiB |
| test_1360.txt |
AC |
166 ms |
4176 KiB |
| test_1361.txt |
AC |
58 ms |
3992 KiB |
| test_1362.txt |
AC |
8 ms |
3848 KiB |
| test_1363.txt |
AC |
47 ms |
4052 KiB |
| test_1364.txt |
AC |
86 ms |
4200 KiB |
| test_1365.txt |
AC |
92 ms |
4244 KiB |
| test_1366.txt |
AC |
233 ms |
4252 KiB |
| test_1367.txt |
AC |
13 ms |
3912 KiB |
| test_1368.txt |
AC |
15 ms |
3848 KiB |
| test_1369.txt |
AC |
33 ms |
3944 KiB |
| test_1370.txt |
AC |
100 ms |
4148 KiB |
| test_1371.txt |
AC |
74 ms |
3956 KiB |
| test_1372.txt |
AC |
174 ms |
4284 KiB |
| test_1373.txt |
AC |
14 ms |
3984 KiB |
| test_1374.txt |
AC |
55 ms |
3976 KiB |
| test_1375.txt |
AC |
48 ms |
4000 KiB |
| test_1376.txt |
AC |
76 ms |
4112 KiB |
| test_1377.txt |
AC |
18 ms |
3912 KiB |
| test_1378.txt |
AC |
18 ms |
3924 KiB |
| test_1379.txt |
AC |
58 ms |
3980 KiB |
| test_1380.txt |
AC |
24 ms |
4032 KiB |
| test_1381.txt |
AC |
64 ms |
3996 KiB |
| test_1382.txt |
AC |
17 ms |
3748 KiB |
| test_1383.txt |
AC |
38 ms |
3984 KiB |
| test_1384.txt |
AC |
10 ms |
3944 KiB |
| test_1385.txt |
AC |
7 ms |
3836 KiB |
| test_1386.txt |
AC |
13 ms |
3972 KiB |
| test_1387.txt |
AC |
161 ms |
4192 KiB |
| test_1388.txt |
AC |
30 ms |
4112 KiB |
| test_1389.txt |
AC |
8 ms |
3996 KiB |
| test_1390.txt |
AC |
135 ms |
4240 KiB |
| test_1391.txt |
AC |
75 ms |
4032 KiB |
| test_1392.txt |
AC |
30 ms |
3976 KiB |
| test_1393.txt |
AC |
44 ms |
4080 KiB |
| test_1394.txt |
AC |
54 ms |
3836 KiB |
| test_1395.txt |
AC |
169 ms |
4112 KiB |
| test_1396.txt |
AC |
17 ms |
3928 KiB |
| test_1397.txt |
AC |
32 ms |
3812 KiB |
| test_1398.txt |
AC |
110 ms |
3932 KiB |
| test_1399.txt |
AC |
33 ms |
3948 KiB |
| test_1400.txt |
AC |
134 ms |
4340 KiB |
| test_1401.txt |
AC |
68 ms |
4064 KiB |
| test_1402.txt |
AC |
12 ms |
3924 KiB |
| test_1403.txt |
AC |
100 ms |
4108 KiB |
| test_1404.txt |
AC |
96 ms |
4032 KiB |
| test_1405.txt |
AC |
18 ms |
3904 KiB |
| test_1406.txt |
AC |
61 ms |
4124 KiB |
| test_1407.txt |
AC |
352 ms |
4424 KiB |
| test_1408.txt |
AC |
54 ms |
3996 KiB |
| test_1409.txt |
AC |
193 ms |
4452 KiB |
| test_1410.txt |
AC |
61 ms |
4152 KiB |
| test_1411.txt |
AC |
16 ms |
3740 KiB |
| test_1412.txt |
AC |
167 ms |
4196 KiB |
| test_1413.txt |
AC |
385 ms |
4352 KiB |
| test_1414.txt |
AC |
125 ms |
4236 KiB |
| test_1415.txt |
AC |
16 ms |
3876 KiB |
| test_1416.txt |
AC |
15 ms |
3924 KiB |
| test_1417.txt |
AC |
274 ms |
4236 KiB |
| test_1418.txt |
AC |
269 ms |
4324 KiB |
| test_1419.txt |
AC |
17 ms |
4008 KiB |
| test_1420.txt |
AC |
17 ms |
3928 KiB |
| test_1421.txt |
AC |
82 ms |
4108 KiB |
| test_1422.txt |
WA |
16 ms |
3868 KiB |
| test_1423.txt |
AC |
38 ms |
4012 KiB |
| test_1424.txt |
AC |
39 ms |
4044 KiB |
| test_1425.txt |
AC |
27 ms |
3936 KiB |
| test_1426.txt |
AC |
6 ms |
3732 KiB |
| test_1427.txt |
AC |
46 ms |
4108 KiB |
| test_1428.txt |
AC |
170 ms |
4220 KiB |
| test_1429.txt |
AC |
9 ms |
3820 KiB |
| test_1430.txt |
AC |
65 ms |
4016 KiB |
| test_1431.txt |
WA |
54 ms |
3960 KiB |
| test_1432.txt |
AC |
42 ms |
4120 KiB |
| test_1433.txt |
AC |
30 ms |
3920 KiB |
| test_1434.txt |
AC |
30 ms |
3944 KiB |
| test_1435.txt |
AC |
54 ms |
4028 KiB |
| test_1436.txt |
AC |
16 ms |
4192 KiB |
| test_1437.txt |
AC |
35 ms |
3980 KiB |
| test_1438.txt |
AC |
6 ms |
3872 KiB |
| test_1439.txt |
AC |
29 ms |
3892 KiB |
| test_1440.txt |
AC |
146 ms |
4276 KiB |
| test_1441.txt |
AC |
55 ms |
4068 KiB |
| test_1442.txt |
AC |
5 ms |
3748 KiB |
| test_1443.txt |
AC |
40 ms |
4048 KiB |
| test_1444.txt |
AC |
34 ms |
4028 KiB |
| test_1445.txt |
AC |
131 ms |
4136 KiB |
| test_1446.txt |
AC |
131 ms |
4220 KiB |
| test_1447.txt |
AC |
155 ms |
4340 KiB |
| test_1448.txt |
AC |
234 ms |
4532 KiB |
| test_1449.txt |
AC |
52 ms |
4012 KiB |
| test_1450.txt |
AC |
75 ms |
4092 KiB |
| test_1451.txt |
AC |
173 ms |
4336 KiB |
| test_1452.txt |
AC |
15 ms |
3916 KiB |
| test_1453.txt |
AC |
23 ms |
3904 KiB |
| test_1454.txt |
AC |
140 ms |
3972 KiB |
| test_1455.txt |
AC |
15 ms |
3888 KiB |
| test_1456.txt |
AC |
6 ms |
3864 KiB |
| test_1457.txt |
AC |
77 ms |
4016 KiB |
| test_1458.txt |
AC |
39 ms |
3796 KiB |
| test_1459.txt |
AC |
43 ms |
4112 KiB |
| test_1460.txt |
AC |
67 ms |
4056 KiB |
| test_1461.txt |
AC |
24 ms |
3940 KiB |
| test_1462.txt |
AC |
62 ms |
4092 KiB |
| test_1463.txt |
AC |
54 ms |
4088 KiB |
| test_1464.txt |
AC |
77 ms |
4160 KiB |
| test_1465.txt |
AC |
36 ms |
3936 KiB |
| test_1466.txt |
AC |
15 ms |
3892 KiB |
| test_1467.txt |
AC |
122 ms |
4136 KiB |
| test_1468.txt |
AC |
53 ms |
3844 KiB |
| test_1469.txt |
AC |
42 ms |
3980 KiB |
| test_1470.txt |
AC |
167 ms |
4268 KiB |
| test_1471.txt |
AC |
31 ms |
3940 KiB |
| test_1472.txt |
AC |
176 ms |
4248 KiB |
| test_1473.txt |
AC |
43 ms |
3840 KiB |
| test_1474.txt |
AC |
104 ms |
4200 KiB |
| test_1475.txt |
AC |
28 ms |
3988 KiB |
| test_1476.txt |
AC |
7 ms |
3868 KiB |
| test_1477.txt |
AC |
152 ms |
4228 KiB |
| test_1478.txt |
AC |
181 ms |
4052 KiB |
| test_1479.txt |
AC |
198 ms |
4336 KiB |
| test_1480.txt |
AC |
10 ms |
3908 KiB |
| test_1481.txt |
AC |
223 ms |
4200 KiB |
| test_1482.txt |
AC |
12 ms |
4032 KiB |
| test_1483.txt |
AC |
29 ms |
4160 KiB |
| test_1484.txt |
AC |
159 ms |
4296 KiB |
| test_1485.txt |
AC |
138 ms |
4176 KiB |
| test_1486.txt |
AC |
40 ms |
3952 KiB |
| test_1487.txt |
AC |
494 ms |
4316 KiB |
| test_1488.txt |
AC |
173 ms |
4140 KiB |
| test_1489.txt |
AC |
25 ms |
3936 KiB |
| test_1490.txt |
AC |
73 ms |
4060 KiB |
| test_1491.txt |
AC |
52 ms |
4096 KiB |
| test_1492.txt |
AC |
25 ms |
3996 KiB |
| test_1493.txt |
AC |
42 ms |
3900 KiB |
| test_1494.txt |
AC |
21 ms |
3844 KiB |
| test_1495.txt |
AC |
34 ms |
4036 KiB |
| test_1496.txt |
AC |
115 ms |
4092 KiB |
| test_1497.txt |
AC |
158 ms |
4012 KiB |
| test_1498.txt |
AC |
24 ms |
4120 KiB |
| test_1499.txt |
AC |
7 ms |
4000 KiB |
| test_1500.txt |
AC |
20 ms |
3924 KiB |
| test_1501.txt |
AC |
31 ms |
3940 KiB |
| test_1502.txt |
AC |
163 ms |
4432 KiB |
| test_1503.txt |
AC |
155 ms |
4280 KiB |
| test_1504.txt |
AC |
22 ms |
3924 KiB |
| test_1505.txt |
AC |
18 ms |
3880 KiB |
| test_1506.txt |
AC |
57 ms |
4172 KiB |
| test_1507.txt |
AC |
33 ms |
3952 KiB |
| test_1508.txt |
AC |
228 ms |
4284 KiB |
| test_1509.txt |
AC |
11 ms |
3988 KiB |
| test_1510.txt |
AC |
132 ms |
3944 KiB |
| test_1511.txt |
AC |
26 ms |
3744 KiB |
| test_1512.txt |
AC |
5 ms |
3844 KiB |
| test_1513.txt |
AC |
69 ms |
4068 KiB |
| test_1514.txt |
AC |
15 ms |
3876 KiB |
| test_1515.txt |
AC |
10 ms |
3984 KiB |
| test_1516.txt |
AC |
48 ms |
3984 KiB |
| test_1517.txt |
AC |
8 ms |
3852 KiB |
| test_1518.txt |
AC |
376 ms |
4308 KiB |
| test_1519.txt |
AC |
188 ms |
4460 KiB |
| test_1520.txt |
AC |
386 ms |
4456 KiB |
| test_1521.txt |
AC |
251 ms |
4380 KiB |
| test_1522.txt |
AC |
7 ms |
3740 KiB |
| test_1523.txt |
AC |
11 ms |
3920 KiB |
| test_1524.txt |
AC |
75 ms |
4172 KiB |
| test_1525.txt |
AC |
59 ms |
4016 KiB |
| test_1526.txt |
AC |
116 ms |
4204 KiB |
| test_1527.txt |
AC |
126 ms |
4068 KiB |
| test_1528.txt |
AC |
88 ms |
4084 KiB |
| test_1529.txt |
AC |
18 ms |
4008 KiB |
| test_1530.txt |
AC |
39 ms |
4000 KiB |
| test_1531.txt |
AC |
28 ms |
3856 KiB |
| test_1532.txt |
AC |
22 ms |
3888 KiB |
| test_1533.txt |
AC |
21 ms |
3900 KiB |
| test_1534.txt |
AC |
85 ms |
4056 KiB |
| test_1535.txt |
AC |
27 ms |
4080 KiB |
| test_1536.txt |
AC |
23 ms |
4028 KiB |
| test_1537.txt |
AC |
12 ms |
3856 KiB |
| test_1538.txt |
AC |
100 ms |
4176 KiB |
| test_1539.txt |
AC |
156 ms |
4188 KiB |
| test_1540.txt |
AC |
54 ms |
3856 KiB |
| test_1541.txt |
AC |
64 ms |
4096 KiB |
| test_1542.txt |
AC |
98 ms |
4140 KiB |
| test_1543.txt |
AC |
51 ms |
4076 KiB |
| test_1544.txt |
AC |
84 ms |
4000 KiB |
| test_1545.txt |
AC |
21 ms |
3896 KiB |
| test_1546.txt |
AC |
196 ms |
4348 KiB |
| test_1547.txt |
AC |
26 ms |
3936 KiB |
| test_1548.txt |
AC |
45 ms |
4004 KiB |
| test_1549.txt |
AC |
62 ms |
4064 KiB |
| test_1550.txt |
AC |
43 ms |
3980 KiB |
| test_1551.txt |
AC |
89 ms |
4096 KiB |
| test_1552.txt |
AC |
18 ms |
3956 KiB |
| test_1553.txt |
AC |
28 ms |
4100 KiB |
| test_1554.txt |
AC |
12 ms |
3868 KiB |
| test_1555.txt |
AC |
115 ms |
4236 KiB |
| test_1556.txt |
AC |
115 ms |
4148 KiB |
| test_1557.txt |
AC |
53 ms |
4104 KiB |
| test_1558.txt |
AC |
103 ms |
4136 KiB |
| test_1559.txt |
AC |
96 ms |
4272 KiB |
| test_1560.txt |
AC |
105 ms |
4144 KiB |
| test_1561.txt |
AC |
5 ms |
3660 KiB |
| test_1562.txt |
AC |
207 ms |
4296 KiB |
| test_1563.txt |
AC |
221 ms |
4488 KiB |
| test_1564.txt |
AC |
144 ms |
4144 KiB |
| test_1565.txt |
AC |
64 ms |
4120 KiB |
| test_1566.txt |
AC |
53 ms |
4060 KiB |
| test_1567.txt |
AC |
82 ms |
4064 KiB |
| test_1568.txt |
AC |
86 ms |
4120 KiB |
| test_1569.txt |
AC |
88 ms |
4104 KiB |
| test_1570.txt |
AC |
43 ms |
3948 KiB |
| test_1571.txt |
AC |
93 ms |
4000 KiB |
| test_1572.txt |
AC |
44 ms |
3952 KiB |
| test_1573.txt |
AC |
13 ms |
3844 KiB |
| test_1574.txt |
AC |
5 ms |
3872 KiB |
| test_1575.txt |
AC |
12 ms |
4000 KiB |
| test_1576.txt |
AC |
31 ms |
3984 KiB |
| test_1577.txt |
AC |
22 ms |
3836 KiB |
| test_1578.txt |
AC |
56 ms |
4104 KiB |
| test_1579.txt |
AC |
102 ms |
3900 KiB |
| test_1580.txt |
AC |
37 ms |
3968 KiB |
| test_1581.txt |
AC |
149 ms |
3984 KiB |
| test_1582.txt |
AC |
15 ms |
4020 KiB |
| test_1583.txt |
AC |
52 ms |
4084 KiB |
| test_1584.txt |
AC |
120 ms |
4148 KiB |
| test_1585.txt |
AC |
30 ms |
3956 KiB |
| test_1586.txt |
AC |
38 ms |
3988 KiB |
| test_1587.txt |
AC |
20 ms |
3912 KiB |
| test_1588.txt |
AC |
17 ms |
3928 KiB |
| test_1589.txt |
AC |
31 ms |
3968 KiB |
| test_1590.txt |
AC |
33 ms |
4100 KiB |
| test_1591.txt |
AC |
52 ms |
4024 KiB |
| test_1592.txt |
AC |
37 ms |
4108 KiB |
| test_1593.txt |
AC |
253 ms |
4600 KiB |
| test_1594.txt |
AC |
144 ms |
4212 KiB |
| test_1595.txt |
AC |
40 ms |
4004 KiB |
| test_1596.txt |
AC |
193 ms |
4128 KiB |
| test_1597.txt |
AC |
45 ms |
4036 KiB |
| test_1598.txt |
AC |
125 ms |
4088 KiB |
| test_1599.txt |
AC |
212 ms |
4232 KiB |
| test_1600.txt |
AC |
132 ms |
4296 KiB |
| test_1601.txt |
AC |
16 ms |
4008 KiB |
| test_1602.txt |
AC |
49 ms |
3792 KiB |
| test_1603.txt |
AC |
64 ms |
4008 KiB |
| test_1604.txt |
AC |
114 ms |
4072 KiB |
| test_1605.txt |
AC |
12 ms |
3948 KiB |
| test_1606.txt |
AC |
6 ms |
3884 KiB |
| test_1607.txt |
AC |
238 ms |
4292 KiB |
| test_1608.txt |
AC |
8 ms |
3832 KiB |
| test_1609.txt |
AC |
388 ms |
4564 KiB |
| test_1610.txt |
AC |
18 ms |
3896 KiB |
| test_1611.txt |
AC |
211 ms |
4260 KiB |
| test_1612.txt |
AC |
130 ms |
4180 KiB |
| test_1613.txt |
AC |
27 ms |
3972 KiB |
| test_1614.txt |
AC |
44 ms |
4092 KiB |
| test_1615.txt |
AC |
10 ms |
3992 KiB |
| test_1616.txt |
AC |
41 ms |
4000 KiB |
| test_1617.txt |
AC |
17 ms |
3920 KiB |
| test_1618.txt |
AC |
21 ms |
3944 KiB |
| test_1619.txt |
AC |
20 ms |
3912 KiB |
| test_1620.txt |
AC |
239 ms |
4292 KiB |
| test_1621.txt |
AC |
49 ms |
3808 KiB |
| test_1622.txt |
AC |
57 ms |
4016 KiB |
| test_1623.txt |
AC |
25 ms |
3980 KiB |
| test_1624.txt |
AC |
19 ms |
3896 KiB |
| test_1625.txt |
AC |
130 ms |
4284 KiB |
| test_1626.txt |
AC |
58 ms |
4060 KiB |
| test_1627.txt |
AC |
26 ms |
3968 KiB |
| test_1628.txt |
AC |
55 ms |
3812 KiB |
| test_1629.txt |
AC |
21 ms |
3900 KiB |
| test_1630.txt |
AC |
302 ms |
4368 KiB |
| test_1631.txt |
AC |
100 ms |
4080 KiB |
| test_1632.txt |
AC |
50 ms |
4100 KiB |
| test_1633.txt |
AC |
42 ms |
3752 KiB |
| test_1634.txt |
AC |
28 ms |
4052 KiB |
| test_1635.txt |
AC |
80 ms |
4052 KiB |
| test_1636.txt |
AC |
185 ms |
4500 KiB |
| test_1637.txt |
AC |
94 ms |
4080 KiB |
| test_1638.txt |
AC |
173 ms |
4124 KiB |
| test_1639.txt |
AC |
50 ms |
3972 KiB |
| test_1640.txt |
AC |
305 ms |
4408 KiB |
| test_1641.txt |
AC |
7 ms |
3984 KiB |
| test_1642.txt |
AC |
34 ms |
4012 KiB |
| test_1643.txt |
AC |
360 ms |
4640 KiB |
| test_1644.txt |
AC |
10 ms |
3776 KiB |
| test_1645.txt |
AC |
149 ms |
4416 KiB |
| test_1646.txt |
AC |
179 ms |
4324 KiB |
| test_1647.txt |
AC |
106 ms |
3888 KiB |
| test_1648.txt |
AC |
29 ms |
3964 KiB |
| test_1649.txt |
AC |
91 ms |
4204 KiB |
| test_1650.txt |
AC |
87 ms |
4032 KiB |
| test_1651.txt |
AC |
5 ms |
3844 KiB |
| test_1652.txt |
AC |
98 ms |
4016 KiB |
| test_1653.txt |
AC |
48 ms |
4096 KiB |
| test_1654.txt |
AC |
35 ms |
3968 KiB |
| test_1655.txt |
AC |
13 ms |
3728 KiB |
| test_1656.txt |
AC |
77 ms |
3940 KiB |
| test_1657.txt |
AC |
3 ms |
3848 KiB |
| test_1658.txt |
AC |
74 ms |
4072 KiB |
| test_1659.txt |
AC |
11 ms |
3928 KiB |
| test_1660.txt |
AC |
36 ms |
3952 KiB |
| test_1661.txt |
AC |
93 ms |
4080 KiB |
| test_1662.txt |
AC |
9 ms |
3708 KiB |
| test_1663.txt |
AC |
55 ms |
3988 KiB |
| test_1664.txt |
AC |
57 ms |
4048 KiB |
| test_1665.txt |
AC |
21 ms |
3908 KiB |
| test_1666.txt |
AC |
77 ms |
4076 KiB |
| test_1667.txt |
AC |
12 ms |
3932 KiB |
| test_1668.txt |
AC |
42 ms |
4060 KiB |
| test_1669.txt |
AC |
83 ms |
4088 KiB |
| test_1670.txt |
AC |
53 ms |
4000 KiB |
| test_1671.txt |
AC |
105 ms |
4184 KiB |
| test_1672.txt |
AC |
49 ms |
4028 KiB |
| test_1673.txt |
AC |
38 ms |
4132 KiB |
| test_1674.txt |
AC |
46 ms |
4040 KiB |
| test_1675.txt |
AC |
23 ms |
4012 KiB |
| test_1676.txt |
AC |
78 ms |
4188 KiB |
| test_1677.txt |
AC |
38 ms |
3976 KiB |
| test_1678.txt |
AC |
4 ms |
3860 KiB |
| test_1679.txt |
AC |
58 ms |
4096 KiB |
| test_1680.txt |
AC |
42 ms |
3956 KiB |
| test_1681.txt |
AC |
426 ms |
4576 KiB |
| test_1682.txt |
AC |
474 ms |
4644 KiB |
| test_1683.txt |
AC |
27 ms |
4088 KiB |
| test_1684.txt |
AC |
46 ms |
4176 KiB |
| test_1685.txt |
AC |
95 ms |
4112 KiB |
| test_1686.txt |
AC |
133 ms |
4332 KiB |
| test_1687.txt |
AC |
21 ms |
3876 KiB |
| test_1688.txt |
AC |
19 ms |
3908 KiB |
| test_1689.txt |
AC |
168 ms |
4076 KiB |
| test_1690.txt |
AC |
9 ms |
3980 KiB |
| test_1691.txt |
AC |
59 ms |
4008 KiB |
| test_1692.txt |
AC |
83 ms |
4124 KiB |
| test_1693.txt |
AC |
154 ms |
4156 KiB |
| test_1694.txt |
AC |
20 ms |
3920 KiB |
| test_1695.txt |
AC |
20 ms |
3820 KiB |
| test_1696.txt |
AC |
43 ms |
3988 KiB |
| test_1697.txt |
AC |
5 ms |
3856 KiB |
| test_1698.txt |
AC |
315 ms |
4244 KiB |
| test_1699.txt |
AC |
7 ms |
3740 KiB |
| test_1700.txt |
AC |
113 ms |
4192 KiB |
| test_1701.txt |
AC |
48 ms |
3976 KiB |
| test_1702.txt |
AC |
24 ms |
3992 KiB |
| test_1703.txt |
AC |
13 ms |
4012 KiB |
| test_1704.txt |
AC |
40 ms |
4020 KiB |
| test_1705.txt |
AC |
8 ms |
3996 KiB |
| test_1706.txt |
AC |
44 ms |
4020 KiB |
| test_1707.txt |
AC |
185 ms |
4292 KiB |
| test_1708.txt |
AC |
60 ms |
3976 KiB |
| test_1709.txt |
AC |
39 ms |
4040 KiB |
| test_1710.txt |
AC |
18 ms |
3912 KiB |
| test_1711.txt |
AC |
11 ms |
4020 KiB |
| test_1712.txt |
AC |
69 ms |
4004 KiB |
| test_1713.txt |
AC |
12 ms |
3908 KiB |
| test_1714.txt |
AC |
94 ms |
4048 KiB |
| test_1715.txt |
AC |
49 ms |
4092 KiB |
| test_1716.txt |
AC |
5 ms |
3864 KiB |
| test_1717.txt |
AC |
6 ms |
3944 KiB |
| test_1718.txt |
AC |
131 ms |
4108 KiB |
| test_1719.txt |
AC |
15 ms |
3900 KiB |
| test_1720.txt |
AC |
82 ms |
4084 KiB |
| test_1721.txt |
AC |
76 ms |
4024 KiB |
| test_1722.txt |
AC |
103 ms |
3860 KiB |
| test_1723.txt |
AC |
10 ms |
3768 KiB |
| test_1724.txt |
AC |
162 ms |
4184 KiB |
| test_1725.txt |
AC |
12 ms |
3928 KiB |
| test_1726.txt |
AC |
49 ms |
4180 KiB |
| test_1727.txt |
AC |
13 ms |
4016 KiB |
| test_1728.txt |
AC |
19 ms |
3900 KiB |
| test_1729.txt |
AC |
13 ms |
3888 KiB |
| test_1730.txt |
AC |
5 ms |
3888 KiB |
| test_1731.txt |
AC |
159 ms |
4276 KiB |
| test_1732.txt |
AC |
20 ms |
3880 KiB |
| test_1733.txt |
AC |
9 ms |
3880 KiB |
| test_1734.txt |
AC |
18 ms |
3932 KiB |
| test_1735.txt |
AC |
83 ms |
4008 KiB |
| test_1736.txt |
AC |
12 ms |
3688 KiB |
| test_1737.txt |
AC |
151 ms |
4152 KiB |
| test_1738.txt |
AC |
58 ms |
3976 KiB |
| test_1739.txt |
AC |
96 ms |
4224 KiB |
| test_1740.txt |
AC |
88 ms |
4124 KiB |
| test_1741.txt |
AC |
396 ms |
4592 KiB |
| test_1742.txt |
AC |
72 ms |
3960 KiB |
| test_1743.txt |
AC |
4 ms |
3672 KiB |
| test_1744.txt |
AC |
64 ms |
4116 KiB |
| test_1745.txt |
AC |
77 ms |
4092 KiB |
| test_1746.txt |
AC |
27 ms |
3992 KiB |
| test_1747.txt |
AC |
8 ms |
3684 KiB |
| test_1748.txt |
WA |
373 ms |
4512 KiB |
| test_1749.txt |
AC |
127 ms |
4248 KiB |
| test_1750.txt |
AC |
35 ms |
4036 KiB |
| test_1751.txt |
AC |
28 ms |
3928 KiB |
| test_1752.txt |
AC |
15 ms |
3876 KiB |
| test_1753.txt |
AC |
35 ms |
4124 KiB |
| test_1754.txt |
AC |
9 ms |
3852 KiB |
| test_1755.txt |
AC |
42 ms |
3996 KiB |
| test_1756.txt |
AC |
20 ms |
3908 KiB |
| test_1757.txt |
AC |
68 ms |
4176 KiB |
| test_1758.txt |
AC |
17 ms |
4092 KiB |
| test_1759.txt |
AC |
25 ms |
4028 KiB |
| test_1760.txt |
AC |
294 ms |
4272 KiB |
| test_1761.txt |
AC |
94 ms |
4192 KiB |
| test_1762.txt |
AC |
77 ms |
4048 KiB |
| test_1763.txt |
AC |
34 ms |
3952 KiB |
| test_1764.txt |
AC |
23 ms |
4084 KiB |
| test_1765.txt |
AC |
11 ms |
3912 KiB |
| test_1766.txt |
AC |
22 ms |
4032 KiB |
| test_1767.txt |
AC |
30 ms |
3996 KiB |
| test_1768.txt |
AC |
394 ms |
4536 KiB |
| test_1769.txt |
AC |
139 ms |
4176 KiB |
| test_1770.txt |
AC |
165 ms |
4364 KiB |
| test_1771.txt |
AC |
27 ms |
3788 KiB |
| test_1772.txt |
AC |
15 ms |
3696 KiB |
| test_1773.txt |
AC |
111 ms |
4192 KiB |
| test_1774.txt |
AC |
5 ms |
3932 KiB |
| test_1775.txt |
AC |
147 ms |
4360 KiB |
| test_1776.txt |
AC |
63 ms |
4052 KiB |
| test_1777.txt |
AC |
35 ms |
4080 KiB |
| test_1778.txt |
AC |
351 ms |
4648 KiB |
| test_1779.txt |
AC |
20 ms |
3920 KiB |
| test_1780.txt |
WA |
194 ms |
4296 KiB |
| test_1781.txt |
AC |
74 ms |
4112 KiB |
| test_1782.txt |
AC |
63 ms |
3992 KiB |
| test_1783.txt |
AC |
17 ms |
3852 KiB |
| test_1784.txt |
AC |
6 ms |
3872 KiB |
| test_1785.txt |
AC |
39 ms |
3996 KiB |
| test_1786.txt |
AC |
10 ms |
3904 KiB |
| test_1787.txt |
AC |
60 ms |
4076 KiB |
| test_1788.txt |
AC |
14 ms |
4028 KiB |
| test_1789.txt |
AC |
14 ms |
3728 KiB |
| test_1790.txt |
AC |
21 ms |
3904 KiB |
| test_1791.txt |
AC |
123 ms |
4168 KiB |
| test_1792.txt |
AC |
54 ms |
3852 KiB |
| test_1793.txt |
AC |
84 ms |
4028 KiB |
| test_1794.txt |
AC |
89 ms |
4048 KiB |
| test_1795.txt |
AC |
142 ms |
4256 KiB |
| test_1796.txt |
AC |
59 ms |
4012 KiB |
| test_1797.txt |
AC |
131 ms |
4276 KiB |
| test_1798.txt |
AC |
23 ms |
3940 KiB |
| test_1799.txt |
AC |
6 ms |
3956 KiB |
| test_1800.txt |
AC |
285 ms |
4320 KiB |
| test_1801.txt |
AC |
300 ms |
4440 KiB |
| test_1802.txt |
AC |
86 ms |
4012 KiB |
| test_1803.txt |
AC |
17 ms |
3916 KiB |
| test_1804.txt |
AC |
82 ms |
4188 KiB |
| test_1805.txt |
AC |
408 ms |
4480 KiB |
| test_1806.txt |
AC |
98 ms |
4088 KiB |
| test_1807.txt |
AC |
133 ms |
4280 KiB |
| test_1808.txt |
AC |
7 ms |
3832 KiB |
| test_1809.txt |
AC |
71 ms |
4120 KiB |
| test_1810.txt |
AC |
283 ms |
4268 KiB |
| test_1811.txt |
AC |
91 ms |
4148 KiB |
| test_1812.txt |
AC |
24 ms |
3984 KiB |
| test_1813.txt |
AC |
100 ms |
4064 KiB |
| test_1814.txt |
AC |
104 ms |
3892 KiB |
| test_1815.txt |
AC |
97 ms |
4204 KiB |
| test_1816.txt |
AC |
42 ms |
3904 KiB |
| test_1817.txt |
AC |
10 ms |
3856 KiB |
| test_1818.txt |
AC |
18 ms |
3920 KiB |
| test_1819.txt |
AC |
25 ms |
3876 KiB |
| test_1820.txt |
AC |
15 ms |
3940 KiB |
| test_1821.txt |
AC |
82 ms |
3972 KiB |
| test_1822.txt |
AC |
59 ms |
3876 KiB |
| test_1823.txt |
AC |
13 ms |
4004 KiB |
| test_1824.txt |
AC |
45 ms |
3968 KiB |
| test_1825.txt |
AC |
33 ms |
3964 KiB |
| test_1826.txt |
AC |
33 ms |
3928 KiB |
| test_1827.txt |
AC |
44 ms |
3980 KiB |
| test_1828.txt |
AC |
8 ms |
3816 KiB |
| test_1829.txt |
AC |
4 ms |
3848 KiB |
| test_1830.txt |
AC |
88 ms |
3952 KiB |
| test_1831.txt |
AC |
147 ms |
4160 KiB |
| test_1832.txt |
AC |
135 ms |
3992 KiB |
| test_1833.txt |
AC |
12 ms |
3880 KiB |
| test_1834.txt |
AC |
29 ms |
3980 KiB |
| test_1835.txt |
AC |
39 ms |
3984 KiB |
| test_1836.txt |
AC |
131 ms |
4128 KiB |
| test_1837.txt |
AC |
6 ms |
3844 KiB |
| test_1838.txt |
AC |
68 ms |
4036 KiB |
| test_1839.txt |
AC |
12 ms |
3936 KiB |
| test_1840.txt |
AC |
11 ms |
3684 KiB |
| test_1841.txt |
AC |
119 ms |
4004 KiB |
| test_1842.txt |
AC |
69 ms |
4024 KiB |
| test_1843.txt |
AC |
40 ms |
4132 KiB |
| test_1844.txt |
AC |
230 ms |
4232 KiB |
| test_1845.txt |
AC |
9 ms |
3876 KiB |
| test_1846.txt |
AC |
53 ms |
4004 KiB |
| test_1847.txt |
AC |
243 ms |
4156 KiB |
| test_1848.txt |
AC |
38 ms |
4028 KiB |
| test_1849.txt |
AC |
64 ms |
3996 KiB |
| test_1850.txt |
AC |
108 ms |
4112 KiB |
| test_1851.txt |
AC |
21 ms |
4076 KiB |
| test_1852.txt |
AC |
56 ms |
4088 KiB |
| test_1853.txt |
AC |
67 ms |
3984 KiB |
| test_1854.txt |
AC |
135 ms |
4288 KiB |
| test_1855.txt |
AC |
8 ms |
3880 KiB |
| test_1856.txt |
AC |
100 ms |
4028 KiB |
| test_1857.txt |
AC |
60 ms |
3912 KiB |
| test_1858.txt |
AC |
35 ms |
3988 KiB |
| test_1859.txt |
AC |
19 ms |
3936 KiB |
| test_1860.txt |
AC |
297 ms |
4576 KiB |
| test_1861.txt |
AC |
15 ms |
3900 KiB |
| test_1862.txt |
AC |
160 ms |
4396 KiB |
| test_1863.txt |
AC |
10 ms |
3880 KiB |
| test_1864.txt |
AC |
144 ms |
4256 KiB |
| test_1865.txt |
AC |
181 ms |
4056 KiB |
| test_1866.txt |
AC |
50 ms |
4024 KiB |
| test_1867.txt |
AC |
441 ms |
4464 KiB |
| test_1868.txt |
AC |
122 ms |
4256 KiB |
| test_1869.txt |
AC |
14 ms |
4032 KiB |
| test_1870.txt |
AC |
19 ms |
3960 KiB |
| test_1871.txt |
AC |
10 ms |
3844 KiB |
| test_1872.txt |
AC |
72 ms |
3836 KiB |
| test_1873.txt |
AC |
80 ms |
4044 KiB |
| test_1874.txt |
AC |
96 ms |
4156 KiB |
| test_1875.txt |
AC |
38 ms |
3968 KiB |
| test_1876.txt |
AC |
189 ms |
4276 KiB |
| test_1877.txt |
AC |
285 ms |
4336 KiB |
| test_1878.txt |
AC |
106 ms |
4128 KiB |
| test_1879.txt |
AC |
300 ms |
4284 KiB |
| test_1880.txt |
AC |
195 ms |
4532 KiB |
| test_1881.txt |
AC |
190 ms |
4324 KiB |
| test_1882.txt |
AC |
141 ms |
4256 KiB |
| test_1883.txt |
AC |
85 ms |
4172 KiB |
| test_1884.txt |
AC |
19 ms |
3900 KiB |
| test_1885.txt |
AC |
7 ms |
4004 KiB |
| test_1886.txt |
AC |
19 ms |
4060 KiB |
| test_1887.txt |
AC |
69 ms |
4104 KiB |
| test_1888.txt |
AC |
23 ms |
4068 KiB |
| test_1889.txt |
AC |
24 ms |
3888 KiB |
| test_1890.txt |
AC |
52 ms |
4008 KiB |
| test_1891.txt |
AC |
111 ms |
4148 KiB |
| test_1892.txt |
AC |
173 ms |
4228 KiB |
| test_1893.txt |
AC |
17 ms |
3940 KiB |
| test_1894.txt |
AC |
99 ms |
4108 KiB |
| test_1895.txt |
AC |
186 ms |
4368 KiB |
| test_1896.txt |
AC |
26 ms |
3984 KiB |
| test_1897.txt |
AC |
7 ms |
3868 KiB |
| test_1898.txt |
AC |
14 ms |
3900 KiB |
| test_1899.txt |
AC |
144 ms |
3928 KiB |
| test_1900.txt |
AC |
37 ms |
3960 KiB |
| test_1901.txt |
AC |
33 ms |
3896 KiB |
| test_1902.txt |
AC |
174 ms |
4160 KiB |
| test_1903.txt |
AC |
15 ms |
3784 KiB |
| test_1904.txt |
AC |
29 ms |
3816 KiB |
| test_1905.txt |
AC |
43 ms |
3984 KiB |
| test_1906.txt |
AC |
41 ms |
3924 KiB |
| test_1907.txt |
AC |
158 ms |
4300 KiB |
| test_1908.txt |
AC |
95 ms |
4272 KiB |
| test_1909.txt |
AC |
66 ms |
4216 KiB |
| test_1910.txt |
AC |
60 ms |
4096 KiB |
| test_1911.txt |
AC |
57 ms |
4008 KiB |
| test_1912.txt |
AC |
13 ms |
3896 KiB |
| test_1913.txt |
AC |
85 ms |
4040 KiB |
| test_1914.txt |
AC |
102 ms |
4100 KiB |
| test_1915.txt |
AC |
81 ms |
4048 KiB |
| test_1916.txt |
AC |
147 ms |
4308 KiB |
| test_1917.txt |
AC |
71 ms |
4000 KiB |
| test_1918.txt |
AC |
21 ms |
4112 KiB |
| test_1919.txt |
AC |
109 ms |
4108 KiB |
| test_1920.txt |
AC |
11 ms |
3900 KiB |
| test_1921.txt |
AC |
9 ms |
3800 KiB |
| test_1922.txt |
AC |
49 ms |
4008 KiB |
| test_1923.txt |
AC |
18 ms |
3904 KiB |
| test_1924.txt |
AC |
85 ms |
4112 KiB |
| test_1925.txt |
AC |
148 ms |
4192 KiB |
| test_1926.txt |
AC |
8 ms |
3908 KiB |
| test_1927.txt |
AC |
19 ms |
4040 KiB |
| test_1928.txt |
AC |
92 ms |
3924 KiB |
| test_1929.txt |
AC |
21 ms |
3880 KiB |
| test_1930.txt |
AC |
11 ms |
3916 KiB |
| test_1931.txt |
AC |
80 ms |
4064 KiB |
| test_1932.txt |
AC |
9 ms |
3864 KiB |
| test_1933.txt |
AC |
105 ms |
4168 KiB |
| test_1934.txt |
AC |
4 ms |
3864 KiB |
| test_1935.txt |
AC |
74 ms |
4056 KiB |
| test_1936.txt |
AC |
16 ms |
3876 KiB |
| test_1937.txt |
AC |
7 ms |
3812 KiB |
| test_1938.txt |
AC |
53 ms |
4096 KiB |
| test_1939.txt |
AC |
29 ms |
4028 KiB |
| test_1940.txt |
AC |
47 ms |
3988 KiB |
| test_1941.txt |
AC |
146 ms |
4076 KiB |
| test_1942.txt |
AC |
91 ms |
4124 KiB |
| test_1943.txt |
AC |
13 ms |
3852 KiB |
| test_1944.txt |
AC |
17 ms |
3940 KiB |
| test_1945.txt |
AC |
92 ms |
4164 KiB |
| test_1946.txt |
AC |
140 ms |
4268 KiB |
| test_1947.txt |
AC |
26 ms |
3996 KiB |
| test_1948.txt |
AC |
30 ms |
3936 KiB |
| test_1949.txt |
AC |
21 ms |
3860 KiB |
| test_1950.txt |
AC |
227 ms |
4204 KiB |
| test_1951.txt |
AC |
139 ms |
4132 KiB |
| test_1952.txt |
AC |
32 ms |
3964 KiB |
| test_1953.txt |
AC |
7 ms |
3828 KiB |
| test_1954.txt |
AC |
50 ms |
4244 KiB |
| test_1955.txt |
AC |
192 ms |
4176 KiB |
| test_1956.txt |
AC |
33 ms |
3976 KiB |
| test_1957.txt |
AC |
14 ms |
3884 KiB |
| test_1958.txt |
AC |
39 ms |
4088 KiB |
| test_1959.txt |
AC |
91 ms |
4100 KiB |
| test_1960.txt |
AC |
228 ms |
4336 KiB |
| test_1961.txt |
AC |
125 ms |
4220 KiB |
| test_1962.txt |
AC |
19 ms |
4048 KiB |
| test_1963.txt |
AC |
10 ms |
3912 KiB |
| test_1964.txt |
AC |
48 ms |
3980 KiB |
| test_1965.txt |
AC |
281 ms |
4664 KiB |
| test_1966.txt |
AC |
52 ms |
4332 KiB |
| test_1967.txt |
AC |
21 ms |
3996 KiB |
| test_1968.txt |
AC |
15 ms |
3988 KiB |
| test_1969.txt |
AC |
28 ms |
3936 KiB |
| test_1970.txt |
AC |
7 ms |
3736 KiB |
| test_1971.txt |
AC |
43 ms |
4100 KiB |
| test_1972.txt |
AC |
105 ms |
4200 KiB |
| test_1973.txt |
AC |
60 ms |
3968 KiB |
| test_1974.txt |
AC |
33 ms |
3928 KiB |
| test_1975.txt |
AC |
38 ms |
4108 KiB |
| test_1976.txt |
AC |
14 ms |
3824 KiB |
| test_1977.txt |
AC |
5 ms |
3820 KiB |
| test_1978.txt |
AC |
4 ms |
3844 KiB |
| test_1979.txt |
AC |
265 ms |
4424 KiB |
| test_1980.txt |
AC |
225 ms |
4288 KiB |
| test_1981.txt |
AC |
72 ms |
4028 KiB |
| test_1982.txt |
AC |
162 ms |
4244 KiB |
| test_1983.txt |
AC |
73 ms |
3936 KiB |
| test_1984.txt |
AC |
88 ms |
4068 KiB |
| test_1985.txt |
AC |
225 ms |
4260 KiB |
| test_1986.txt |
AC |
33 ms |
3964 KiB |
| test_1987.txt |
AC |
53 ms |
4032 KiB |
| test_1988.txt |
AC |
6 ms |
3960 KiB |
| test_1989.txt |
AC |
80 ms |
4008 KiB |
| test_1990.txt |
AC |
89 ms |
4204 KiB |
| test_1991.txt |
AC |
51 ms |
4212 KiB |
| test_1992.txt |
AC |
7 ms |
3868 KiB |
| test_1993.txt |
AC |
27 ms |
3992 KiB |
| test_1994.txt |
AC |
141 ms |
4152 KiB |
| test_1995.txt |
AC |
258 ms |
4232 KiB |
| test_1996.txt |
AC |
93 ms |
4124 KiB |
| test_1997.txt |
AC |
12 ms |
3996 KiB |
| test_1998.txt |
AC |
7 ms |
3796 KiB |
| test_1999.txt |
AC |
103 ms |
4312 KiB |