일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 대용량 데이터 이행
- sql
- 1주차:메타데이터와 데이터표준화
- 오라클
- 데이터 허브
- K-MOOC 매치업 강좌
- 데이터 이행
- 측정계
- ETCL
- 대용량데이터 처리방안
- 마이데이터 개념과 원칙
- GROUP함수
- 코테
- K-MOOC 3주차
- 구름Level
- 백준
- EBH
- 2022 마이데이터 국민참여단 후기
- 무결성제약조건
- 계층적질의문
- 마이데이터 국민참여단
- K-MOOC
- 코딩테스트
- 고전압안전
- 대용량 데이터 Batch
- 대용량 데이터 처리
- 마이데이터 개념
- 2주차 : ETL/CDC
- 마이데이터 비즈니스 모델
- dbms
- Today
- Total
목록백준 (2)
어제보다 더 나은 나
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_sequ..
import math N = int(input()) F = int(input()) sol = N % F # 나머지 구하기 i = 0 temp_N = N while True: if temp_N//10 > 0: temp_N = temp_N//10 i += 1 else: break p = math.trunc(N / (100)) # 100의 자리숫자~ if math.trunc((N - sol + F)/100) == p: temp_N = N - sol + F # N에서 나머지를 빼줌. 즉 나누어 떨어짐 else : temp_N = N - sol for i in range(100//F): if math.trunc((temp_N-F)/100) == p: min_sol = (temp_N-F) % 100 temp_N =..