Submission #985713

# Submission time Handle Problem Language Result Execution time Memory
985713 2024-05-18T14:47:11 Z benjaminkleyn Jakarta Skyscrapers (APIO15_skyscraper) C++17
0 / 100
316 ms 592 KB
#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 316 ms 592 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 283 ms 408 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 280 ms 348 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 277 ms 404 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 287 ms 404 KB Output isn't correct
2 Halted 0 ms 0 KB -