336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.
백준알고리즘
https://www.acmicpc.net/problem/2309
모든 합을 구한 다음에 for문 2번을 돌려 모든 합에서 100을 뺀 값과 같으면 결과를 출력한다.
import java.util.Arrays; import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner scan = new Scanner(System.in); int total = 0; int[] array = new int[9]; boolean check = false; for(int i=0; i < array.length; i++) { int input = Integer.parseInt(scan.nextLine().trim()); array[i] = input; total += input; } Arrays.sort(array); for(int i=0; i < 9; i++) { if(check) break; for(int j=0; j < 9; j++) { if(i == j) { continue; } int a = array[i]; int b = array[j]; if(total - a - b == 100) { array[i] = 0; array[j] = 0; check = true; break; } } } for(int i=0; i < 9; i++) { if(array[i] != 0) { System.out.println(array[i]); } } } }
'알고리즘 및 자료구조 > 문제' 카테고리의 다른 글
백준알고리즘 1924번 2007년 (0) | 2018.05.07 |
---|---|
백준알고리즘 2163번 초콜릿 자르기 (0) | 2018.05.07 |
백준알고리즘 11727번 2×n 타일링 2 (0) | 2018.05.07 |
백준알고리즘 7510번 고급 수학 (0) | 2018.05.03 |
백준알고리즘 1157번 단어 공부 (0) | 2018.05.02 |