Submission #28121

#TimeUsernameProblemLanguageResultExecution timeMemory
28121EyeOfSol (#71)The Ethereum and The Bitcoin (FXCUP2_ethereum)C++98
0 / 1
0 ms1120 KiB
#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 timeMemoryGrader output
Fetching results...