-
Notifications
You must be signed in to change notification settings - Fork 0
/
1101 - sequencia e soma.py
55 lines (45 loc) · 1003 Bytes
/
1101 - sequencia e soma.py
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
50
51
52
53
54
55
#Saídas corretas, mas não aceitas pelo URI
M, N, soma = 0, 0, 0
M, N = input().split(' ')
M, N = int(M), int(N)
if M < N:
menor = M
maior = N
else:
menor = N
maior = M
while M != 0 and N != 0:
for c in range(menor, maior+1):
soma += c
print('{} ' .format(c), end="")
print('Sum={}' .format(soma))
soma = 0
M, N = input().split(' ')
M, N = int(M), int(N)
if M < N:
menor = M
maior = N
else:
menor = N
maior = M
#Código aceito pelo URI, mas não foi que quem criou
while True:
try:
m,n = list(map(int,input().split()))
if(m < 1 or n < 1 ):
break
tmp = 0
if(m > n):
tmp = m
m = n
n = tmp
soma = 0
resultado = ''
while(m <= n):
resultado += str(m) + ' '
soma += m
m += 1
resultado += 'Sum=%d'
print(resultado %soma)
except:
break