Datasets:

Modalities:
Image
Text
Formats:
parquet
Size:
< 1K
Tags:
code
Libraries:
Datasets
pandas
License:
File size: 994 Bytes
7acee6b
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
// Hacker Cup 2017
// Qualification Round
// Progress Pie
// Wesley May

import java.util.*;

public class ProgressPie 
{
	public static void main(String args[])
	{
		double EPS = 0.000001;
		Scanner scan = new Scanner(System.in);
		int T = scan.nextInt();

		for(int ca=1;ca <= T;ca++)
		{
			double p = scan.nextDouble() / 100;
			double x = scan.nextDouble();
			double y = scan.nextDouble();
			boolean ans = solve(p, x, y);

			System.out.println("Case #" + ca + ": " + (ans ? "black" : "white"));
		}
	}

	public static boolean solve(double p, double x, double y)
	{
		if(p == 0) return false;

		double dx = x - 50;
		double dy = y - 50;
		double d = Math.sqrt(dx*dx + dy*dy);
		if (d > 50) return false;

		if(dx == 0 && dy == 0) return true;

		double theta = Math.atan2(dy, dx);
		if (theta < 0) theta += 2 * Math.PI;
		double myp = (2 * Math.PI - theta) / (2 * Math.PI);
		myp += 0.25;
		if (myp >= 1) myp -= 1;

		return myp <= p;
	}
}