본문 바로가기

CS42

운영체제 스터디 2주차 - 프로세스의 이해 3. 1 Process Concept 프로세스(Process)란 프로세스란 실행 중인 프로그램. 스토리지에 있는 프로그램(instruction set)를 메모리에 로드하고, CPU가 fetch하여 execute한 것을 프로세스라고 부른다. (이때 메모리에 로드된 프로그램을 프로세스, program in execution이라고 한다) OS는 프로세스를 태스크의 기본 단위로 생각하며, CPU time, memory, files, I/O device 리소스를 효율적으로 사용하도록 돕는 역할을 수행. 프로세스의 메모리 구조 프로그램이 메모리에 로드 되어 프로세스가 되면 왼쪽 같은 메모리 구조를 가짐 - 코드 영역: 실행 코드가 저장 (CPU가 여기에서 명령을 가져와 처리) - 데이터 영역: 전역 변수, 정적 변.. 2023. 9. 26.
백준 1924 처음 푼 풀이 if elif else로 무식하게 조건을 걸었다 m, d = map(int, input().split()) def day_cal(total_date): tmp = total_date % 7 if tmp == 1: return 'MON' elif tmp == 2: return 'TUE' elif tmp == 3: return 'WED' elif tmp == 4: return 'THU' elif tmp == 5: return 'FRI' elif tmp == 6: return 'SAT' else: return 'SUN' day_list = [0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30] total_date = 0 + d for i in range(m): to.. 2023. 9. 25.
코드업 파이썬 100제 - 6027, 6028, 6029, 6030, 6031 int()를 활용하여 2, 8, 16진수 표현하기 int('0b101010', 2) # 2진수로 표현하기 int('0o52', 8) # 8진수로 표현하기 int('0x2a', 16) # 16진수로 표현하기 # 결과 모두 42 10진수(정수형)를 16진수로 출력하기 n = int(input()) # 각각 16진수를 소문자 형태, 대문자 형태로 출력 print('결과: %x, %X' %(n, n)) # 결과: ff, FF 16진수로 입력받아 8진수로 표현하기 n = int(input(), 16) # 입력받은 것을 16진수로 변환하기 print('%o' %n) # 8진수로 print 아스키 코드 변환하기 ord(): 특정한 한 문자를 아스키 코드로 변환 chr(): 아스키 코드 값을 문자로 변환 print(o.. 2023. 9. 25.
백준 11721, 2742 11721 처음 풀이 mytext = input() x = len(mytext) // 10 y = len(mytext) % 10 for i in range(x): print(mytext[0+i*10:10+i*10]) print(mytext[x*10:]) 하지만 이후 좀 더 공부해보니 나머지(y)가 0인 경우가 있을 수 있음. 따라서 if y로 한 번 더 처리해줘야 함 mytext = input() x = len(mytext) // 10 y = len(mytext) % 10 for i in range(x): print(mytext[0+i*10:10+i*10]) if y: print(mytext[x*10:]) 추가 아래와 같이 range를 활용해 푸는 방법도 있었음. n = input() for i in r.. 2023. 9. 22.