Submission #1205252

#TimeUsernameProblemLanguageResultExecution timeMemory
1205252neev4321Hack (APIO25_hack)C++20
0 / 100
5 ms8000 KiB
#include "hack.h"
#include <vector>

std::vector<long long> a(1000000);

int hack(){
  a[0] = 0;
  for (long long i = 1; i < 1000000; ++i)
    a[i] = a[i - 1] + i;
  return 42;
}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...