목록2024/11 (12)
또 뭐하지
풀이from AES import AES_implementedimport os# For real AES without modification, this challenge is unsolvable with modern technology.# But let's remove a step.ret = lambda x: NoneAES_implemented._sub_bytes = retAES_implemented._sub_bytes_inv = ret# Will it make a difference?secret = os.urandom(16)key = os.urandom(16)flag = open("flag.txt", "r").read()cipher = AES_implemented(key)secret_enc = ciphe..
■ solve codeT = int(input())for _ in range(T): k = int(input()) n = int(input()) resident = [i for i in range(1,n+1)] # 0층 거주 인원 초기화 #print(resident) for x in range(k): #k층 tmp = [] for y in range(n): # 1~n호실 tmp.append(sum(resident[:y+1])) #k층 거주 인원 리스트 생성 resident = tmp.copy() #resident를 k층 거주 인원으로 변경 #print(resident) print(resident[..
섹션 4. 로드밸런싱을 적용한 워드프레스 웹 서비스 구축프로젝트 네트워크 구성(강의자료 어디에 있는거지..?) VPC 10.0.0.0/16- Public subnet1 10.0.0.0/24 → wordpress1- Public subnet2 10.0.1.0/24 → wordpress2 - 로드밸런싱- NAT gateway - Private subnet1 10.0.3.0/24 → private server- Private subnet2 10.0.5.0/24 → database (MySQL 8.0) 실습 단계[RDS 데이터베이스 생성]1. VPC (Cloud_Infra_VPC)구성2. 서브넷 4개 구성3. 인스턴스 (wordpress_web1) 구성4. RDS 구성 (관리되는 관계형 데이터베이스)4-1...
■ 제출코드x, y = map(int, input().split())for i in range(min(x,y),0,-1): if (x%i==0) and (y%i==0): print(i) # 최대공약수 print(int((x*y)/i)) #최소공배수 break ■ 유클리드 호제법 사용하여 최대공약수 구하는 코드def gcd(a,b): if b == 0 : return a else: return gcd(b, a%b) def divisor(x): div = [] for i in range(x//2): if x % (i+1) == 0: div.append((i+1)) ..