Submission #1205248

#TimeUsernameProblemLanguageResultExecution timeMemory
1205248neev4321Hack (APIO25_hack)C++20
0 / 100
52 ms78656 KiB
#include "hack.h"
#include <vector>

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

int hack(){
  a[0] = 0;
  for (long long i = 1; i < 10000000; ++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...