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
- STUDYENGLISH
- readingbook
- 코테 대비
- nightroutine
- 쉬운 알고리즘 문제
- 완전탐색
- BFS
- 알고리즘
- 원서읽기
- SQL
- 프로그래머스
- englishbook
- dfs
- 백준
- D4
- 원서읽자
- 원서
- the midnight library
- sw expert
- 코딩테스트
- 직무면접
- 삼성
- PyQt
- English
- 코테 준비
- swexpertacademy
- MySQL
- sw expert academy
- 알고리즘 문제
- 코테
Archives
- Today
- Total
시나브로
[D3] 7087. 문제 제목 붙이기 본문
728x90
#include <iostream>
#include <string>
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
using namespace std;
int main(void) {
int test_number = 0;
scanf("%d", &test_number);
for (int q = 0; q < test_number; q++) {
int tittle_number = 0;
char buffer=0;
char tittle[1000][1000] ;
scanf("%d", &tittle_number);
for (int w = 0; w < tittle_number; w++) {
scanf("%s", tittle[w]);
}
int answer = 0;
int aphabel = 65;
for (;;aphabel++) {
int break_signal = 1;
for (int w = 0; w < tittle_number; w++) {
if (tittle[w][0] == aphabel) {
answer++;
break_signal = 0;
break;
}
}
if (break_signal == 1)
break;
}
printf("#%d %d\n", q+1,answer);
}
return 0;
}
728x90
'알고리즘 > SW Expert Academy' 카테고리의 다른 글
[D3] 5356. 의석이의 세로로 말해요 (0) | 2019.10.06 |
---|---|
[D3] 5431. 민석이의 과제 체크하기 (0) | 2019.10.06 |
[D4] 6719. 성수의 프로그래밍 강좌 시청 (0) | 2019.10.06 |
[D3] 6913. 동철이의 프로그래밍 대회 (0) | 2019.10.06 |
[D2] 2007. 패턴 마디의 길이 (0) | 2019.10.06 |
Comments