Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- GROUP함수
- 무결성제약조건
- 대용량 데이터 Batch
- 마이데이터 개념과 원칙
- 데이터 이행
- 마이데이터 개념
- dbms
- 오라클
- 마이데이터 국민참여단
- EBH
- K-MOOC 3주차
- 코테
- ETCL
- SQL-PLUS
- 코딩테스트
- 엔저의 원인
- 대용량 데이터 이행
- K-MOOC 매치업 강좌
- 대용량 데이터 처리
- 계층적질의문
- 구름코테
- 2주차 : ETL/CDC
- 대용량데이터 처리방안
- 백준
- sql
- 2022 마이데이터 국민참여단 후기
- 데이터 허브
- 구름Level
- 마이데이터 비즈니스 모델
- 1주차:메타데이터와 데이터표준화
Archives
- Today
- Total
어제보다 더 나은 나
백준_1316번_그룹단어체커 본문
n = int(input())
a = list()
for i in range(n):
word = input()
a.append(word)
non_sequence = 0
non_word = 0
for i in range(n):
non_sequence = 0
word_length = len(a[i])
for j in range(word_length):
temp = a[i][j]
temp_i = j
for k in range(j+1, word_length):
if a[i][k] == temp and k - temp_i == 1:
temp_i = k
elif a[i][k] == temp and temp_i - k != 1:
non_sequence = non_sequence + 1
break
if non_sequence >= 1 :
non_word = non_word + 1
print(n - non_word)
'코딩테스트 > 문제풀이' 카테고리의 다른 글
백준_11650번_좌표정렬하기 (0) | 2022.07.11 |
---|---|
백준_9324번_진짜메시지 (0) | 2022.07.11 |
백준_1075번_나누기 (0) | 2022.05.12 |
구름LEVEL_화학물질 (0) | 2022.05.10 |
구름LEVEL_파도 센서(별1개)_답 (0) | 2022.05.06 |
Comments