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
- MySQL
- sw expert
- 코테 대비
- 원서읽기
- 코테 준비
- 백준
- 알고리즘 문제
- 원서
- 원서읽자
- dfs
- SQL
- nightroutine
- 완전탐색
- 프로그래머스
- STUDYENGLISH
- readingbook
- BFS
- 삼성
- D4
- sw expert academy
- englishbook
- 코테
- swexpertacademy
- 알고리즘
- English
- 직무면접
- the midnight library
- PyQt
- 코딩테스트
- 쉬운 알고리즘 문제
Archives
- Today
- Total
목록의석이의 세로로 말해요 (1)
시나브로
[D3] 5356. 의석이의 세로로 말해요
#include #include #include #include #include using namespace std; int main(void) { int test_case = 0; scanf("%d", &test_case); for (int i = 0; i < test_case; i++) { char words[5][16] = { 0 }; for (int j = 0; j < 5; j++) { scanf("%s", &words[j]); } printf("#%d ", i + 1); for (int n = 0;n
알고리즘/SW Expert Academy
2019. 10. 6. 10:57