일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
- 개발자
- 인덱스
- index
- db
- 니가 참 좋아
- SQL 처리
- 말 더듬
- 오라클 아키텍처
- 기타
- 장범준
- oracle
- 스위트라떼
- 핑거스타일
- 신입
- I'm fine thank you
- 슬픔의 후에
- DBMS 구성요소
- IT
- 천공의 시간
- 러블리즈
- 레이디스코드
- 아이유
- 봄 사랑 벚꽃 말고
- 데이터베이스
- 오라클
- 악보
- DBMS
- nginx
- 6학년 8반 1분단
- Inside Of Me
목록공대인/Codeforce (2)
취미로 음악을 하는 개발자
import java.io.BufferedReader; import java.io.InputStreamReader; import java.util.StringTokenizer; public class Main { public static void main(String[] args) { BufferedReader bf = new BufferedReader(new InputStreamReader(System.in)); try { String temp = bf.readLine(); int array[] = new int[Integer.parseInt(temp)+1]; String arr = bf.readLine(); StringTokenizer st = new StringTokenizer(arr); int i..
import java.util.*; public class Main { public static void main(String[] args) { // TODO Auto-generated method stub Scanner in = new Scanner(System.in); int n = in.nextInt(); in.nextLine(); String str = in.nextLine(); int count = 0; for (int i = 0; i < str.length(); i++) { if (str.charAt(i) == '+') count++; else { if (count != 0) count--; } } System.out.println(count); } } http://codeforces.com/..