# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
218078 | rama_pang | Naan (JOI19_naan) | C++14 | 1092 ms | 102648 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 lint = long long;
lint gcd(lint x, lint y) {
return min(x, y) == 0 ? max(x, y) : gcd(y, x % y);
}
lint lcm(lint x, lint y) {
return (x / gcd(x, y)) * y;
}
struct Rational { // rational number of x/y
lint x, y;
Rational(lint x = 0, lint y = 1) {
lint g = gcd(x, y);
x /= g;
y /= g;
this->x = x;
this->y = y;
}
Rational operator + (const Rational &o) const {
Rational a = *this, b = o;
Rational res;
lint c = a.x / a.y + b.x / b.y;
a.x %= a.y;
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |