ENG  RUSTimus Online Judge
Online Judge
Problems
Authors
Online contests
About Online Judge
Frequently asked questions
Site news
Webboard
Links
Problem set
Submit solution
Judge status
Guide
Register
Update your info
Authors ranklist
Current contest
Scheduled contests
Past contests
Rules
back to board

Discussion of Problem 1105. Observers Coloring

Tests are weak.
Posted by Teacher30 28 Sep 2008 01:22
I think, testset is not enough.
Please, add such test:

#include <cstdio>

int main()
{
  int N = 10000;
  double k = 1.5;

  printf("%lf %lf\n", 0.0, N * (k + 1));
  printf("%d\n", N);
  for (int i = 0; i < N; i++)
    printf("%d %.1lf\n", i, i + 1.5 * N);
  return 0;
}
You are right. We'll investigate the problem and add new tests. (-)
Posted by Sandro (USU) 3 Oct 2008 11:23
Re: You are right. We'll investigate the problem and add new tests. (-)
Posted by Teacher30 3 Oct 2008 11:52
Thank you for the answer.
Re: You are right. We'll investigate the problem and add new tests. (-)
Posted by Sandro (USU) 5 May 2009 10:53
The problem is rejudged. TL now is 0.5 sec.