Divisibles por 7
Submit solution
Points:
10
Time limit:
5.0s
Memory limit:
256M
Author:
Problem types
Allowed languages
C#, Go, Java, Python
A partir de una secuencia de números, decir si cada uno de ellos es divisible por 7 o no.
Input Format
Una secuencia de N
números terminada en 0.
Constraints
0 <= N <= 10^7
Output Format
Un SI
o un NO
por cada número leído.
Sample Input 0
7 4 14 3 21 49 0
Sample Output 0
SI
NO
SI
NO
SI
SI
Sample Input 1
1 2 3 4 5 6 7 8 9 10 11 12 13 14 0
Sample Output 1
NO
NO
NO
NO
NO
NO
SI
NO
NO
NO
NO
NO
NO
SI
Autoria: Rusben