# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
18871 | guswns0528 | MathWorlds (YDX13_mathworlds) | C++14 | 0 ms | 1716 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 <iostream>
int main(void)
{
long long int x, y, z;
std::cin >> x >> y >> z;
int result = 0;
if (x + y == z)
{
result += 1;
}
if (x - y == z)
{
result += 2;
}
if ((y == 0 && z == 0) || (y != 0 && z % y == 0 && z / y == x))
{
result += 4;
}
if (y != 0 && x % y == 0 && x / y == z)
{
result += 8;
}
if (__builtin_popcount(result) != 1)
{
std::cout << "Invalid" << std::endl;
}
else
{
std::cout << "+-*/"[__builtin_ctz(result)] << std::endl;
}
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |