자바볼모으기 썸네일형 리스트형 3427 : 볼 모으기(balls) import java.util.Scanner; public class Main { public static void main(String[] args) throws IOException { // TODO Auto-generated method stub Scanner scan = new Scanner(System.in); int n; String arr; int i, j; n = scan.nextInt(); arr= scan.next(); int red = 0, blue = 0; int rs = 0, bs = 0; int re=0,be=0; for (i = 0; i < n; i++) { if (arr.charAt(i) == 'R') { red++; } else { blue++; } } for (i = 0;.. 더보기 이전 1 다음