QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#526265#5604. Triangle ContainmentZhangYiDeWA 0ms3696kbC++171.3kb2024-08-21 12:47:462024-08-21 12:47:48

Details

Tip: Click on the bar to expand more detailed information

Test #1:

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

input:

5 8
-8 1 1
-1 10 2
0 3 4
7 1 8
8 2 16

output:

0
12
0
0
8

result:

ok 5 lines

Test #2:

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

input:

6 6
0 1 1
2 3 10
2 5 100
3 1 1000
3 5 10000
4 5 100000

output:

0
1000
1000
0
10
1000

result:

wrong answer 3rd lines differ - expected: '1010', found: '1000'