Skip to content

Commit

Permalink
Solve Fire Flowers in java
Browse files Browse the repository at this point in the history
  • Loading branch information
deniscostadsc committed Nov 11, 2024
1 parent d46b96f commit 2e799e1
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions solutions/beecrowd/1039/1039.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
import java.util.Scanner;
import java.lang.Math;

public class Main {
public static void main(String args[]) {
Scanner sc = new Scanner(System.in);

double r1, x1, y1, r2, x2, y2;

while (sc.hasNextDouble()) {
r1 = sc.nextDouble();
x1 = sc.nextDouble();
y1 = sc.nextDouble();
r2 = sc.nextDouble();
x2 = sc.nextDouble();
y2 = sc.nextDouble();

double distance = Math.sqrt(Math.pow(x1 - x2, 2) + Math.pow(y1 - y2, 2));

if (r1 >= distance + r2) {
System.out.println("RICO");
} else {
System.out.println("MORTO");
}
}

sc.close();
}
}

0 comments on commit 2e799e1

Please sign in to comment.