250x250
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- dfs
- sw expert academy
- STUDYENGLISH
- englishbook
- 코테 대비
- readingbook
- 원서읽기
- 알고리즘
- SQL
- nightroutine
- swexpertacademy
- 코테 준비
- 원서읽자
- BFS
- 백준
- 완전탐색
- 프로그래머스
- MySQL
- 알고리즘 문제
- 삼성
- D4
- 코딩테스트
- the midnight library
- 쉬운 알고리즘 문제
- sw expert
- 원서
- English
- 코테
- PyQt
- 직무면접
Archives
- Today
- Total
목록5432 (1)
시나브로
[D4] 5432. 쇠막대기 자르기
#include #include #include #include #include using namespace std; int main(void) { int test_case = 0; char buffer = 0; scanf("%d", &test_case); scanf("%c", &buffer); for (int i = 0; i < test_case; i++) { char words[100010] = { 0 }; for (int j=0;;j++) { scanf("%c", &words[j]); if (words[j] == '\n') break; } char before = 0; int open = 0; int number = 0; for (int j = 0;; j++) { if (words[j] == '\n..
알고리즘/SW Expert Academy
2019. 10. 6. 10:58