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 1732. Ministry of Truth

please, add new test
Posted by AndreySergeev1217 6 Sep 2011 01:54
#include <cstdio>

#define forn(i, n) for (int i = 0; i < (int)(n); i++)

int main()
{
  int n = (int)1e5;
  forn(i, n)
    putchar('a');
  puts("");
  forn(i, n / 2)
    putchar('a' + (i == n / 4));
  puts("");
  return 0;
}

Submission 3766657 should get TLE.
Re: please, add new test
Posted by Sandro (USU) 6 Sep 2011 13:21
Your test was added. Thank you.