QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#371478 | #8295. Binary Tree | ucup-team052# | AC ✓ | 2ms | 3824kb | C++23 | 401b | 2024-03-30 13:10:11 | 2024-03-30 13:10:12 |
Judging History
answer
#include<bits/stdc++.h>
#define rep(i,a,b) for(int i=(a);i<=(b);++i)
#define per(i,a,b) for(int i=(a);i>=(b);--i)
using namespace std;
using LL=long long;
int main(){
#ifdef xay5421
freopen("a.in","r",stdin);
#endif
int T;
cin>>T;
while(T--){
int n;
scanf("%d",&n);
for(int i=1;i<n;i++) scanf("%*d%*d");
if(n&1) printf("Alice\n");
else printf("Bob\n");
}
return 0;
}
这程序好像有点Bug,我给组数据试试?
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 1ms
memory: 3812kb
input:
1 5 1 2 1 3 3 4 3 5
output:
Alice
result:
ok single line: 'Alice'
Test #2:
score: 0
Accepted
time: 2ms
memory: 3824kb
input:
1001 1 14 1 2 1 8 2 3 2 4 3 6 4 5 4 9 5 7 5 12 6 13 7 11 8 14 9 10 42 1 2 1 6 2 3 2 5 3 4 3 7 4 10 5 12 6 9 6 24 7 8 7 20 8 13 8 34 9 11 9 14 10 16 10 22 11 18 11 40 12 39 13 15 14 19 15 17 15 21 16 31 17 26 18 32 19 29 19 35 20 38 21 25 22 23 23 27 24 30 25 28 30 42 31 33 33 36 33 41 34 37 27 1 2 1...
output:
Alice Bob Bob Alice Bob Bob Bob Alice Alice Bob Alice Alice Alice Alice Alice Alice Bob Alice Bob Alice Bob Bob Bob Alice Bob Alice Bob Bob Alice Alice Bob Bob Bob Alice Alice Alice Bob Alice Alice Alice Bob Bob Alice Bob Bob Alice Alice Alice Alice Bob Bob Bob Bob Alice Bob Alice Bob Bob Bob Bob Al...
result:
ok 1001 lines
Extra Test:
score: 0
Extra Test Passed