오늘 한 일 알고리즘 분산처리 저항 물병 큰 수 A + B 함께 자라기 (63%) 더 시스템 읽기 (25%) 이코테 삽입정렬 (50%) TDD 강의...(?) 알고리즘 물병 import java.util.Scanner; public class b1052 { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int N = sc.nextInt(); int K = sc.nextInt(); int count; int result = 0; while (true) { count = 0; int copyN = N; while (copyN != 0) { if (copyN % 2 == 1) { count++; } copyN /= 2..