QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#628422#4635. Graph OperationZ_301WA 0ms3808kbC++172.5kb2024-10-10 20:08:062024-10-10 20:08:06

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 100
Accepted
time: 0ms
memory: 3808kb

input:

4 2
1 2
3 4
1 3
2 4

output:

1
3 4 1 2 

result:

ok n=4

Test #2:

score: -100
Wrong Answer
time: 0ms
memory: 3588kb

input:

6 12
1 2
3 5
4 6
1 4
1 5
1 6
2 3
2 5
2 6
3 4
3 6
4 5
1 3
2 4
5 6
1 4
1 5
1 6
2 3
2 5
2 6
3 4
3 6
4 5

output:

2
3 5 1 2 
6 4 5 2 

result:

wrong answer b and d can't be adjacent!  round 1 : a,b,c,d = 3,5,1,2