백준 2798 JAVA
acmicpc.net/status?user_id=sunnyleewin&problem_id=2798&from_mine=1
블랙잭 문제를 풀었다.
package BlackJack;
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner input = new Scanner(System.in);
int N = input.nextInt();
int M = input.nextInt();
int result = 0;
int[] ar = new int[N];
for(int i = 0; i< N; i++)
ar[i] = input.nextInt();
for(int i = 0; i < N - 2; i++) {
for(int j = i + 1; j < N -1; j++) {
for(int k = j + 1; k < N; k++) {
int temp = ar[i] + ar[j] + ar[k];
if(temp <= M) {
result = temp;
}
else if(result < M && temp < M) {
result = temp;
}
}
}
}
System.out.println(result);
}
Author And Source
이 문제에 관하여(백준 2798 JAVA), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@sunnyinsummer/백준-2798-JAVA저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)