清倉
3144 ワード
作成日:2022年1月21日午後4:50
インプリメンテーションコード
# 창고 정리
import sys
#sys.stdin = open("input.txt", "rt")
l = int(input())
box = list(map(int, input().split()))
m = int(input())
for _ in range(m):
maxValue = max(box)
maxIndex = box.index(maxValue)
box[maxIndex] -= 1
minValue = min(box)
minIndex = box.index(minValue)
box[minIndex] += 1
print(max(box) - min(box))
Reference
この問題について(清倉), 我々は、より多くの情報をここで見つけました https://velog.io/@lsj8706/창고-정리テキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol