백준[JAVA] 2231.분해합 - 자바


백준[JAVA] 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()); System.out.println(constructor(N)); } public static int constructor(int num) { int result = 0; for (..


원문링크 : 백준[JAVA] 2231.분해합 - 자바