[백준] #1141 접두사 python
2023. 5. 11. 14:28
https://www.acmicpc.net/problem/1141
📕 설명 📕
python list를 길이별로 정렬을 사용하였다.
그리고 해당 값들에 대해 접두사를 조사했다.
🧑🏻💻 나의 풀이 🧑🏻💻
import sys
N = int(input())
words = [(sys.stdin.readline()).rstrip() for _ in range(N)]
words.sort(key=len)
src = 0
for i in range(N):
nTrue = False
for j in range(i + 1, N):
if words[i] == words[j][0:len(words[i])]:
nTrue = True
break
if not nTrue:
src += 1
print(src)
'Programming > Algorithm' 카테고리의 다른 글
[백준] #1821 수들의 합 6 python (1) | 2023.05.15 |
---|---|
[백준] #1286 부분 직사각형 python (0) | 2023.05.12 |
[백준] #5046 전국 대학생 프로그래밍 대회 동아리 연합 python (0) | 2023.05.10 |
[백준] #2669 직사각형 네개의 합집합의 면적 구하기 python (0) | 2023.05.09 |
[백준] #1535 안녕 python (0) | 2023.05.08 |