지나가던 개발자
[Python] 백준 6159번(코스튬 파티) 문제 풀이 본문
import sys
n, s = map(int,sys.stdin.readline().split())
cows = [int(sys.stdin.readline()) for x in range(n)]
ans = 0
while True:
try:
i = cows[0]
del cows[0]
except:
break
for j in cows:
if i + j <= s:
ans += 1
print(ans)
시간 초과 때문에 PyPy3로 제출해야 풀린다.
'PS > Python' 카테고리의 다른 글
[Python] 백준 13241번(최소공배수) 문제 풀이 (0) | 2022.11.22 |
---|---|
[Python] 백준 16212번(정열적인 정렬) 문제 풀이 (0) | 2022.11.20 |
[Python] 백준 11292번(키 큰 사람) 문제 풀이 (0) | 2022.11.18 |
[Python] 백준 14912번(숫자 빈도수) 문제 풀이 (0) | 2022.11.18 |
[Python] 백준 13706번(제곱근) 문제 풀이 (0) | 2022.11.16 |
Comments