분해합1 [알고리즘/백준] 2231 분해합(자바) 문제 https://www.acmicpc.net/problem/2231 풀이 코드 import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; public class Main { public static void main(String[] args) throws IOException { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); int n = Integer.parseInt(br.readLine()); for (int i = 1; i < n; i++) { int sum = i; //분해합 int temp = i; /.. 2021. 9. 25. 이전 1 다음