ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#215173 | #2484. 取石子 | ThySecret | 30 | 82ms | 1176kb | C++11 | 1.2kb | 2024-11-26 21:58:57 | 2024-11-26 23:07:03 |
answer
#include <bits/stdc++.h>
using namespace std;
// #define int long long
// #define x first
// #define y second
#define File(a) freopen(a".in", "r", stdin), freopen(a".out", "w", stdout)
inline void debug() { cerr << '\n'; }
template<typename Type, typename... Other>
inline void debug(const Type& x, const Other&... y) { cerr << x << ' '; debug(y...); }
#define DEBUG(a...) cerr << "[" << #a << "] = ", debug(a);
typedef long long LL;
typedef pair<int, int> PII;
const int N = 200010;
const int INF = 0x3f3f3f3f;
template<typename Type>
inline void read(Type &res)
{
res = 0;
int ch = getchar(), flag = 0;
while (!isdigit(ch)) flag |= ch == '-', ch = getchar();
while (isdigit(ch)) res = (res << 3) + (res << 1) + (ch ^ 48), ch = getchar();
res = flag ? -res : res;
}
template<typename Type, typename... Other>
inline void read(Type &res, Other&... y) { read(res), read(y...); }
int n, a[N];
void solve()
{
read(n);
for (int i = 1; i <= n; i ++) read(a[i]);
int res = 0;
for (int i = 1; i <= n; i ++) res ^= a[i];
if (res == 0) printf("Bob\n");
else printf("Alice\n");
}
signed main()
{
int T; read(T);
while (T --) solve();
return 0;
}
详细
小提示:点击横条可展开更详细的信息
Test #1:
score: 10
Accepted
time: 0ms
memory: 1136kb
input:
100 2 799452644 758660838 2 44905205 44905205 2 816266571 816266571 2 967602921 867503349 2 23885824...
output:
Alice Bob Bob Alice Alice Alice Bob Alice Bob Alice Alice Bob Bob Alice Alice Alice Alice Alice Alic...
result:
ok 100 lines
Test #2:
score: 10
Accepted
time: 0ms
memory: 1140kb
input:
100 2 765485632 746332502 2 423771645 747641819 2 319475431 319475431 2 279774682 905874006 2 180899...
output:
Alice Alice Bob Alice Bob Bob Alice Alice Alice Alice Alice Alice Bob Bob Bob Bob Bob Alice Bob Alic...
result:
ok 100 lines
Test #3:
score: 10
Accepted
time: 0ms
memory: 1140kb
input:
100 2 559735557 559735557 2 941938857 941938857 2 748932928 954375869 2 415240455 415240455 2 266198...
output:
Bob Bob Alice Bob Alice Alice Alice Alice Alice Bob Bob Alice Alice Alice Alice Alice Bob Alice Bob ...
result:
ok 100 lines
Test #4:
score: 0
Wrong Answer
time: 0ms
memory: 1140kb
input:
100 1 312552923 3 366651438 398802428 51929556 9 706947288 884189505 572119470 29701839 512541044 29...
output:
Alice Alice Alice Alice Alice Alice Alice Alice Alice Alice Alice Alice Alice Alice Alice Alice Alic...
result:
wrong answer 1st lines differ - expected: 'Bob', found: 'Alice'
Test #5:
score: 0
Wrong Answer
time: 0ms
memory: 1136kb
input:
100 1 857380246 5 875540130 930489851 255919485 693830960 452775050 7 114108229 15438506 151095413 3...
output:
Alice Alice Alice Alice Alice Alice Alice Alice Alice Alice Alice Alice Alice Alice Alice Alice Alic...
result:
wrong answer 1st lines differ - expected: 'Bob', found: 'Alice'
Test #6:
score: 0
Wrong Answer
time: 0ms
memory: 1136kb
input:
100 10 862378379 735095751 713660721 764385945 714007027 741621912 713660721 816930010 901821108 819...
output:
Alice Alice Alice Alice Alice Alice Alice Alice Alice Alice Alice Alice Bob Alice Alice Bob Alice Bo...
result:
wrong answer 2nd lines differ - expected: 'Bob', found: 'Alice'
Test #7:
score: 0
Wrong Answer
time: 0ms
memory: 1140kb
input:
100 23 440277079 677838331 708797502 393217330 452204047 868185165 403053827 790696903 10048405 5122...
output:
Alice Alice Alice Alice Alice Alice Alice Alice Alice Alice Alice Alice Alice Alice Alice Alice Alic...
result:
wrong answer 71st lines differ - expected: 'Bob', found: 'Alice'
Test #8:
score: 0
Wrong Answer
time: 0ms
memory: 1136kb
input:
100 50 390724858 390724858 390724858 390724858 390724858 390724858 390724858 390724858 390724858 390...
output:
Bob Alice Alice Alice Alice Alice Alice Alice Alice Alice Alice Alice Alice Alice Alice Alice Alice ...
result:
wrong answer 3rd lines differ - expected: 'Bob', found: 'Alice'
Test #9:
score: 0
Wrong Answer
time: 0ms
memory: 1136kb
input:
100 50 994069762 994203646 995123108 993758482 996962456 993758482 994477101 997566475 997931936 998...
output:
Alice Alice Alice Alice Alice Alice Alice Alice Alice Alice Alice Alice Alice Alice Alice Alice Alic...
result:
wrong answer 3rd lines differ - expected: 'Bob', found: 'Alice'
Test #10:
score: 0
Wrong Answer
time: 82ms
memory: 1176kb
input:
100 10000 819454462 880853819 893226970 944823516 926418416 918957936 935587136 819454462 856936256 ...
output:
Alice Alice Alice Alice Alice Alice Alice Alice Alice Alice Alice Alice Alice Alice Alice Alice Alic...
result:
wrong answer 2nd lines differ - expected: 'Bob', found: 'Alice'