xQConqueror's blog

By xQConqueror, history, 14 months ago, In English

The attempt: 196181712

The Loop:

long long cnt = 1e12;
long long A = 0;
while (cnt--) {
    A++;
}

I am trying to know how many operations of each type I can execute in 1 second on Codeforces, it was supposed to be trivial but lol, does anyone know how to calculate this on my own, or what am I doing wrong in my code?

Full text and comments »

  • Vote: I like it
  • 0
  • Vote: I do not like it