1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
n=int(input())
m,k=map(int, input().split())
cntPencil=m*k
ctpList=sorted( list(map(int,input().split())) ,reverse=True)
start=0
currentPencil=0
flag=0
for i in ctpList:
currentPencil+=i
start+=1
if currentPencil>= cntPencil:
print(start)
flag=1
break
if flag==0: print("STRESS")
|
cs |
반응형
'python-algorithm' 카테고리의 다른 글
백준 23234 The World Responds (0) | 2022.01.09 |
---|---|
백준 23827 수열 (Easy) (0) | 2022.01.04 |
백준 1235 학생 번호 (0) | 2022.01.01 |
백준 13171 A (0) | 2021.12.30 |
백준 17952 과제는 끝나지 않아! (0) | 2021.12.30 |
댓글