import java.util.Arrays;
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner kb = new Scanner(System.in);
int n = kb.nextInt();
int m = kb.nextInt();
int[] arr = new int[n];
for(int i=0; i<n; i++) {
arr[i] = kb.nextInt();
}
Arrays.sort(arr);
int lt = 0;
int rt = n-1;
int count = 0;
while(lt<rt) {
if(arr[lt]+arr[rt]>m) {
rt--;
}else if(arr[lt]+ arr[rt]<m) {
lt++;
}else {
count++;
lt++;
rt--;
}
}
System.out.println(count);
}
}
'공부기록 > 백준' 카테고리의 다른 글
[백준] 1157번 단어 공부 (0) | 2023.12.13 |
---|---|
[백준] 1253번 좋다 (0) | 2023.12.13 |
[백준] 10986번 나머지 합 (0) | 2023.12.11 |
[백준] 11866번 요세푸스 문제 0 (0) | 2023.12.05 |
[백준] 1715번 카드 정렬하기 (0) | 2023.11.22 |