Playground 172

[백준] 12891번

public class Main { static int[] checkArr; // 비밀번호를 체크할 배열 static int[] myArr; // 현재 상태 배열 static int checkSecret; // 몇 개의 문자가 충족하는지 확인할 변수 public static void main(String[] args) throws IOException { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); StringTokenizer st = new StringTokenizer(br.readLine()); int S = Integer.parseInt(st.nextToken()); // 문자열 크기 int P = Integer..