QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#579375 | #5476. Remodeling the Dungeon | mrkiencf# | AC ✓ | 125ms | 74424kb | C++20 | 3.5kb | 2024-09-21 13:04:42 | 2024-09-21 13:04:44 |
Judging History
answer
// #pragma GCC optimize("O3")
// #pragma GCC optimize("unroll-loops")
// #pragma GCC target("avx2,bmi,bmi2,popcnt,lzcnt")
#include<bits/stdc++.h>
using namespace std;
#define i64 long long
#define mp make_pair
#define pb push_back
#define all(x) (x).begin(), (x).end()
const int MAXN = 1005;
int N, M, f[MAXN * MAXN], h[MAXN * MAXN], counter = 0, tin[MAXN * MAXN], tout[MAXN * MAXN];
int up[MAXN * MAXN][24];
char g[MAXN][MAXN];
vector<int> G[MAXN * MAXN];
void dfs(int u, int par = -1) {
tin[u] = tout[u] = ++counter;
f[u] = h[u];
for (auto v : G[u]) {
if (v != par) {
h[v] = h[u] + 1;
up[v][0] = u;
for (int j = 1; j <= 20; j ++) {
up[v][j] = up[up[v][j - 1]][j - 1];
}
dfs(v, u);
f[u] = max(f[u], f[v]);
}
}
tout[u] = counter;
}
int LCA(int u, int v) {
if (h[u] < h[v]) swap(u, v);
int gap = h[u] - h[v];
for (int j = 0; (1 << j) <= gap; j ++) {
if (gap >> j & 1) {
u = up[u][j];
}
}
if (u == v) return u;
for (int j = 20; j >= 0; j --) {
if (up[u][j] != up[v][j]) {
u = up[u][j];
v = up[v][j];
}
}
return up[u][0];
}
bool is_ancestor(int u, int v) {
return tin[u] <= tin[v] && tout[v] <= tout[u];
}
void Solve(void) {
cin >> N >> M;
for (int i = 1; i <= 2 * N + 1; i ++) {
for (int j = 1; j <= 2 * M + 1; j ++) {
cin >> g[i][j];
}
}
for (int i = 1; i <= N; i ++) {
for (int j = 1; j <= M; j ++) {
if (g[2 * i + 1][2 * j] == '.') {
int u = (i - 1) * M + j;
int v = i * M + j;
G[u].pb(v);
G[v].pb(u);
}
if (g[2 * i][2 * j + 1] == '.') {
int u = (i - 1) * M + j;
int v = (i - 1) * M + j + 1;
// cout << u << " " << v << "\n";
G[u].pb(v);
G[v].pb(u);
}
}
}
int root = (N - 1) * M + M;
h[root] = 1;
dfs(root);
int ans = h[1];
// ancestors of 1
for (int i = 1; i <= N; i ++) {
for (int j = 1; j <= M; j ++) {
if (g[2 * i + 1][2 * j] != '.' && i < N) {
int u = (i - 1) * M + j;
int v = i * M + j;
int lca1 = LCA(1, u);
if (lca1 != root && !is_ancestor(lca1, v)) {
int d = h[u] + h[1] - 2 * h[lca1] + 1;
ans = max(ans, d + h[v]);
// cout << u << " " << v << " " << d << " " << h[v] << "\n";
// cout << h[1] << " " << h[u] << " " << h[lca1] << "\n";
}
int lca2 = LCA(1, v);
if (lca2 != root && !is_ancestor(lca2, u)) {
int d = h[v] + h[1] - 2 * h[lca2] + 1;
ans = max(ans, d + h[u]);
// cout << u << " " << v << " " << d << " " << h[u] << "\n";
}
}
if (g[2 * i][2 * j + 1] != '.' && j < M) {
int u = (i - 1) * M + j;
int v = (i - 1) * M + j + 1;
int lca1 = LCA(1, u);
if (lca1 != root && !is_ancestor(lca1, v)) {
int d = h[u] + h[1] - 2 * h[lca1] + 1;
// cout << u << " " << v << " " << d + h[v] << "\n";
ans = max(ans, d + h[v]);
}
int lca2 = LCA(1, v);
if (lca2 != root && !is_ancestor(lca2, u)) {
int d = h[v] + h[1] - 2 * h[lca2] + 1;
// cout << u << " " << v << " " << d + h[u] << "\n";
ans = max(ans, d + h[u]);
}
}
}
}
cout << ans << "\n";
}
signed main() {
ios_base::sync_with_stdio(false); cin.tie(0);
cout << fixed << setprecision(10);
int Tests = 1; // cin >> Tests;
while (Tests --) {
Solve();
}
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 0ms
memory: 13948kb
input:
2 3 +-+-+-+ |.....| +.+.+.+ |.|.|.| +-+-+-+
output:
6
result:
ok single line: '6'
Test #2:
score: 0
Accepted
time: 4ms
memory: 15876kb
input:
2 3 +-+-+-+ |...|.| +.+.+.+ |.|...| +-+-+-+
output:
4
result:
ok single line: '4'
Test #3:
score: 0
Accepted
time: 0ms
memory: 13868kb
input:
5 5 +-+-+-+-+-+ |...|...|.| +-+.+.+.+.+ |...|.|.|.| +.+.+.+-+.+ |.|...|.|.| +.+.+-+.+.+ |.|.....|.| +-+.+.+-+.+ |...|.....| +-+-+-+-+-+
output:
15
result:
ok single line: '15'
Test #4:
score: 0
Accepted
time: 95ms
memory: 54452kb
input:
500 500 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-...
output:
4693
result:
ok single line: '4693'
Test #5:
score: 0
Accepted
time: 80ms
memory: 52352kb
input:
500 500 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-...
output:
4191
result:
ok single line: '4191'
Test #6:
score: 0
Accepted
time: 92ms
memory: 58928kb
input:
499 500 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-...
output:
3846
result:
ok single line: '3846'
Test #7:
score: 0
Accepted
time: 98ms
memory: 54436kb
input:
500 499 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-...
output:
4856
result:
ok single line: '4856'
Test #8:
score: 0
Accepted
time: 91ms
memory: 56424kb
input:
499 499 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-...
output:
5829
result:
ok single line: '5829'
Test #9:
score: 0
Accepted
time: 5ms
memory: 17104kb
input:
100 200 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-...
output:
1147
result:
ok single line: '1147'
Test #10:
score: 0
Accepted
time: 3ms
memory: 18428kb
input:
97 202 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+...
output:
1388
result:
ok single line: '1388'
Test #11:
score: 0
Accepted
time: 7ms
memory: 18860kb
input:
198 101 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ |.............|.......|.|...|...|.....|.|.|.|.|.....|.|...|.......|...|.|.|...|.|.....|....
output:
1046
result:
ok single line: '1046'
Test #12:
score: 0
Accepted
time: 7ms
memory: 18900kb
input:
199 103 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ |...|...|.|.|.|.|.|...|.............|.|...|...|...|...|.....|.....|...|................
output:
963
result:
ok single line: '963'
Test #13:
score: 0
Accepted
time: 0ms
memory: 16020kb
input:
2 500 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-...
output:
643
result:
ok single line: '643'
Test #14:
score: 0
Accepted
time: 0ms
memory: 16044kb
input:
3 500 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-...
output:
704
result:
ok single line: '704'
Test #15:
score: 0
Accepted
time: 0ms
memory: 14044kb
input:
499 4 +-+-+-+-+ |.|...|.| +.+-+.+.+ |.......| +-+.+-+.+ |.....|.| +-+-+.+-+ |.......| +.+-+-+-+ |.....|.| +-+-+.+.+ |.......| +.+.+-+.+ |.|.|.|.| +-+.+.+.+ |.|.|.|.| +.+-+.+.+ |...|.|.| +.+-+.+.+ |.....|.| +-+.+.+.+ |...|...| +.+.+.+-+ |.|.|.|.| +.+-+-+.+ |...|...| +.+.+.+-+ |.|...|.| +-+.+.+.+ |......
output:
826
result:
ok single line: '826'
Test #16:
score: 0
Accepted
time: 4ms
memory: 16132kb
input:
499 5 +-+-+-+-+-+ |.|...|...| +.+.+-+.+.+ |.....|.|.| +-+.+-+.+-+ |.......|.| +.+-+.+.+.+ |.|.|.|...| +-+.+-+.+-+ |...|.|.|.| +.+-+.+.+.+ |.........| +-+.+.+.+.+ |.|.|.|.|.| +.+-+.+-+.+ |...|...|.| +-+.+.+.+.+ |.|...|.|.| +.+-+.+-+-+ |.....|...| +-+-+.+-+.+ |.|.|.....| +.+.+.+.+.+ |.....|.|.| +.+-+....
output:
855
result:
ok single line: '855'
Test #17:
score: 0
Accepted
time: 0ms
memory: 13868kb
input:
2 2 +-+-+ |.|.| +.+.+ |...| +-+-+
output:
3
result:
ok single line: '3'
Test #18:
score: 0
Accepted
time: 0ms
memory: 15852kb
input:
3 2 +-+-+ |.|.| +.+.+ |...| +.+-+ |...| +-+-+
output:
6
result:
ok single line: '6'
Test #19:
score: 0
Accepted
time: 3ms
memory: 13824kb
input:
2 3 +-+-+-+ |.|...| +.+-+.+ |.....| +-+-+-+
output:
6
result:
ok single line: '6'
Test #20:
score: 0
Accepted
time: 4ms
memory: 16004kb
input:
3 3 +-+-+-+ |.|...| +.+-+.+ |.|...| +.+.+.+ |...|.| +-+-+-+
output:
9
result:
ok single line: '9'
Test #21:
score: 0
Accepted
time: 69ms
memory: 63296kb
input:
500 500 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-...
output:
88013
result:
ok single line: '88013'
Test #22:
score: 0
Accepted
time: 75ms
memory: 63672kb
input:
500 500 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-...
output:
84655
result:
ok single line: '84655'
Test #23:
score: 0
Accepted
time: 68ms
memory: 58484kb
input:
499 500 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-...
output:
83534
result:
ok single line: '83534'
Test #24:
score: 0
Accepted
time: 69ms
memory: 62844kb
input:
500 499 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-...
output:
85862
result:
ok single line: '85862'
Test #25:
score: 0
Accepted
time: 65ms
memory: 62572kb
input:
499 499 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-...
output:
82727
result:
ok single line: '82727'
Test #26:
score: 0
Accepted
time: 7ms
memory: 19116kb
input:
100 200 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-...
output:
6917
result:
ok single line: '6917'
Test #27:
score: 0
Accepted
time: 7ms
memory: 18844kb
input:
97 202 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+...
output:
7130
result:
ok single line: '7130'
Test #28:
score: 0
Accepted
time: 4ms
memory: 17520kb
input:
198 101 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ |..........................................................................................
output:
6342
result:
ok single line: '6342'
Test #29:
score: 0
Accepted
time: 9ms
memory: 17536kb
input:
199 103 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ |......................................................................................
output:
7093
result:
ok single line: '7093'
Test #30:
score: 0
Accepted
time: 0ms
memory: 16000kb
input:
2 500 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-...
output:
501
result:
ok single line: '501'
Test #31:
score: 0
Accepted
time: 0ms
memory: 15992kb
input:
3 500 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-...
output:
1012
result:
ok single line: '1012'
Test #32:
score: 0
Accepted
time: 0ms
memory: 16064kb
input:
499 4 +-+-+-+-+ |.......| +-+.+-+-+ |.......| +-+.+-+-+ |.......| +-+.+-+-+ |.......| +-+-+.+-+ |.......| +.+-+-+-+ |.......| +.+-+-+-+ |.......| +-+-+-+.+ |.......| +-+-+-+.+ |.......| +.+-+-+-+ |.......| +.+-+-+-+ |.......| +-+-+-+.+ |.......| +-+-+-+.+ |.......| +.+-+-+-+ |.......| +.+-+-+-+ |......
output:
1144
result:
ok single line: '1144'
Test #33:
score: 0
Accepted
time: 0ms
memory: 16100kb
input:
499 5 +-+-+-+-+-+ |.........| +.+-+-+-+-+ |.........| +-+-+-+.+-+ |.........| +-+-+-+-+.+ |.........| +-+-+.+-+-+ |.........| +-+-+.+-+-+ |.........| +-+.+-+-+-+ |.........| +-+.+-+-+-+ |.........| +-+-+.+-+-+ |.........| +-+-+-+.+-+ |.........| +-+-+-+-+.+ |.........| +-+-+-+-+.+ |.........| +-+-+....
output:
1273
result:
ok single line: '1273'
Test #34:
score: 0
Accepted
time: 119ms
memory: 60736kb
input:
500 500 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-...
output:
85163
result:
ok single line: '85163'
Test #35:
score: 0
Accepted
time: 120ms
memory: 62684kb
input:
500 500 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-...
output:
84679
result:
ok single line: '84679'
Test #36:
score: 0
Accepted
time: 114ms
memory: 58712kb
input:
499 500 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-...
output:
86302
result:
ok single line: '86302'
Test #37:
score: 0
Accepted
time: 123ms
memory: 61600kb
input:
500 499 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-...
output:
85720
result:
ok single line: '85720'
Test #38:
score: 0
Accepted
time: 125ms
memory: 58100kb
input:
499 499 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-...
output:
78639
result:
ok single line: '78639'
Test #39:
score: 0
Accepted
time: 5ms
memory: 17632kb
input:
100 200 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-...
output:
7005
result:
ok single line: '7005'
Test #40:
score: 0
Accepted
time: 6ms
memory: 17452kb
input:
97 202 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+...
output:
6640
result:
ok single line: '6640'
Test #41:
score: 0
Accepted
time: 6ms
memory: 17548kb
input:
198 101 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ |.|.|.|.|.|.|.|.|.|.|.|.|.|.|.|.|.|.|.|.|.|.|.|.|.|.|.|.|.|.|.|.|.|.|.|.|.|.|.|.|.|.|.|....
output:
7616
result:
ok single line: '7616'
Test #42:
score: 0
Accepted
time: 7ms
memory: 19692kb
input:
199 103 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ |.|.|.|.|.|.|.|.|.|.|.|.|.|.|.|.|.|.|.|.|.|.|.|.|.|.|.|.|.|.|.|.|.|.|.|.|.|.|.|.|.|....
output:
8025
result:
ok single line: '8025'
Test #43:
score: 0
Accepted
time: 0ms
memory: 16116kb
input:
2 500 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-...
output:
761
result:
ok single line: '761'
Test #44:
score: 0
Accepted
time: 0ms
memory: 16068kb
input:
3 500 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-...
output:
958
result:
ok single line: '958'
Test #45:
score: 0
Accepted
time: 4ms
memory: 16024kb
input:
499 4 +-+-+-+-+ |.|.|.|.| +.+.+.+.+ |.|.|.|.| +.+.+.+.+ |.|.|.|.| +.+.+.+.+ |.|.|.|.| +.+.+.+.+ |.|.|.|.| +.+.+.+.+ |.|.|.|.| +.+.+.+.+ |.|.|.|.| +.+.+.+.+ |.|.|.|.| +.+.+.+.+ |.|.|.|.| +.+.+.+.+ |.|.|.|.| +.+.+.+.+ |.|.|.|.| +.+.+.+.+ |.|.|.|.| +.+.+.+.+ |.|.|.|.| +.+.+.+.+ |.|.|.|.| +.+.+.+.+ |.|....
output:
1446
result:
ok single line: '1446'
Test #46:
score: 0
Accepted
time: 4ms
memory: 16216kb
input:
499 5 +-+-+-+-+-+ |.|.|.|.|.| +.+.+.+.+.+ |.|.|.|.|.| +.+.+.+.+.+ |.|.|.|.|.| +.+.+.+.+.+ |.|.|.|.|.| +.+.+.+.+.+ |.|.|.|.|.| +.+.+.+.+.+ |.|.|.|.|.| +.+.+.+.+.+ |.|.|.|.|.| +.+.+.+.+.+ |.|.|.|.|.| +.+.+.+.+.+ |.|.|.|.|.| +.+.+.+.+.+ |.|.|.|.|.| +.+.+.+.+.+ |.|.|.|.|.| +.+.+.+.+.+ |.|.|.|.|.| +.+.+....
output:
1599
result:
ok single line: '1599'
Test #47:
score: 0
Accepted
time: 99ms
memory: 69624kb
input:
500 500 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-...
output:
249999
result:
ok single line: '249999'
Test #48:
score: 0
Accepted
time: 102ms
memory: 71548kb
input:
500 500 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-...
output:
249999
result:
ok single line: '249999'
Test #49:
score: 0
Accepted
time: 109ms
memory: 71148kb
input:
499 500 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-...
output:
249500
result:
ok single line: '249500'
Test #50:
score: 0
Accepted
time: 97ms
memory: 68892kb
input:
500 499 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-...
output:
249500
result:
ok single line: '249500'
Test #51:
score: 0
Accepted
time: 94ms
memory: 63784kb
input:
499 499 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-...
output:
249001
result:
ok single line: '249001'
Test #52:
score: 0
Accepted
time: 5ms
memory: 18004kb
input:
100 200 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-...
output:
19999
result:
ok single line: '19999'
Test #53:
score: 0
Accepted
time: 11ms
memory: 19728kb
input:
97 202 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+...
output:
19594
result:
ok single line: '19594'
Test #54:
score: 0
Accepted
time: 10ms
memory: 18540kb
input:
198 101 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ |..........................................................................................
output:
19998
result:
ok single line: '19998'
Test #55:
score: 0
Accepted
time: 7ms
memory: 20200kb
input:
199 103 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ |......................................................................................
output:
20497
result:
ok single line: '20497'
Test #56:
score: 0
Accepted
time: 0ms
memory: 16100kb
input:
4 500 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-...
output:
1999
result:
ok single line: '1999'
Test #57:
score: 0
Accepted
time: 4ms
memory: 16224kb
input:
5 500 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-...
output:
2500
result:
ok single line: '2500'
Test #58:
score: 0
Accepted
time: 0ms
memory: 16232kb
input:
499 6 +-+-+-+-+-+-+ |...........| +-+-+-+-+-+.+ |.........|.| +.+-+-+-+.+.+ |.|.....|.|.| +.+.+-+.+.+.+ |.|.|...|.|.| +.+.+.+-+.+.+ |.|.|...|.|.| +.+.+-+.+.+.+ |.|.|...|.|.| +.+.+.+-+.+.+ |.|.|...|.|.| +.+.+-+.+.+.+ |.|.|...|.|.| +.+.+.+-+.+.+ |.|.|...|.|.| +.+.+-+.+.+.+ |.|.|...|.|.| +.+.+.+-+.+.+ ...
output:
2994
result:
ok single line: '2994'
Test #59:
score: 0
Accepted
time: 0ms
memory: 16340kb
input:
499 7 +-+-+-+-+-+-+-+ |.............| +-+-+-+-+-+-+.+ |...........|.| +.+-+-+-+-+.+.+ |.|.......|.|.| +.+.+-+-+.+.+.+ |.|.|...|.|.|.| +.+.+.+.+.+.+.+ |.|.|.|.|.|.|.| +.+.+.+.+.+.+.+ |.|.|.|.|.|.|.| +.+.+.+.+.+.+.+ |.|.|.|.|.|.|.| +.+.+.+.+.+.+.+ |.|.|.|.|.|.|.| +.+.+.+.+.+.+.+ |.|.|.|.|.|.|.| +.+.+....
output:
3493
result:
ok single line: '3493'
Test #60:
score: 0
Accepted
time: 102ms
memory: 69464kb
input:
500 500 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-...
output:
50349
result:
ok single line: '50349'
Test #61:
score: 0
Accepted
time: 97ms
memory: 74424kb
input:
500 500 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-...
output:
89603
result:
ok single line: '89603'
Test #62:
score: 0
Accepted
time: 112ms
memory: 68908kb
input:
499 500 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-...
output:
239186
result:
ok single line: '239186'
Test #63:
score: 0
Accepted
time: 103ms
memory: 68272kb
input:
500 499 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-...
output:
191538
result:
ok single line: '191538'
Test #64:
score: 0
Accepted
time: 115ms
memory: 65072kb
input:
499 499 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-...
output:
221145
result:
ok single line: '221145'
Test #65:
score: 0
Accepted
time: 5ms
memory: 18132kb
input:
100 200 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-...
output:
17473
result:
ok single line: '17473'
Test #66:
score: 0
Accepted
time: 3ms
memory: 20324kb
input:
97 202 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+...
output:
6372
result:
ok single line: '6372'
Test #67:
score: 0
Accepted
time: 10ms
memory: 20160kb
input:
198 101 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ |..........................................................................................
output:
7444
result:
ok single line: '7444'
Test #68:
score: 0
Accepted
time: 7ms
memory: 20396kb
input:
199 103 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ |......................................................................................
output:
6107
result:
ok single line: '6107'
Test #69:
score: 0
Accepted
time: 0ms
memory: 14060kb
input:
4 500 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-...
output:
1537
result:
ok single line: '1537'
Test #70:
score: 0
Accepted
time: 0ms
memory: 16152kb
input:
5 500 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-...
output:
1502
result:
ok single line: '1502'
Test #71:
score: 0
Accepted
time: 0ms
memory: 16292kb
input:
499 6 +-+-+-+-+-+-+ |...........| +-+-+-+-+-+.+ |.........|.| +.+-+-+-+.+.+ |.|.....|.|.| +.+.+-+.+.+.+ |.|.|...|.|.| +.+.+.+-+.+.+ |.|.|...|.|.| +.+.+-+.+.+.+ |.|.|...|.|.| +.+.+.+-+.+.+ |.|.|...|.|.| +.+.+-+.+.+.+ |.|.|...|.|.| +.+.+.+-+.+.+ |.|.|...|.|.| +.+.+-+.+.+.+ |.|.|...|.|.| +.+.+.+-+.+.+ ...
output:
2000
result:
ok single line: '2000'
Test #72:
score: 0
Accepted
time: 4ms
memory: 14228kb
input:
499 7 +-+-+-+-+-+-+-+ |.............| +-+-+-+-+-+-+.+ |...........|.| +.+-+-+-+-+.+.+ |.|.......|.|.| +.+.+-+-+.+.+.+ |.|.|...|.|.|.| +.+.+.+.+.+.+.+ |.|.|.|.|.|.|.| +.+.+.+.+.+.+.+ |.|.|.|.|.|.|.| +.+.+.+.+.+.+.+ |.|.|.|.|.|.|.| +.+.+.+.+.+.+.+ |.|.|.|.|.|.|.| +.+.+.+.+.+.+.+ |.|.|.|.|.|...| +.+.+....
output:
1923
result:
ok single line: '1923'
Test #73:
score: 0
Accepted
time: 79ms
memory: 54496kb
input:
500 500 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-...
output:
4523
result:
ok single line: '4523'
Test #74:
score: 0
Accepted
time: 93ms
memory: 59044kb
input:
500 500 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-...
output:
4717
result:
ok single line: '4717'
Test #75:
score: 0
Accepted
time: 87ms
memory: 52532kb
input:
499 500 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-...
output:
4026
result:
ok single line: '4026'
Test #76:
score: 0
Accepted
time: 92ms
memory: 59040kb
input:
500 499 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-...
output:
4690
result:
ok single line: '4690'
Test #77:
score: 0
Accepted
time: 87ms
memory: 57328kb
input:
499 499 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-...
output:
4787
result:
ok single line: '4787'
Test #78:
score: 0
Accepted
time: 10ms
memory: 17088kb
input:
100 200 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-...
output:
1129
result:
ok single line: '1129'
Test #79:
score: 0
Accepted
time: 5ms
memory: 17048kb
input:
97 202 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+...
output:
888
result:
ok single line: '888'
Test #80:
score: 0
Accepted
time: 10ms
memory: 17072kb
input:
198 101 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ |.........|.....|.........|.......|.|.....|.....|...|.|...|.....|.........|.|.|.|.|........
output:
1038
result:
ok single line: '1038'
Test #81:
score: 0
Accepted
time: 5ms
memory: 17108kb
input:
199 103 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ |.....|.|.....|.....|...|.........|.....|...|.|.|...|.......|.|...|.|.|...|.....|......
output:
1355
result:
ok single line: '1355'
Test #82:
score: 0
Accepted
time: 0ms
memory: 16044kb
input:
4 500 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-...
output:
777
result:
ok single line: '777'
Test #83:
score: 0
Accepted
time: 0ms
memory: 16068kb
input:
5 500 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-...
output:
854
result:
ok single line: '854'
Test #84:
score: 0
Accepted
time: 0ms
memory: 16084kb
input:
499 6 +-+-+-+-+-+-+ |...|.......| +.+-+.+-+.+-+ |...|.|.....| +-+.+-+.+-+-+ |.|.....|.|.| +.+-+.+-+.+.+ |...........| +.+-+.+-+.+.+ |...|...|.|.| +-+.+.+.+-+-+ |...|.|...|.| +-+.+-+.+-+.+ |...|.|.....| +-+.+.+-+.+-+ |...|.....|.| +-+-+.+-+.+.+ |.......|...| +-+.+-+.+-+.+ |.|.|...|.|.| +.+.+.+.+.+.+ ...
output:
902
result:
ok single line: '902'
Test #85:
score: 0
Accepted
time: 0ms
memory: 16184kb
input:
499 7 +-+-+-+-+-+-+-+ |.....|.|.....| +-+-+.+.+.+.+.+ |.|.|.....|.|.| +.+.+-+.+-+-+-+ |...|.........| +.+.+.+.+-+-+-+ |.|...|...|.|.| +-+.+.+-+-+.+.+ |.|.|.|...|...| +.+-+.+.+-+-+.+ |.......|.....| +-+.+-+-+-+.+-+ |.|.|...|.|...| +.+.+.+-+.+.+.+ |.|.........|.| +.+.+-+-+.+-+.+ |...|.|.|...|.| +-+.+....
output:
963
result:
ok single line: '963'
Test #86:
score: 0
Accepted
time: 84ms
memory: 52288kb
input:
500 500 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-...
output:
3031
result:
ok single line: '3031'
Test #87:
score: 0
Accepted
time: 82ms
memory: 52344kb
input:
499 500 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-...
output:
3882
result:
ok single line: '3882'
Test #88:
score: 0
Accepted
time: 84ms
memory: 56592kb
input:
500 499 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-...
output:
3126
result:
ok single line: '3126'
Test #89:
score: 0
Accepted
time: 87ms
memory: 57196kb
input:
499 499 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-...
output:
3153
result:
ok single line: '3153'
Test #90:
score: 0
Accepted
time: 9ms
memory: 19116kb
input:
100 200 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-...
output:
763
result:
ok single line: '763'
Test #91:
score: 0
Accepted
time: 10ms
memory: 19156kb
input:
97 202 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+...
output:
794
result:
ok single line: '794'
Test #92:
score: 0
Accepted
time: 4ms
memory: 19036kb
input:
198 101 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ |.......|...|.|...|.|.....|.....|.....|...|.|...........|.|...|.|.........|.|.|...|........
output:
682
result:
ok single line: '682'
Test #93:
score: 0
Accepted
time: 4ms
memory: 19136kb
input:
199 103 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ |.|.|...........|.....|.|...|.......|.....|...|...|...|.|.....|...|.|...|.|.|..........
output:
703
result:
ok single line: '703'
Test #94:
score: 0
Accepted
time: 4ms
memory: 16068kb
input:
4 500 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-...
output:
521
result:
ok single line: '521'
Test #95:
score: 0
Accepted
time: 0ms
memory: 16092kb
input:
5 500 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-...
output:
528
result:
ok single line: '528'
Test #96:
score: 0
Accepted
time: 4ms
memory: 16108kb
input:
499 6 +-+-+-+-+-+-+ |.......|...| +.+.+.+-+-+.+ |.|.|.......| +.+.+.+.+.+-+ |.|.|.|.|...| +.+.+-+.+-+-+ |.|...|.....| +.+-+.+-+-+.+ |...|.....|.| +.+.+-+.+-+.+ |.|...|...|.| +.+.+-+.+-+-+ |.|...|...|.| +.+.+.+-+-+.+ |.|.|.....|.| +.+-+-+.+.+.+ |...|.|.|.|.| +.+.+.+.+-+.+ |.|.|...|...| +.+-+-+.+.+-+ ...
output:
536
result:
ok single line: '536'
Test #97:
score: 0
Accepted
time: 0ms
memory: 16148kb
input:
499 7 +-+-+-+-+-+-+-+ |...|.....|.|.| +.+-+-+-+.+.+.+ |.|.|.....|...| +.+.+-+.+-+-+.+ |.|...|...|.|.| +.+.+.+-+.+.+.+ |.|.|.|.......| +.+-+.+-+-+.+.+ |...|.....|.|.| +.+-+.+-+-+.+-+ |.....|.|.|...| +.+-+-+.+.+.+.+ |.|.|.....|.|.| +.+.+.+-+-+.+-+ |...|...|...|.| +.+.+.+.+.+.+.+ |.|...|.|.|...| +.+-+-...
output:
537
result:
ok single line: '537'
Test #98:
score: 0
Accepted
time: 0ms
memory: 16020kb
input:
50 50 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ |...|...|.....|...|.|...|.|.......|.......|...|.|.|.|.|.......|.|.....|.|.|.....|.....|.|.|.|.|.....| +.+.+-+.+-+.+.+.+-+.+.+-+.+-+-+.+-+.+-+.+-+.+-+.+.+.+.+.+.+-+-+.+-+.+.+.+.+-+-+.+-+.+-+.+....
output:
221
result:
ok single line: '221'
Test #99:
score: 0
Accepted
time: 4ms
memory: 16076kb
input:
49 50 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ |...........|.|...|.......|...|.........|.|.|...|.....|.|.|.......|.|.|.|...|.|.|.........|.........| +.+-+.+-+.+.+.+.+.+.+.+-+.+.+-+.+-+.+-+.+.+.+-+.+-+.+-+.+.+-+.+.+-+.+.+.+.+-+.+.+-+-+-+-+....
output:
258
result:
ok single line: '258'
Test #100:
score: 0
Accepted
time: 0ms
memory: 14100kb
input:
50 49 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ |...|...|.|.....|.|...|...|.....|.|...........|.|.....|.|.....|.|.....|.......|.|.........|.|...|.| +.+.+-+.+.+.+-+.+.+.+.+-+.+.+-+-+.+.+-+-+-+.+-+.+-+-+.+.+-+-+.+.+.+.+-+.+.+-+-+.+.+-+-+.+.+.+-...
output:
222
result:
ok single line: '222'
Test #101:
score: 0
Accepted
time: 0ms
memory: 14024kb
input:
49 49 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ |.........|...|.............|...|...|.|.....|...|...|.....|...........|.|...|...|...|.......|.....| +.+.+.+.+-+.+.+-+-+.+.+-+.+-+.+-+.+-+.+-+-+.+.+.+.+-+-+-+.+.+.+-+.+.+-+.+-+.+.+.+-+.+-+-+-+.+....
output:
267
result:
ok single line: '267'
Test #102:
score: 0
Accepted
time: 0ms
memory: 16112kb
input:
29 98 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ |.......|.....|.|.......|.|.|.|...|.....|.|...|.........|.....|.|.....|.|.|.......|.|.....|........
output:
270
result:
ok single line: '270'
Test #103:
score: 0
Accepted
time: 4ms
memory: 14136kb
input:
97 32 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ |...|.|...|...|...|.....|.|...........|.........|.|...|.......|.| +.+.+.+-+.+.+-+-+.+.+.+-+.+.+-+-+-+-+-+-+-+.+-+-+.+-+.+.+-+-+.+.+ |.|.......|.|.......|.|...|...|.|...|...|.....|.|...|...|.......| +.+.+-+-+.+.+.+.+-+.+-+-+.+.+-...
output:
294
result:
ok single line: '294'