728x90
https://www.acmicpc.net/problem/3273
package BAEKJOON.Silver.Ⅲ;
import java.util.Arrays;
import java.util.Scanner;
public class NO3273 {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int n = sc.nextInt();
int [] arr = new int [n];
for (int i = 0; i < n; i++) {
arr[i] = sc.nextInt();
}
int x = sc.nextInt();
Arrays.sort(arr);
int start = 0;
int end = n-1;
int count = 0;
while (start < end) {
if( arr[start] + arr[end] == x ) {
count ++;
start ++;
end --;
} else {
if ( arr[start] + arr[end] < x) {
start ++;
} else {
end --;
}
}
}
System.out.println(count);
}
}
728x90
'Algorithm & SQL > BAEKJOON' 카테고리의 다른 글
백준 JAVA 10815 숫자 카드 (0) | 2022.08.19 |
---|---|
백준 JAVA 2003 수들의 합2 (0) | 2022.08.17 |
백준 JAVA 11728 배열 합치기 (0) | 2022.08.16 |
백준 JAVA 2018 수들의 합5 (0) | 2022.08.15 |
백준 JAVA 12845 모두의 마블 (0) | 2022.08.14 |
댓글