전체 글

빙글뱅글 돌아가는 IT 세상
✅ 문제 61A company is developing a two-tier web application on AWS. The company's developers have deployed the application on an Amazon EC2 instance that connects directly to a backend Amazon RDS database. The company must not hardcode database credentials in the application. The company must also implement a solution to automatically rotate the database credentials on a regular basis.Which soluti..
✅ 문제 41A company's application integrates with multiple software-as-a-service (SaaS) sources for data collection. The company runs Amazon EC2 instances to receive the data and to upload the data to an Amazon S3 bucket for analysis. The same EC2 instance that receives and uploads the data also sends a notification to the user when an upload is complete. The company has noticed slow application pe..
✅ 문제 21An ecommerce company wants to launch a one-deal-a-day website on AWS. Each day will feature exactly one product on sale for a period of 24 hours. The company wants to be able to handle millions of requests each hour with millisecond latency during peak hours.Which solution will meet these requirements with the LEAST operational overhead?전자 상거래 회사는 AWS에서 하루 1회 웹 사이트를 시작하려고 합니다. 매일 24시간 동안 ..
✅ 문제https://www.acmicpc.net/problem/1085 문제한수는 지금 (x, y)에 있다. 직사각형은 각 변이 좌표축에 평행하고, 왼쪽 아래 꼭짓점은 (0, 0), 오른쪽 위 꼭짓점은 (w, h)에 있다. 직사각형의 경계선까지 가는 거리의 최솟값을 구하는 프로그램을 작성하시오​입력첫째 줄에 x, y, w, h가 주어진다​출력첫째 줄에 문제의 정답을 출력한다.​제한1 ≤ w, h ≤ 1,0001 ≤ x ≤ w-11 ≤ y ≤ h-1x, y, w, h는 정수​ ✅ 제출 답안x, y, w, h = map(int, input().split())print(min(x, y, w-x, h-y))   ✅ 해설 및 풀이과정map 함수 : map(function, iterable) - 함수 : def문..
✅ 문제https://www.acmicpc.net/problem/1259 문제어떤 단어를 뒤에서부터 읽어도 똑같다면 그 단어를 팰린드롬이라고 한다. 'radar', 'sees'는 팰린드롬이다.수도 팰린드롬으로 취급할 수 있다. 수의 숫자들을 뒤에서부터 읽어도 같다면 그 수는 팰린드롬수다. 121, 12421 등은 팰린드롬수다. 123, 1231은 뒤에서부터 읽으면 다르므로 팰린드롬수가 아니다. 또한 10도 팰린드롬수가 아닌데, 앞에 무의미한 0이 올 수 있다면 010이 되어 팰린드롬수로 취급할 수도 있지만, 특별히 이번 문제에서는 무의미한 0이 앞에 올 수 없다고 하자.​입력입력은 여러 개의 테스트 케이스로 이루어져 있으며, 각 줄마다 1 이상 99999 이하의 정수가 주어진다. 입력의 마지막 줄에는 0..
✅ 문제1A company collects data for temperature, humidity, and atmospheric pressure in cities across multiple continents. The average volume of data that the company collects from each site daily is 500 GB. Each site has a high-speed Internet connection.The company wants to aggregate the data from all these global sites as quickly as possible in a single Amazon S3 bucket. The solution must minimize..
udemy 강의를 기반으로 정리한 자료입니다.https://www.udemy.com/course/best-aws-certified-solutions-architect-associate/https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/spot-requests.html Work with Spot Instances - Amazon Elastic Compute CloudWork with Spot Instances To use Spot Instances, you create a Spot Instance request that includes the desired number of instances, the instance type, and the Availability..
udemy 강의를 기반으로 정리한 자료입니다.https://www.udemy.com/course/best-aws-certified-solutions-architect-associate/ ✅ SummaryUsers: mapped to a physical user, has a password for AWS ConsoleGroups: contains users onlyPolicies: JSON document that outlines permissions for users or groupsRoles: for EC2 instances or AWS servicesSecurity: MFA + Password PolicyAWS CLI: manage your AWS services using the command-li..
jamjamjami
잼잼이의 빙글뱅글 세상살이