문제: https://www.acmicpc.net/problem/1182 조건TimeLimit = 2s1크기가 1 이상의 부분수열 중, 합이 S가 되어야 함 풀이백트래킹시작값을 바꿔가며 전체를 탐색해본다 코드import java.io.*;import java.util.*;public class Main { static StringTokenizer st; static int n; static int s; static int[] arr; static int cnt; public static void main(String[] args) throws IOException { // input BufferedReader br = new BufferedReader(new InputStreamReader(Sy..