5525번: IOIOIhttps://www.acmicpc.net/problem/5525 # 코드import java.io.*;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()); int m = Integer.parseInt(br.readLine()); String str = br.readLine(); int cnt = 0, ans = 0; ..