What are the various types of Judge which I can use for my problem?

I am just wondering, what are the different types of Judge available on CodeChef which I can use for my problems?

1 Like

For answer, Go to

There are actually 4 kinds of judges on codechef:-

  1. Ignore extra whitespace
  2. Ignore floating point rounding upto 10^-2
  3. Ignore floating point rounding upto 10^-6
  4. Custom judges

1st one ignores the EXTRA whitespaces,’\n’,’\t’. It just compares the user program’s output and problem setter’s output.

2nd one checks the accuracy of floating point values up to 10^-2.

3rd one checks the accuracy of floating point values up to 10^-3.

4th is the one that problem setters write. In case of challenge of problems, there can be a number of ouputs, so the problem setter writes the script which runs upon the output and check whether it’s correct or not.

Recursion.

4 Likes

@ista2000 haha