# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
971375 | Wael | Real Mountains (CCO23_day1problem2) | C++17 | 5104 ms | 165512 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <bits/stdc++.h>
using namespace std;
int dx[] = {0, 0, -1, 1};
int dy[] = {1, -1, 0, 0};
int const mod = 1e6 + 3;
mt19937 RNG(chrono::steady_clock::now().time_since_epoch().count());
int mul(long long x, long long y) {
while(x >= mod) x -= mod;
while(y >= mod) y -= mod;
return (x * y) % mod;
}
int add(long long x, long long y) {
while(x >= mod) x -= mod;
while(y >= mod) y -= mod;
return (x + y) % mod;
}
int sub(long long x, long long y) {
while(x >= mod) x -= mod;
while(y >= mod) y -= mod;
return (x - y + mod) % mod;
}
int power(long long x, long long y) {
if(y == 0) return 1;
if(y == 1) return x;
int ret = power(x, y / 2);
ret = mul(ret, ret);
Compilation message (stderr)
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |