Notice
Recent Posts
Recent Comments
Link
«   2024/11   »
1 2
3 4 5 6 7 8 9
10 11 12 13 14 15 16
17 18 19 20 21 22 23
24 25 26 27 28 29 30
Tags
more
Archives
Today
Total
관리 메뉴

코드와이

[SW Expert Academy] 4789. 성공적인 공연 기획 본문

SW_Expert

[SW Expert Academy] 4789. 성공적인 공연 기획

코드와이 2021. 2. 4. 17:53

 

문제링크

swexpertacademy.com/main/code/problem/problemDetail.do?problemLevel=3&contestProbId=AWS2dSgKA8MDFAVT&categoryId=AWS2dSgKA8MDFAVT&categoryType=CODE&problemTitle=&orderBy=PASS_RATE&selectCodeLang=JAVA&select-1=3&pageSize=10&pageIndex=9

 

SW Expert Academy

SW 프로그래밍 역량 강화에 도움이 되는 다양한 학습 컨텐츠를 확인하세요!

swexpertacademy.com

 

package D3;


import java.util.Scanner;

public class 성공적인_공연_기획 {
	public static void main(String[] args) {
		
		Scanner sc = new Scanner(System.in);
		StringBuilder sb = new StringBuilder();
		
		int T = sc.nextInt();
		
		for (int tc = 1 ; tc <= T ; tc++) {
			
			sb.append("#" + tc + " ");
			
			String s = sc.next();
			int[] arr = new int[s.length()];
			
			for (int i = 0 ; i < s.length(); i++) {
				arr[i] = s.charAt(i) - '0';
			}

			int ans = 0;
			int total = arr[0];		// 일어난 사람 수
			
			for( int i = 1 ; i < arr.length ; i++) {
				if (arr[i] == 0) continue;
				if (total < i) {
					ans += i - total;
					total = i;
				}
				total += arr[i];
				
			}
			
			sb.append(ans);
			System.out.println(sb);
			sb.setLength(0);
			
		}
	}
}