# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
28121 | EyeOfSol (#71) | The Ethereum and The Bitcoin (FXCUP2_ethereum) | C++98 | 0 ms | 1120 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 "ethereum.h"
#include <stdio.h>
excinfo GetExchangePrice() {
long long k = 100000000;
excinfo A = Exchange(k);
excinfo B = Exchange(k-1);
excinfo ret;
ret.ETH = (k*B.BTC-(k-1)*A.BTC)/(B.BTC*A.ETH-A.BTC*B.ETH);
ret.BTC = (k-A.ETH*ret.ETH)/A.BTC;
return ret;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |