Points: 107

Tags: reverse engineering 

Poll rating:

Writeups

ActionRatingAuthor team
Read writeup
3.0
KId0fBK
Read writeup
5.0
GoN
Read writeup
0
Balsn
You need to authenticate and join a team to post writeups elklepoMarch 27, 2019, 10:32 a.m.

I stuck at the point where I had to find `a` and `b`:
```
a = 62791383142154.0
b = ?
c = ?
d = (a * a + b * b) - c * c
e = sqrt(4.0 * a * a * b * b - d * d) / 4
f = ((e + e) / (a + b + c)) - 19400354808065.54296875
g = ((a * b * c) / (e * 4.0)) - 47770539528273.90625000

a < b
b < c
c < a + b
-0.00001000 < f < 0.00001000
-0.00001000 < g < 0.00001000
```
Can someone please tell me how it could be solved or what was the other solution for this task?