본문 바로가기
알고리즘/소스코드

KOREATECH 1107: 실습시험 연습문제 - 모음 문자 수

by cjw.git 2020. 12. 8.

 

Link : judge.koreatech.ac.kr/problem.php?id=1107


Python

더보기

 

1
2
3
4
5
6
7
8
9
10
11
12
13
from sys import stdin
 
quest_cnt = int(stdin.readline().strip())
 
vowel = ['a''i''e''o''u']
 
for _ in range(quest_cnt):
    data = [s for s in stdin.readline().strip()]
    counter = 0
    for s in data:
        if s in vowel:
            counter+=1
    print(counter)
cs

 


 

 

 

cjw.git@gmail.com

'알고리즘 > 소스코드' 카테고리의 다른 글

KOREATECH 1011: 징검다리  (0) 2020.12.09
KOREATECH 1010: 접두 소수  (0) 2020.12.09
KOREATECH 1007: 유일한 수  (0) 2020.12.08
KOREATECH 1004: 뒤집어 더하기  (0) 2020.12.08
KOREATECH 1003: 0을 만들자 - Small  (0) 2020.12.08

댓글