https://www.acmicpc.net/problem/1940
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
import sys
input = sys.stdin.readline
n = int(input())
m = int(input())
ingredient = list(map(int, input().split()))
ingredient.sort()
i = 0
j = n-1
count = 0
while i < j:
sum = ingredient[i] + ingredient[j]
if sum < m:
i+=1
elif sum > m:
j-=1
else:
i+=1
j-=1
count+=1
print(count)
|
cs |
'백준' 카테고리의 다른 글
백준 12891: DNA 비밀번호 (0) | 2023.01.28 |
---|---|
백준 1253: 좋다 (0) | 2023.01.27 |
백준 2018: 수들의 합 5 (0) | 2023.01.27 |
백준 11660: 구간 합 구하기 5 (1) | 2023.01.20 |
백준 11659번: 구간 합 구하기 4 (0) | 2023.01.19 |