일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 코딩테스트
- dbms
- 백준
- 2주차 : ETL/CDC
- sql
- 마이데이터 개념과 원칙
- K-MOOC 3주차
- 대용량 데이터 이행
- 오라클
- 데이터 이행
- 대용량데이터 처리방안
- 대용량 데이터 Batch
- 코테
- EBH
- 마이데이터 비즈니스 모델
- GROUP함수
- K-MOOC 매치업 강좌
- 마이데이터 개념
- 고전압안전
- 1주차:메타데이터와 데이터표준화
- 계층적질의문
- 무결성제약조건
- ETCL
- 데이터 허브
- 대용량 데이터 처리
- K-MOOC
- 마이데이터 국민참여단
- 측정계
- 2022 마이데이터 국민참여단 후기
- 구름Level
- Today
- Total
목록코딩테스트/문제풀이 (8)
어제보다 더 나은 나
import sys N = int(input()) dot_list = [] for _ in range(N): dot = list(map(int, sys.stdin.readline().split())) dot_list.append(dot) # print(dot_list) dot_list.sort(key=lambda x: (x[0], x[1])) for j in range(N): print(dot_list[j][0], dot_list[j][1])
n = int(input()) for i in range(n) : message = input() dict = {} answer = 'OK' ch = 0 for j in range(len(message)) : if message[j] not in dict.keys(): dict[message[j]] = 1 else : dict[message[j]] += 1 #print(message[j], dict[message[j]]) if dict[message[j]] == 4: dict[message[j]] = 0 #print(j) if (dict[message[j]] > 0) & (dict[message[j]]%3 == 0): # print(dict[message[j]]) if j+1 < len(message) ..
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..