티스토리 뷰
반응형
https://www.acmicpc.net/problem/10808
python
S = input()
SS = [0 for i in range(26)]
for i in range(len(S)):
SS[ord(S[i])-97]+=1
print(str(SS).replace(',', '')[1:-1])
c
#include <stdio.h>
#include <string.h>
int main(){
char str[100] = " ";
int alpha[26] = {0, }, i, j, Length = 0;
scanf("%s", str);
Length = strlen(str);
for(i = 0; i < Length; i++)
alpha[str[i] - 97]++;
for(j = 0; j < 26; j++)
printf("%d ", alpha[j]);
}
'C, C++ > Baekjoon Online Judge' 카테고리의 다른 글
Baekjoon 백준 10172번 개 (0) | 2016.04.30 |
---|---|
Baekjoon 백준 10953번 A+B (0) | 2016.04.30 |
Baekjoon 백준 5543번 상근날드 (0) | 2016.04.30 |
Baekjoon 백준 2744번 대소문자 바꾸기 (0) | 2016.04.30 |
Baekjoon 백준 10474번 분수좋아해? (0) | 2016.04.29 |
댓글
티스토리 방명록
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
Blog is powered by
Tistory / Designed by
Tistory
Contact: j0n9m1n1@gmail.com
Contact: j0n9m1n1@gmail.com