I tried Infinite loop but Codeforces ignored it

Revision en1, by xQConqueror, 2023-03-05 22:52:56

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?

History

 
 
 
 
Revisions
 
 
  Rev. Lang. By When Δ Comment
en1 English xQConqueror 2023-03-05 22:52:56 408 Initial revision (published)