QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#534401#4569. Connect the Pointsucup-team1005#WA 0ms3804kbC++201.2kb2024-08-27 09:10:432024-08-27 09:10:43

Details

Tip: Click on the bar to expand more detailed information

Test #1:

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

input:

1 1
3 5
8 6

output:

4
1 1 3 1
3 1 3 5
3 5 8 5
8 5 8 6

result:

ok Total length is 12

Test #2:

score: 0
Accepted
time: 0ms
memory: 3804kb

input:

1 1
2 2
3 3

output:

4
1 1 2 1
2 1 2 2
2 2 3 2
3 2 3 3

result:

ok Total length is 4

Test #3:

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

input:

1 1
2 3
3 2

output:

4
1 1 2 1
2 1 2 3
2 3 3 3
3 3 3 2

result:

wrong answer Jury found better solution (j=4 vs p=5)