Submission #985709

# Submission time Handle Problem Language Result Execution time Memory
985709 2024-05-18T14:41:41 Z benjaminkleyn Jakarta Skyscrapers (APIO15_skyscraper) C++17
0 / 100
69 ms 592 KB
#pragma GCC optimize("Ofast,unroll-loops")
#pragma GCC target("avx,avx2,fma,bmi,bmi2")
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;

int main()
{
  int N, x = 0;
  srand(time(0));
  N = 30000 + rand() % 5;
  for (int i = 0; i < N; i++)
    for (int j = 1; j < N; j++)
      x += i * j;
  cout << x << '\n';
}
# Verdict Execution time Memory Grader output
1 Incorrect 69 ms 344 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 69 ms 592 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 69 ms 348 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 69 ms 400 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 69 ms 408 KB Output isn't correct
2 Halted 0 ms 0 KB -