QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#750723 | #9537. Chinese Chess | PlentyOfPenalty# | AC ✓ | 92ms | 4284kb | C++20 | 5.6kb | 2024-11-15 15:39:10 | 2024-11-15 15:39:11 |
Judging History
answer
#include <bits/stdc++.h>
#define sz(x) ((int)(x).size())
#define all(x) begin(x), end(x)
#ifdef memset0
#define log(...) fprintf(stderr, __VA_ARGS__)
#else
#define endl '\n'
#define log(...) ((void)(0))
#endif
using namespace std;
using ll = long long;
using lf = long double;
using ull = unsigned long long;
using lll = __int128;
const char name[] = {'J', 'S', 'C', 'M', 'X', 'B'};
int F[540][90];
vector<int> g[6][90];
int id(int x, int y) { return x * 9 + y; }
pair<int, int> pos(int k) { return make_pair(k / 9, k % 9); }
using status = bitset<540>;
status G[90][19];
unordered_map<status, pair<int, int>> mp;
int dfs(const status &u, int dep) {
// cerr << "dfs " << u << endl;
int c = -1;
for (int i = u._Find_first(); i != 540; i = u._Find_next(i)) {
if (c == -1) {
c = i / 90;
} else if (c != i / 90) {
c = -2;
break;
}
}
if (c != -2) return 0;
if (dep >= 2) return 114514;
auto it = mp.find(u);
if (it != mp.end()) {
return it->second.first;
}
int mn = INT_MAX, cho = -1;
for (int y = 0; y < 90; y++) {
int mx = -1;
for (int i = 0; i < 19; i++) {
status v = G[y][i] & u;
if (u == v || v.count() == 0) continue;
mx = max(mx, dfs(v, dep + 1) + 1);
// if (dep == 0) {
// log("finish y=%d i=%d mx=%d\n", y, i, mx);
// }
}
// if (dep == 0) {
// log("finish y=%d mx=%d\n", y, mx);
// }
if (mx != -1 && mx < mn) {
mn = mx;
cho = y;
}
}
// if (mn >= 3 && mn <= 100) {
// cerr << u << " " << mn << endl;
// }
mp[u] = make_pair(mn, cho);
return mn;
}
int _x, _y, _c;
int ask(int i) {
#ifdef memset0
return F[_c * 90 + id(_x, _y)][i];
#else
auto [x, y] = pos(i);
cout << "? " << x << " " << y << endl;
cout << flush;
int t;
cin >> t;
return t + 1;
#endif
}
int solve(status s) {
int con = dfs(s, 0);
int stp = con > 2 ? 3 : con;
cout << stp << endl;
cout << flush;
mp.clear();
while (con > 0) {
if (con > 2) {
int p = ask(0);
s = G[0][p] & s;
assert(dfs(s, 0) <= 2);
} else {
dfs(s, 0);
int i = mp[s].second;
int p = ask(i);
s = G[i][p] & s;
}
--stp;
con = dfs(s, 0);
}
assert(stp >= 0);
while (stp--) {
ask(89);
}
int c = -1;
for (int i = s._Find_first(); i != 540; i = s._Find_next(i)) {
if (c == -1) {
c = i / 90;
} else if (c != i / 90) {
c = -2;
break;
}
}
return c;
}
int main() {
#ifdef memset0
freopen("C2.in", "r", stdin);
// freopen("C.out", "w", stdout);
#endif
cin.tie(0)->sync_with_stdio(0);
for (int c = 0; c < 6; c++)
for (int x = 0; x < 10; x++)
for (int y = 0; y < 9; y++) {
int i = id(x, y);
auto push = [&](int x, int y) {
if (x < 0 || y < 0 || x >= 10 || y >= 9) return;
g[c][i].emplace_back(id(x, y));
};
if (c == 0) {
push(x + 1, y);
push(x - 1, y);
push(x, y + 1);
push(x, y - 1);
} else if (c == 1) {
push(x + 1, y + 1);
push(x - 1, y + 1);
push(x + 1, y - 1);
push(x - 1, y - 1);
} else if (c == 2) {
for (int t = 0; t < 10; t++) {
if (t != x) push(t, y);
}
for (int t = 0; t < 9; t++) {
if (t != y) push(x, t);
}
} else if (c == 3) {
push(x + 2, y + 1);
push(x - 2, y + 1);
push(x + 2, y - 1);
push(x - 2, y - 1);
push(x + 1, y + 2);
push(x - 1, y + 2);
push(x + 1, y - 2);
push(x - 1, y - 2);
} else if (c == 4) {
push(x + 2, y + 2);
push(x - 2, y + 2);
push(x + 2, y - 2);
push(x - 2, y - 2);
} else {
if (x <= 4) {
push(x + 1, y);
} else {
push(x + 1, y);
push(x, y - 1);
push(x, y + 1);
}
}
}
for (int i = 0; i < 540; i++) {
auto [x, y] = pos(i % 90);
int c = i / 90;
fill(all(F[i]), -1);
F[i][id(x, y)] = 0;
queue<int> q;
q.push(id(x, y));
// log("! c = %d x = %d y = %d\n", c, x, y);
while (q.size()) {
int u = q.front();
q.pop();
// log("F[%d][%d,%d] = %d\n", i, pos(u).first, pos(u).second, F[i][u]);
for (int v : g[c][u])
if (F[i][v] == -1) {
F[i][v] = F[i][u] + 1;
q.push(v);
}
}
}
for (int i = 0; i < 540; i++)
for (int j = 0; j < 90; j++) {
F[i][j]++;
assert(F[i][j] < 19);
G[j][F[i][j]].set(i);
}
// for (int i = 0; i < 540; i++)
// for (int j = 0; j < 90; j++) {
// printf("F[%d][%d] = %d\n", i, j, F[i][j]);
// }
// return 0;
// {
// status s;
// s.set();
// cout << dfs(s, 0) << endl;
// exit(0);
// }
status s;
int n;
cin >> n;
vector<int> x(n), y(n);
for (int i = 0; i < n; i++) {
cin >> x[i] >> y[i];
for (int c = 0; c < 6; c++) {
s.set(c * 90 + x[i] * 9 + y[i]);
}
}
log(">> n=%d\n", n);
#ifdef memset0
for (int i = 0; i < n; i++) {
_x = x[i];
_y = y[i];
for (_c = 0; _c < 6; _c++) {
log("test (%d, %d) %d\n", _x, _y, _c);
int c = solve(s);
log("test (%d, %d) %d -> %d\n", _x, _y, _c, c);
assert(c == _c);
}
}
#else
int res = solve(s);
cout << "! " << name[res] << endl;
cout << flush;
#endif
}
这程序好像有点Bug,我给组数据试试?
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 4ms
memory: 3952kb
input:
1 9 0 8
output:
1 ? 1 8 ! S
result:
ok number is guessed.
Test #2:
score: 0
Accepted
time: 15ms
memory: 4120kb
input:
4 2 1 2 3 2 5 2 7 5 1
output:
2 ? 0 0 ? 0 6 ! M
result:
ok number is guessed.
Test #3:
score: 0
Accepted
time: 4ms
memory: 3948kb
input:
1 2 4 -1 1
output:
2 ? 0 0 ? 0 2 ! X
result:
ok number is guessed.
Test #4:
score: 0
Accepted
time: 0ms
memory: 3844kb
input:
1 5 0 6
output:
1 ? 3 6 ! S
result:
ok number is guessed.
Test #5:
score: 0
Accepted
time: 3ms
memory: 3904kb
input:
1 6 0 6
output:
1 ? 0 2 ! S
result:
ok number is guessed.
Test #6:
score: 0
Accepted
time: 8ms
memory: 3940kb
input:
2 7 7 1 0 -1 6
output:
2 ? 0 0 ? 7 2 ! S
result:
ok number is guessed.
Test #7:
score: 0
Accepted
time: 29ms
memory: 4004kb
input:
5 8 6 1 3 0 5 2 4 0 2 6 3
output:
2 ? 0 0 ? 0 3 ! J
result:
ok number is guessed.
Test #8:
score: 0
Accepted
time: 31ms
memory: 4200kb
input:
6 0 7 1 6 2 8 0 5 7 6 8 2 -1 14
output:
2 ? 0 0 ? 8 1 ! B
result:
ok number is guessed.
Test #9:
score: 0
Accepted
time: 39ms
memory: 4144kb
input:
7 6 5 3 0 3 2 4 1 4 0 2 4 5 2 5 7
output:
2 ? 0 0 ? 0 4 ! J
result:
ok number is guessed.
Test #10:
score: 0
Accepted
time: 47ms
memory: 3960kb
input:
8 3 3 2 5 6 2 7 4 1 4 3 0 2 4 3 4 7 -1
output:
2 ? 0 1 ? 0 0 ! S
result:
ok number is guessed.
Test #11:
score: 0
Accepted
time: 38ms
memory: 4172kb
input:
9 2 7 2 4 2 5 2 2 2 1 2 0 2 6 2 3 2 8 6 8
output:
2 ? 2 0 ? 0 0 ! J
result:
ok number is guessed.
Test #12:
score: 0
Accepted
time: 43ms
memory: 4004kb
input:
10 4 0 0 0 5 0 7 0 8 0 1 0 6 0 9 0 2 0 3 0 9 -1
output:
2 ? 9 0 ? 0 1 ! B
result:
ok number is guessed.
Test #13:
score: 0
Accepted
time: 38ms
memory: 3984kb
input:
9 1 8 1 2 1 5 1 6 1 3 1 4 1 0 1 1 1 7 6 7
output:
2 ? 1 0 ? 0 0 ! J
result:
ok number is guessed.
Test #14:
score: 0
Accepted
time: 34ms
memory: 4204kb
input:
10 0 4 5 4 8 4 2 4 4 4 7 4 3 4 9 4 6 4 1 4 11 5
output:
2 ? 9 1 ? 0 0 ! J
result:
ok number is guessed.
Test #15:
score: 0
Accepted
time: 45ms
memory: 4180kb
input:
9 4 6 4 5 4 7 4 4 4 1 4 3 4 0 4 8 4 2 6 12
output:
2 ? 4 2 ? 0 0 ! J
result:
ok number is guessed.
Test #16:
score: 0
Accepted
time: 39ms
memory: 3940kb
input:
10 9 2 5 2 1 2 8 2 6 2 7 2 2 2 0 2 4 2 3 2 10 3
output:
2 ? 9 0 ? 0 0 ! J
result:
ok number is guessed.
Test #17:
score: 0
Accepted
time: 42ms
memory: 3924kb
input:
9 3 1 3 7 3 5 3 3 3 6 3 4 3 0 3 2 3 8 6 11
output:
2 ? 3 2 ? 0 0 ! J
result:
ok number is guessed.
Test #18:
score: 0
Accepted
time: 41ms
memory: 3992kb
input:
10 5 1 8 1 6 1 4 1 3 1 0 1 2 1 7 1 9 1 1 1 10 -1
output:
2 ? 9 0 ? 0 0 ! B
result:
ok number is guessed.
Test #19:
score: 0
Accepted
time: 38ms
memory: 4016kb
input:
9 1 6 1 4 1 3 1 7 1 8 1 5 1 2 1 1 1 0 6 7
output:
2 ? 1 0 ? 0 0 ! J
result:
ok number is guessed.
Test #20:
score: 0
Accepted
time: 43ms
memory: 3944kb
input:
10 5 0 9 0 1 0 2 0 3 0 6 0 7 0 4 0 0 0 8 0 9 -1
output:
2 ? 9 0 ? 0 1 ! B
result:
ok number is guessed.
Test #21:
score: 0
Accepted
time: 36ms
memory: 4012kb
input:
9 0 3 0 5 0 7 0 0 0 4 0 8 0 1 0 6 0 2 6 5
output:
2 ? 0 0 ? 0 1 ! J
result:
ok number is guessed.
Test #22:
score: 0
Accepted
time: 42ms
memory: 4000kb
input:
10 1 0 9 0 4 0 2 0 8 0 7 0 5 0 3 0 0 0 6 0 9 -1
output:
2 ? 9 0 ? 0 1 ! B
result:
ok number is guessed.
Test #23:
score: 0
Accepted
time: 34ms
memory: 4208kb
input:
9 1 8 1 2 1 7 1 0 1 4 1 6 1 1 1 5 1 3 6 7
output:
2 ? 1 0 ? 0 0 ! J
result:
ok number is guessed.
Test #24:
score: 0
Accepted
time: 34ms
memory: 3984kb
input:
10 2 4 1 4 0 4 6 4 4 4 9 4 5 4 3 4 7 4 8 4 11 5
output:
2 ? 9 1 ? 0 0 ! J
result:
ok number is guessed.
Test #25:
score: 0
Accepted
time: 36ms
memory: 3928kb
input:
9 0 2 0 7 0 5 0 4 0 0 0 3 0 1 0 6 0 8 6 5
output:
2 ? 0 0 ? 0 1 ! J
result:
ok number is guessed.
Test #26:
score: 0
Accepted
time: 37ms
memory: 3928kb
input:
10 5 3 2 3 3 3 8 3 9 3 1 3 6 3 7 3 0 3 4 3 11 4
output:
2 ? 9 0 ? 0 0 ! J
result:
ok number is guessed.
Test #27:
score: 0
Accepted
time: 78ms
memory: 3972kb
input:
50 7 5 9 2 0 4 9 3 8 4 8 2 7 2 6 4 4 4 0 0 1 7 1 1 1 5 2 0 9 8 9 0 3 1 7 8 8 6 5 0 7 3 8 5 2 6 4 8 3 5 6 8 0 8 5 7 4 6 1 6 3 8 5 6 3 0 5 3 0 7 5 1 3 4 0 1 7 6 2 3 4 3 5 5 8 1 0 3 6 5 9 5 5 8 7 4 6 3 2 7 -1 3 2
output:
3 ? 0 0 ? 1 0 ? 0 1 ! S
result:
ok number is guessed.
Test #28:
score: 0
Accepted
time: 79ms
memory: 4060kb
input:
49 4 2 8 0 2 4 9 5 8 1 7 8 0 2 4 7 3 0 1 3 6 6 0 8 8 3 5 8 2 2 1 0 6 0 2 6 0 5 9 2 7 0 4 4 8 8 9 6 5 0 6 8 9 4 7 6 9 0 2 7 4 6 7 7 0 1 4 0 6 7 2 8 8 2 3 2 3 1 3 4 5 4 7 3 5 6 5 2 1 8 3 3 1 7 0 3 4 3 -1 3 4
output:
3 ? 0 0 ? 1 0 ? 0 1 ! S
result:
ok number is guessed.
Test #29:
score: 0
Accepted
time: 78ms
memory: 4060kb
input:
48 6 7 3 5 0 3 5 7 1 6 9 6 6 2 0 7 5 5 0 4 0 5 0 8 6 4 4 2 8 5 1 2 1 3 8 1 2 7 0 2 2 6 7 1 6 5 0 1 3 7 6 8 7 4 3 3 5 4 5 1 4 4 8 8 7 5 0 0 1 0 7 6 7 7 3 0 7 8 4 0 9 2 9 7 6 6 2 1 6 1 5 2 5 6 4 1 -1 2 1
output:
3 ? 0 0 ? 1 0 ? 0 1 ! S
result:
ok number is guessed.
Test #30:
score: 0
Accepted
time: 75ms
memory: 4040kb
input:
51 0 8 1 6 5 3 2 6 9 0 4 0 8 1 0 7 1 0 2 4 8 4 3 6 7 1 8 6 9 7 0 6 5 4 3 2 6 6 7 7 6 1 5 0 4 5 4 8 6 8 3 5 5 8 5 5 8 7 9 6 6 0 3 3 2 3 3 1 2 8 4 4 6 4 1 7 7 2 8 0 3 0 8 8 3 7 1 3 5 6 7 4 6 5 2 7 1 1 7 6 3 8 -1 4 -1
output:
3 ? 0 0 ? 1 0 ? 0 1 ! X
result:
ok number is guessed.
Test #31:
score: 0
Accepted
time: 75ms
memory: 4224kb
input:
52 1 6 3 8 0 6 9 2 6 4 5 4 2 1 1 0 4 2 2 2 3 2 9 6 7 1 0 2 8 7 1 4 3 1 8 0 3 0 5 8 1 5 7 4 5 7 5 1 6 8 1 2 9 0 6 5 0 4 4 0 5 5 5 0 2 6 6 2 8 5 7 0 0 7 5 3 9 3 0 1 3 5 8 1 4 5 4 6 7 5 8 3 7 8 7 2 3 3 2 5 8 8 2 8 -1 4 5
output:
3 ? 0 0 ? 1 0 ? 0 1 ! S
result:
ok number is guessed.
Test #32:
score: 0
Accepted
time: 92ms
memory: 4048kb
input:
89 3 1 7 3 3 0 3 5 0 0 1 3 1 1 3 3 8 8 7 7 2 4 7 0 9 3 2 0 3 7 6 6 7 2 7 1 4 4 2 8 1 2 9 4 9 2 3 8 9 5 6 5 3 4 8 0 2 1 0 4 4 2 1 5 4 7 4 3 7 8 5 6 0 8 0 2 8 7 9 0 5 8 9 8 5 4 0 6 0 5 5 5 7 6 5 0 6 0 6 1 1 0 5 2 8 6 7 5 4 5 9 1 1 4 8 4 4 8 4 6 9 7 1 6 5 3 8 5 9 6 3 6 0 1 6 8 1 8 1 7 4 0 0 3 6 7 0 7 2...
output:
3 ? 0 0 ? 1 0 ? 0 1 ! S
result:
ok number is guessed.
Test #33:
score: 0
Accepted
time: 92ms
memory: 4204kb
input:
89 7 4 2 6 9 2 0 1 0 4 8 0 6 5 4 1 7 5 0 2 5 3 1 0 9 5 2 7 7 7 7 1 2 1 8 8 0 0 1 1 9 3 3 0 4 7 5 5 6 8 8 3 0 3 7 2 8 5 0 8 4 6 0 6 6 0 8 6 8 4 2 8 3 8 9 7 1 7 5 6 8 2 7 6 5 1 1 5 2 2 6 3 2 4 9 6 4 3 4 4 4 5 5 7 3 3 4 0 9 1 6 7 9 4 1 3 3 1 6 4 1 4 0 7 9 0 1 2 0 5 6 1 7 3 8 1 9 8 2 3 3 5 2 5 5 0 8 7 7...
output:
3 ? 0 0 ? 1 0 ? 0 1 ! S
result:
ok number is guessed.
Test #34:
score: 0
Accepted
time: 91ms
memory: 3980kb
input:
89 2 2 5 3 0 1 6 1 3 7 8 5 0 3 0 8 7 1 9 4 9 7 6 3 2 1 5 6 1 6 9 0 5 5 6 7 2 4 7 4 9 5 6 5 8 3 0 0 2 3 7 3 6 8 8 8 3 3 2 5 6 4 5 2 5 0 5 1 3 1 1 4 5 8 9 8 1 8 2 6 4 0 2 0 3 4 1 3 2 8 3 2 4 4 3 0 6 0 0 5 9 1 4 7 4 2 3 6 4 8 6 2 1 5 1 7 7 8 4 6 7 0 0 4 6 6 2 7 9 3 8 0 5 7 8 6 7 7 9 2 9 6 8 7 8 4 3 5 4...
output:
3 ? 0 0 ? 1 0 ? 0 1 ! S
result:
ok number is guessed.
Test #35:
score: 0
Accepted
time: 92ms
memory: 3984kb
input:
89 3 3 4 4 8 2 7 8 4 7 7 6 1 5 5 4 9 5 3 8 6 2 0 1 3 0 1 6 0 7 3 4 4 8 8 1 4 6 5 5 4 0 4 5 2 3 7 3 7 2 1 1 9 8 4 3 3 7 5 8 1 8 1 0 4 1 5 2 2 4 0 6 8 8 6 1 9 0 2 6 3 6 1 7 6 3 8 0 1 3 2 0 6 0 8 6 8 5 7 5 9 2 9 1 3 1 9 6 3 2 5 7 0 3 6 6 0 4 6 4 5 3 5 0 2 8 7 4 0 2 2 2 2 1 6 8 2 5 7 1 8 3 0 8 0 0 9 3 7...
output:
3 ? 0 0 ? 1 0 ? 0 1 ! S
result:
ok number is guessed.
Test #36:
score: 0
Accepted
time: 91ms
memory: 4236kb
input:
89 5 0 7 0 0 2 0 7 1 5 3 6 2 6 7 8 6 5 5 5 8 2 6 0 1 4 4 7 4 4 6 3 9 4 8 3 0 4 2 3 4 6 3 3 6 7 6 6 3 0 1 6 6 8 8 6 7 5 1 2 2 8 6 4 6 1 1 8 0 1 2 1 3 4 0 6 0 0 4 3 1 3 3 1 8 4 5 4 3 5 7 3 6 2 9 3 2 2 8 7 5 8 9 0 9 1 9 5 4 1 2 7 9 7 4 8 7 2 7 7 5 3 4 5 5 1 5 7 7 6 3 8 7 4 2 5 9 2 4 2 1 1 1 7 4 0 9 8 7...
output:
3 ? 0 0 ? 1 0 ? 0 1 ! S
result:
ok number is guessed.
Test #37:
score: 0
Accepted
time: 92ms
memory: 4064kb
input:
90 9 6 6 2 8 8 6 4 9 2 4 1 3 6 2 7 8 6 6 0 9 8 3 2 7 5 5 7 1 6 5 3 5 0 8 4 2 4 2 0 0 4 4 5 1 3 4 4 4 3 7 8 6 8 3 5 0 5 5 2 8 0 7 0 5 6 9 7 3 0 1 2 1 4 3 8 6 3 3 3 4 2 9 5 7 4 7 3 3 1 0 6 2 2 5 1 3 7 4 8 0 3 9 4 1 7 2 8 1 0 9 3 0 7 0 2 4 7 0 0 7 6 3 4 6 1 7 7 2 6 8 3 8 1 4 0 5 5 1 8 5 4 4 6 1 5 9 0 2...
output:
3 ? 0 0 ? 1 0 ? 0 1 ! S
result:
ok number is guessed.
Test #38:
score: 0
Accepted
time: 92ms
memory: 3996kb
input:
90 9 6 7 3 8 7 1 2 9 4 6 5 9 7 0 5 0 3 5 8 0 0 1 6 1 3 8 8 9 3 4 3 7 8 3 7 3 5 8 5 5 7 1 0 5 4 5 2 0 1 9 0 6 8 6 4 3 4 1 1 4 4 9 2 6 2 0 4 8 0 2 2 1 4 0 6 4 7 3 0 7 5 2 7 8 6 5 0 4 6 2 3 7 7 9 1 2 5 9 5 7 0 5 3 4 5 3 3 4 0 8 4 7 2 3 1 0 8 5 5 2 8 7 4 8 3 0 2 0 7 1 5 7 1 2 1 3 6 9 8 5 1 7 6 2 6 1 7 4...
output:
3 ? 0 0 ? 1 0 ? 0 1 ! S
result:
ok number is guessed.
Test #39:
score: 0
Accepted
time: 84ms
memory: 4240kb
input:
90 5 7 7 2 6 6 2 4 1 5 0 3 9 8 5 0 4 1 3 1 5 6 8 5 4 0 4 6 3 3 1 2 7 0 4 2 0 4 4 5 0 1 8 8 8 6 9 3 7 5 5 2 6 8 8 2 6 2 4 7 3 5 2 0 0 5 8 4 8 3 2 2 6 3 9 5 4 8 1 4 4 4 6 7 2 8 1 7 0 0 6 5 9 1 1 3 9 4 9 0 7 3 7 7 9 2 1 0 6 4 2 7 2 5 6 1 3 4 0 7 5 8 2 6 0 8 3 8 7 1 4 3 3 0 3 2 8 1 8 7 9 6 2 1 9 7 1 1 0...
output:
3 ? 0 0 ? 1 0 ? 0 1 ! S
result:
ok number is guessed.
Test #40:
score: 0
Accepted
time: 92ms
memory: 4284kb
input:
90 7 6 4 2 9 4 7 1 0 7 7 3 0 2 6 2 6 3 3 4 2 7 4 4 8 5 4 3 3 2 6 7 1 8 1 0 3 8 0 4 4 5 8 0 5 8 0 6 1 6 8 4 6 8 8 6 6 6 4 0 8 1 6 1 2 4 7 5 8 2 9 6 0 0 7 8 4 7 5 1 7 4 2 1 8 3 6 5 2 5 5 4 1 1 3 0 3 5 5 7 9 1 1 5 9 7 9 8 0 3 7 0 0 1 2 8 5 3 6 0 9 0 4 6 4 1 4 8 2 2 5 2 3 7 1 2 3 3 1 3 9 2 7 7 5 6 2 3 0...
output:
3 ? 0 0 ? 1 0 ? 0 1 ! S
result:
ok number is guessed.
Test #41:
score: 0
Accepted
time: 92ms
memory: 4048kb
input:
90 2 0 5 6 9 0 7 3 4 7 9 3 2 8 3 5 7 6 6 1 0 7 0 8 4 6 2 2 8 3 2 6 7 4 9 6 2 1 6 2 4 1 7 0 0 0 1 7 6 5 1 1 6 8 2 3 6 0 9 7 1 2 2 7 3 3 5 4 3 6 1 6 0 3 0 5 4 3 6 3 2 4 1 3 7 7 8 1 6 7 3 1 9 4 8 7 9 1 3 2 4 8 9 2 1 4 4 0 8 5 6 4 8 0 0 2 3 0 1 0 6 6 8 6 9 5 5 2 4 2 2 5 7 1 5 8 5 3 8 8 3 8 5 0 7 5 5 1 1...
output:
3 ? 0 0 ? 1 0 ? 0 1 ! S
result:
ok number is guessed.
Test #42:
score: 0
Accepted
time: 91ms
memory: 4056kb
input:
90 6 6 3 6 3 1 3 8 9 5 7 0 7 6 2 6 8 4 4 6 8 0 6 2 7 3 9 2 8 3 7 1 1 8 1 1 3 4 2 4 6 4 0 1 0 8 5 2 0 6 1 7 4 0 2 7 2 0 3 7 8 6 1 0 7 2 5 0 0 0 1 3 1 6 3 3 5 1 8 5 0 5 4 3 5 5 4 1 2 1 1 4 3 2 2 3 4 7 0 2 2 8 5 3 9 1 5 4 6 3 6 8 5 7 9 8 4 5 0 3 5 6 7 7 9 7 7 5 3 5 6 7 5 8 1 2 4 2 7 8 8 1 8 8 6 5 9 0 4...
output:
3 ? 0 0 ? 1 0 ? 0 1 ! S
result:
ok number is guessed.
Test #43:
score: 0
Accepted
time: 92ms
memory: 4280kb
input:
90 5 4 6 7 7 6 8 5 1 0 5 8 0 7 4 2 9 3 8 1 3 0 7 3 0 4 1 4 7 8 8 8 9 0 1 3 3 7 6 3 3 2 2 7 2 3 5 7 6 2 5 2 3 5 2 1 1 1 0 8 8 2 0 2 6 6 9 4 7 0 3 3 2 8 2 4 3 1 9 7 1 5 5 3 2 5 5 0 9 6 8 0 9 8 7 5 6 1 1 2 9 1 6 5 1 8 4 3 3 8 6 8 0 3 4 5 1 7 6 0 4 1 0 1 5 1 8 4 8 6 7 7 3 4 4 4 6 4 4 8 3 6 4 6 4 0 2 6 2...
output:
3 ? 0 0 ? 1 0 ? 0 1 ! S
result:
ok number is guessed.
Test #44:
score: 0
Accepted
time: 88ms
memory: 3984kb
input:
90 4 7 2 0 6 2 9 8 2 1 1 2 0 6 3 6 1 1 9 6 7 4 9 2 7 2 0 8 2 8 2 4 4 6 6 0 7 8 9 7 4 5 1 7 6 4 0 4 3 3 3 5 5 8 9 0 5 3 4 2 4 0 5 1 8 5 3 0 0 0 5 2 9 5 8 2 8 8 0 1 5 7 3 1 1 5 6 1 5 6 8 1 0 2 3 8 4 4 6 5 0 7 2 6 7 7 3 2 6 8 9 1 5 0 6 6 0 3 3 4 6 3 7 6 4 3 5 5 0 5 4 1 1 8 9 3 2 3 5 4 8 6 2 7 3 7 4 8 9...
output:
3 ? 0 0 ? 1 0 ? 0 1 ! S
result:
ok number is guessed.
Test #45:
score: 0
Accepted
time: 92ms
memory: 3980kb
input:
90 2 1 6 0 4 3 6 7 3 5 1 4 4 1 2 3 3 6 2 5 7 5 3 2 2 7 5 5 5 3 1 7 0 3 7 1 8 2 5 8 2 4 6 1 8 7 7 2 9 5 0 5 3 1 0 6 3 3 6 6 9 8 9 4 8 0 8 4 5 1 7 8 2 0 5 2 4 4 7 0 1 5 2 2 8 3 1 6 3 7 1 0 1 2 0 1 5 6 3 4 8 6 9 0 6 4 9 1 1 1 7 4 7 7 8 1 5 7 0 4 3 8 1 3 8 8 4 0 4 8 6 3 4 2 6 2 4 7 7 6 0 2 2 8 2 6 0 7 5...
output:
3 ? 0 0 ? 1 0 ? 0 1 ! S
result:
ok number is guessed.
Test #46:
score: 0
Accepted
time: 92ms
memory: 4236kb
input:
90 0 3 1 3 4 0 9 0 4 6 8 6 6 6 0 8 0 2 7 2 7 1 3 8 1 7 7 6 5 4 9 6 2 1 2 3 6 4 3 7 8 7 0 6 8 2 3 1 4 2 5 1 7 8 6 7 2 8 2 4 6 0 5 5 3 6 9 5 9 3 2 2 8 0 1 2 2 5 8 3 0 5 0 4 4 4 3 4 0 0 6 5 4 7 8 1 1 0 9 1 0 1 5 0 8 5 0 7 6 1 6 8 7 3 8 8 9 7 9 2 1 6 2 7 1 1 6 2 4 8 1 8 5 6 7 5 2 6 7 4 9 4 5 7 1 4 6 3 3...
output:
3 ? 0 0 ? 1 0 ? 0 1 ! S
result:
ok number is guessed.
Extra Test:
score: 0
Extra Test Passed