코딩테스트 (76) 썸네일형 리스트형 백준 10867번 중복 빼고 정렬하기 python 파이썬 10867번: 중복 빼고 정렬하기 첫째 줄에 수의 개수 N (1 ≤ N ≤ 100,000)이 주어진다. 둘째에는 숫자가 주어진다. 이 수는 절댓값이 1,000보다 작거나 같은 정수이다. www.acmicpc.net a = int(input()) li = set(map(int, input().split())) li = list(li) li.sort() print(*li) 백준 1181번 단어 정렬 python 파이썬 1181번: 단어 정렬 첫째 줄에 단어의 개수 N이 주어진다. (1 ≤ N ≤ 20,000) 둘째 줄부터 N개의 줄에 걸쳐 알파벳 소문자로 이루어진 단어가 한 줄에 하나씩 주어진다. 주어지는 문자열의 길이는 50을 넘지 않는다. www.acmicpc.net import sys n = int(sys.stdin.readline()) word = [] for i in range(n): word.append(sys.stdin.readline().strip()) word = list(set(word)) word.sort() word.sort(key=len) for i in word: print(i) 백준 10809번 알파벳 찾기 python 파이썬 10809번: 알파벳 찾기 각각의 알파벳에 대해서, a가 처음 등장하는 위치, b가 처음 등장하는 위치, ... z가 처음 등장하는 위치를 공백으로 구분해서 출력한다. 만약, 어떤 알파벳이 단어에 포함되어 있지 않다면 -1을 출 www.acmicpc.net s = input() alphabet = list(range(97, 123)) for i in alphabet: print(s.find(chr(i)), end = ' ') 백준 1759번 암호 만들기 python 파이썬 1759번: 암호 만들기 첫째 줄에 두 정수 L, C가 주어진다. (3 ≤ L ≤ C ≤ 15) 다음 줄에는 C개의 문자들이 공백으로 구분되어 주어진다. 주어지는 문자들은 알파벳 소문자이며, 중복되는 것은 없다. www.acmicpc.net from itertools import combinations l, c = map(int, input().split()) a = sorted(input().split()) for s in combinations(a, l): pw = [] vowel, consonant = 0, 0 for i in range(len(s)): if s[i] in 'aeiou': vowel += 1 else: consonant += 1 pw += s[i] if vowel >= 1 and c.. 이전 1 ··· 7 8 9 10 다음