Submit | All submissions | Best solutions | Back to list |
GDCOFTI - Greatest Common Divisor Of Three Integers |
It is said that the greatest common divisor (GCD) of two or more whole integers, is the largest integer that divides them without leaving residue. Euclid's algorithm is famous for allowing to find the GCD between two integers. This challenge asks you, you find the GCD between three integers.
The entry consists of 3 whole non-negative integers (< 264), one per line and the output will be the GCD of the three integers.
Examples
Input: 426 132 120 Output: 6
Input: 100 60 120 Output: 20
Input: 4 8 12 Output: 4
Added by: | Alexander Narváez |
Date: | 2016-07-26 |
Time limit: | 1s |
Source limit: | 50000B |
Memory limit: | 1536MB |
Cluster: | Cube (Intel G860) |
Languages: | All except: ASM64 GOSU |
hide comments