ChineMasterace
2021-07-20 15:18:34
L'énoncé :https://image.noelshack.com/fichiers/2021/29/2/1626786899-screenshot-20210720-151435-com-brave-browser.jpghttps://image.noelshack.com/fichiers/2021/29/2/1626786909-screenshot-20210720-151444-com-brave-browser.jpg
Le code :
nbMaisons = int(input())
xMin = 1000000
xMax = 0
yMin = 1000000
yMax = 0
for k in range(nbMaisons):
x = int(input())
y = int(input())
if x <= xMin:
xMin = x
else:
if x >= xMax:
xMax = x
else:
if y <= yMin:
yMin = y
else:
if y >= yMax:
yMax = y
perimetre = 2 * (xMax - xMin) + 2 * (yMax - yMin)
print(perimetre)
Le résultat :https://image.noelshack.com/fichiers/2021/29/2/1626787025-screenshot-20210720-151635-com-brave-browser.jpg
J'ai beau essayé de comprendre d'où vient mon erreur mais je ne vois pas
ChineMasterace
2021-07-20 15:36:28
Bon j'ai réussi en changeant quelque trucs
nbMaisons = int(input())
xMin = 1000000
xMax = 0
yMin = 1000000
yMax = 0
for k in range(nbMaisons):
x = int(input())
y = int(input())
if x <= xMin:
xMin = x
if x >= xMax:
xMax = x
if y <= yMin:
yMin = y
if y >= yMax:
yMax = y
perimetre = 2 * (xMax - xMin) + 2 * (yMax - yMin)
print(perimetre)