목록코딩 테스트 문제 풀이 (80)
꾸준히 합시다
https://www.acmicpc.net/problem/10808 10808번: 알파벳 개수 단어에 포함되어 있는 a의 개수, b의 개수, …, z의 개수를 공백으로 구분해서 출력한다. www.acmicpc.net 문제 유형: 구현, 문자열 # Solution 1 import sys word = sys.stdin.readline().strip() alpha = ['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z'] arr = [0] * 26 for i in range(26): for l in word: if alpha[i] i..
www.acmicpc.net/problem/5533 5533번: 유니크 첫째 줄에 참가자의 수 N이 주어진다. (2 ≤ N ≤ 200) 둘째 줄부터 N개 줄에는 각 플레이어가 1번째, 2번째, 3번째 게임에서 쓴 수가 공백으로 구분되어 주어진다. www.acmicpc.net 문제 유형: 수학, 구현, 사칙연산 # Solution 1 import sys input = sys.stdin.readline N = int(input()) firstgame = [] secondgame = [] thirdgame = [] answer = [0] * N for _ in range(N): first, second, third = map(int, input().split()) firstgame.append(first) s..
www.acmicpc.net/problem/10984 10984번: 내 학점을 구해줘 게으른 근우는 열심히 놀다가 문득, 자신의 학점 평균이 얼마일지 궁금해졌다. 학사시스템도 들어가기 귀찮아하는 근우를 위해 구해주도록 하자. www.acmicpc.net 문제 유형: 수학, 구현, 사칙연산 # Solution 1 import sys input = sys.stdin.readline for _ in range(int(input())): credit = 0 total = 0 for _ in range(int(input())): C, G = map(float, input().split()) credit += int(C) total += C * G GPA = total / credit print(credit, '%..
www.acmicpc.net/problem/10987 10987번: 모음의 개수 알파벳 소문자로만 이루어진 단어가 주어진다. 이때, 모음(a, e, i, o, u)의 개수를 출력하는 프로그램을 작성하시오. www.acmicpc.net 문제 유형: 구현, 문자열 # Solution 1 word = list(map(str, input())) vowels = ["a", "e", "i", "o", "u"] count = 0 for letter in word: if letter in vowels: count += 1 print(count)