Bonjour je me tort l'esprit mais mon code reste faux.
Voici mon code :
1 2 3 4 5 6 7 8 9 10 11 12 13 | import sys def main(): a = sys.stdin.readline() b = sys.stdin.readline() c = sys.stdin.readline().split(" ") volume = 0 for loop in range(int(a)): if int(b) > int(c[loop]): volume = volume + (int(b) - int(c[loop])) else: continue sys.stdout.write(str(volume)) main() |