fork download
  1. int i=0
  2. while(i*i<=N{
  3. for(int j=0; j<=N; j++){
  4. for(int k=0; k<=N; k++, i++){
  5. //0(1) operation
  6. }
  7. }
  8. i++;
  9. }
Success #stdin #stdout 0.02s 24128KB
stdin
Standard input is empty
stdout
int i=0
while(i*i<=N{
  for(int j=0; j<=N; j++){
for(int k=0; k<=N; k++, i++){
//0(1) operation
    }
   }
i++;
}