본문 바로가기
Beakjoon&프로그래머스/파이썬

[백준/파이썬] 6159번 코스튬 파티

by 현장 2022. 5. 10.

-Code

n, s = map(int, input().split())
cow = sorted([int(input()) for _ in range(n)])
start, end = 0, 1
cnt = 0
while start < n and end < n:

    total = cow[start] + cow[end]
    if total <= s:
        cnt += 1
    end += 1
    if end >= n:
        start += 1
        end = start + 1

print(cnt)

파이썬으로 어떻게 해도 안돼서 pypy3로 제출하니 통과되었습니다.