-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdoublesquares.rb
49 lines (46 loc) · 1.23 KB
/
doublesquares.rb
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
=begin
DOUBLE SQUARES
CHALLENGE DESCRIPTION:
Credits: This challenge appeared in the Facebook Hacker Cup 2011.
A double-square number is an integer X which can be expressed as the sum of
two perfect squares. For example, 10 is a double-square because 10 = 3^2 +
1^2. Your task in this problem is, given X, determine the number of ways in
which it can be written as the sum of two squares.
For example, 10 can only be written as 3^2 + 1^2 (we don't count 1^2 + 3^2 as
being different). On the other hand, 25 can be written as 5^2 + 0^2 or as 4^2
+ 3^2.
NOTE: Do NOT attempt a brute force approach. It will not work. The following
constraints hold:
0 <= X <= 2147483647
1 <= N <= 100
INPUT SAMPLE:
Your program should accept as its first argument a path to a filename. You
should first read an integer N, the number of test cases. The next N lines
will contain N values of X.
5
10
25
3
0
1
OUTPUT SAMPLE:
E.g.
1
2
0
1
1
=end
lines = File.readlines(ARGV[0])
N = lines[0].chomp.to_i
lines[1..N].each do |line|
x = line.chomp.to_i
count = 0
(0..Math.sqrt(x).to_i).each do |n|
root = Math.sqrt(x - n**2)
count +=1 if root == root.to_i.to_f
end
count /= 2
count +=1 if x == 0
puts count
end