-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFar_from_origin.cpp
More file actions
61 lines (45 loc) · 931 Bytes
/
Far_from_origin.cpp
File metadata and controls
61 lines (45 loc) · 931 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
// ***** !!!!! JAI SHREE KRISHNA !!!!! *****
// Date - 14th January 2023
// Code by - Abhinav Anand
// Problem link -> https://www.codechef.com/JAN231D/problems/FARFROMO
#include <iostream>
#include <algorithm>
#include <bits/stdc++.h>
#define ll long long int
#define endl "\n"
using namespace std;
bool isprime(int n)
{
for(int i=2;i<=sqrt(n);i++)
{
if(n%i==0)
return false;
}
return true;
}
void solve()
{
ll x1,y1,x2,y2;
cin>>x1>>y1>>x2>>y2;
x1=abs(x1);
y1=abs(y1);
x2=abs(x2);
y2=abs(y2);
double alex = sqrt(pow((x1),2) + pow((y1),2));
double bob = sqrt(pow((x2),2) + pow((y2),2));
if(alex==bob)
cout << "EQUAL" << endl;
else if(alex>bob)
cout << "ALEX" << endl;
else if(bob>alex)
cout << "BOB" << endl;
}
int main() {
ll t;
cin>>t;
while(t--)
{
solve();
}
return 0;
}