본문 바로가기
728x90
반응형

전체 글163

AWS AWSOME DAY 2023 온라인 컨퍼런스 후기 AWS 클라우드 소개 클라우드란? 인터넷을 통해서 원격지에 있는 IT리소스를 이용하는 서비스. 인프라를 하드웨어가 아닌 소프트웨어라고 생각하고 사용할 수 있다. 클라우드 컴퓨팅의 여섯 가지 장점 1. 선행 비용을 가변 비용으로 대체 2. 속도 및 민첩성 향상 3. 규모의 경제로 얻게 되는 이점 4. 데이터 센터 운영 및 유지관리에 비용 투자 불필요 5. 용량 추정 불필요 6. 몇 분 만에 전 세계에 배포 리전 선택 기준 1. 데이터 거버넌스 고려 2. 지연시간 고려 3. 서비스 제공 유무 AWS 클라우드 핵심 서비스 소개: 컴퓨팅 세 가지의 컴퓨팅을 제공한다. Amazon EC2 크기 조정 가능한 컴퓨팅 용량 컴퓨팅 리소스 완전 제어 새로운 서버 인스턴스 확보 및 부팅 시간 단축 Amazon EC2의 이.. 2023. 6. 8.
Spring boot 3.0 + S3 서비스 적용 By Spring Cloud for AWS Spring Cloud AWS Spring Cloud for AWS 공식문서 https://spring.io/projects/spring-cloud-aws Spring Cloud for Amazon Web Services Spring Cloud for Amazon Web Services is a community-run project. The website is https://awspring.io/ and the source repository is located at https://github.com/awspring/spring-cloud-aws. Spring Cloud for Amazon Web Services, eases the integration with host spring.io 공식문서에 들.. 2023. 6. 6.
AWS S3, 버킷 Bucket, 객체 Object, 버전 관리, 요금 및 기본 가이드 What is AWS S3? 공식문서에는 AWS S3를 이렇게 소개하고 있다. Amazon Simple Storage Service (Amazon S3) is an object storage service that offers industry-leading scalability, data availability, security, and performance. Scalability 확장성, Data Availabilty 데이터 가용성, Security 보안, Performance 성능을 제공하는 객체 스토리지 서비스. S3 공식문서 https://docs.aws.amazon.com/AmazonS3/latest/userguide/Welcome.html What is Amazon S3? - Amazon Si.. 2023. 6. 4.
나동빈 유튜브 예제 문제 *업데이트 중 그리디 알고리즘 1이 될 때까지 import sys a, b = map(int, sys.stdin.readline().split()) cnt = 0 while True: if a % b != 0: a = a - 1 cnt += 1 else: a = a // b cnt += 1 if a == 1: break print(cnt) 곱하기 혹은 더하기 import sys word = sys.stdin.readline() answer = int(word[0]) for i in range(1, len(word)-1): if int(word[i-1]) a or nx < 1 or ny < 1: continue x, y = nx, ny print(x, y) x, y축이 반대임. 2023. 6. 2.
백준 2559(시간 초과 나기 쉬운 문제) 처음 시도한 코드(시간 초과) a, b = map(int, input().split()) temp = list(map(int, input().split())) number = [] num = 0 for i in range(len(temp)): for j in range(i, i + b): if i + b > a: break num += temp[j] number.append(num) num = 0 number.pop(a-1) print(max(number)) 두 번째 시도한 코드(시간 초과) import sys a, b = map(int, sys.stdin.readline().split()) temp = list(map(int, sys.stdin.readline().rstrip().split())) ma.. 2023. 6. 2.
백준 12865 코드 n, m = map(int, input().split()) product = [list(map(int, input().split())) for _ in range(n)] # 가치 계산하기 values = [0] * n # 무게 계산하기 weights = [0] * n # 무게, 가치 값 초기화 for i in range(n): weights[i] = product[i][0] values[i] = product[i][1] # dp def dp(n, m, weights, values): dp = [[0] * (m+1) for _ in range(n+1)] for i in range(1, n+1): weight = weights[i-1] value = values[i-1] for j in range(1,.. 2023. 5. 24.
728x90
반응형