# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
137966 | arthurconmy | 말 (IOI15_horses) | C++14 | 92 ms | 12508 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;
using ll=long long;
const int p = 1000000007;
const int pLL = 1000000007LL;
const int MAXN = 500001; // 1-index that shit
const ll MAXP = 1000000000;
int n;
int X[MAXN];
int Y[MAXN];
ll x_prod=1;
int gcd(int a, int b, int &x, int &y)
{
if(a%b == 1) // uh ... plug a = p in the real thing I guess then
{
x = 1;
y = -int(a/b);
return 1;
}
int d = gcd(b,a%b,x,y);
int old_x = x;
x = y;
y = old_x - int(a/b)*y;
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... |