DWITE Online Computer Programming Contest, November 2009, Problem 2
The basic idea behind DWITE's judge is to run your programs against the test input, and compare the result against the test output. To get a better understanding, here we'll make a miniature judge that tests a simple addition function.
The input will contain sets of data: each lines of two non-negative integers, and separated by a space. lines of "expected" output follow. That is, the input is a total of lines.
You "run a solution" by adding the input integers, and then checking if it matches the number in the "expected output" part. Add 1 point for each match, 0 for different numbers.
The output will contain 5 lines, each a score for a set.
Explanation of the sample input below:
- ; score point
- ; score point
- ; score point
- ; no point
- ; score point
Sample Input
1 2
2 3
3 4
4 5
5 6
3
5
7
10
11
Sample Output
4
Problem Resource: DWITE
Comments