| # | Time | Username | Problem | Language | Result | Execution time | Memory | 
|---|---|---|---|---|---|---|---|
| 28109 | Shocking Hot (#71) | The Ethereum and The Bitcoin (FXCUP2_ethereum) | C++11 | 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>
typedef long long ll;
const ll v1 = 100000000, v2 = 99999999;
bool haja (excinfo &I) {
	return (I.BTC == 0 || I.ETH == 0);
}
excinfo GetExchangePrice() {
	ll r1, r2;
	excinfo A = Exchange(v1), B = Exchange(v2);
	bool B1 = haja(A), B2 = haja(B);
	if(B1 && B2) {
		if(A.BTC) r1 = v1 / A.BTC;
		if(A.ETH) r2 = v1 / A.ETH;
		if(B.BTC) r1 = v2 / B.BTC;
		if(B.ETH) r2 = v2 / B.ETH;
	}
	else if(B1) {
		if(A.BTC) {
			r1 = v1 / A.BTC;
			r2 = (v2 - B.BTC * r1) / B.ETH;
		}
		if(A.ETH) {
			r2 = v1 / A.ETH;
			r1 = (v2 - B.ETH * r1) / B.BTC;
		}
	}
	else if(B2) {
		if(B.BTC) {
			r1 = v2 / B.BTC;
			r2 = (v1 - A.BTC * r1) / A.ETH;
		}
		if(B.ETH) {
			r2 = v2 / B.ETH;
			r1 = (v1 - A.ETH * r1) / A.BTC;
		}
	}
	else {
		r2 = (B.BTC*v1 - A.BTC*v2)/(B.BTC*A.ETH - A.BTC*B.ETH);
		r1 = (v1 - A.ETH*r2)/A.BTC;
	}
	return {r1, r2};
}
Compilation message (stderr)
| # | Verdict | Execution time | Memory | Grader output | 
|---|---|---|---|---|
| Fetching results... | ||||
