| 
| Virtus Contest 1 |  | Start: Feb.06.2021 at 09:07:00 AM Finish: Feb.06.2021 at 11:45:00 AM
 The contest is finished!
 • Contest scoreboard
 
 |  
 
 
| Feedback |  | If you notice incorrect translations in Contester, please let author know. |  
 | Time limit 2000/4000/4000/4000 ms. Memory limit 65000/65000/65000/65000 Kb. Prepared by Ibrahim Mesecan.
 
 
 Pythagorean Number Triples
 Write a program that is going to show the number of Pythagorean Number
Triples that are less than or equal to the given number n. For example if n=20 then
the Pythagorean Number Triples are:
 
 
  5 3 4  giving the result 6.10 6 8
 13 5 12
 15 9 12
 17 8 15
 20 12 16
 
Note: After counting (5 3 4), (5 4 3) is not count because essantially
they are the same triples.
 Input specification  You will be given an integer number (n) where 1 ≤ n  ≤ 1000
 Output specification  Show the number of Pythagorean Number Triples.
 
 
| Sample Input I 20
 
 | Sample Input II 100
 
 |  
| Sample Output I 6
 | Sample Output II 52
 |  Для отправки решений необходимо выполнить вход.
 
 
 |