일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 2주차 : ETL/CDC
- 2022 마이데이터 국민참여단 후기
- 1주차:메타데이터와 데이터표준화
- GROUP함수
- 마이데이터 국민참여단
- EBH
- 마이데이터 개념
- 데이터 허브
- sql
- 대용량 데이터 처리
- ETCL
- 오라클
- 코딩테스트
- 무결성제약조건
- 구름Level
- 코테
- 구름코테
- dbms
- 엔저의 원인
- 데이터 이행
- 계층적질의문
- 마이데이터 개념과 원칙
- K-MOOC 3주차
- 대용량 데이터 Batch
- SQL-PLUS
- 마이데이터 비즈니스 모델
- K-MOOC 매치업 강좌
- 대용량 데이터 이행
- 백준
- 대용량데이터 처리방안
- Today
- Total
목록코테 (5)
어제보다 더 나은 나
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 =..
t = int(input()) test_case = [list(map(int, input().split())) for _ in range(2 * t)] for i in range(t): special_volume = 0 min_set = 0 maxi = max(test_case[2 * i + 1]) if maxi == 0: for j in range(len(test_case[2 * i + 1])): test_case[2 * i + 1][j] = test_case[2 * i + 1][j] + test_case[2 * i][1] min_set = min_set + 1 while True: if test_case[2 * i + 1][2] == 0: for j in range(len(test_case[2 * i..
t = int(input()) # 테스트케이스 수 s_list = [list(map(int, input().split())) for _ in range(t)] for i in range(t) : if (abs(s_list[i][0]) + abs(s_list[i][1]))
N = int(input()) M = N x = int(0) y = int(0) matrix = [[0] * 2 * N for _ in range(N)] # print(matrix) for i in range(N): if i % 4 == 0: if i == 0: for j in range(M): k = 2 * j matrix[x][y + k] = 1 x = i % 4 y = k M = M - 1 x = i % 4 y = k else: for j in range(1, M + 1): k = 2 * j matrix[x][y + k] = 1 x = x y = y + 2 * M M = M - 2 # print(f"{i} : {x}, {y}") elif i % 4 == 1: for j in range(1, M + ..