본문 바로가기
SMALL

분류 전체보기139

cmd창에서 D드라이브로 가는 방법 D드라이브로 옮기고 싶을 때에는 경로 이동 명령어인 cd를 쓰면 안된다. 바로 D:를 입력해서 이동 가능!! 2021. 1. 25.
05-3. 열거 타입 열거 타입(enumeration type)이란? 한정된 값인 열거 상수(enumeration constant)중에서 하나의 상수를 저장하는 타입 예를 들어, 월,화,수,목,금,토,일이라는 7개의 열거 상수가 있으면 이를 저장하는 일주일이라는 열거 타입이 있다. 다음 그림에서, Week가 열거 타입이며, 변수로도 선언이 가능하다. Week today; 선언된 변수에 저장할 수 있는 것은 Week에 선언된 7개의 열거 상수 중 하나이다. today = Week.FRIDAY; 열거 타입을 선언하기 위해서는 먼저 열거 타입의 이름을 정하고 해당 이름으로 소스파일을 생성해야 함. 관례적으로 열거 타입 이름은 첫 글자를 대문자로, 나머지는 소문자로 구성 만약 여러 단어로 구성된 이름이라면 각 단어의 첫 글자는 대문.. 2021. 1. 24.
[SW Expert Academy] 달팽이 숫자 *문제의 저작권은 SW Expert에 있습니다. 문제 링크 : https://swexpertacademy.com/main/code/problem/problemDetail.do?contestProbId=AV5PobmqAPoDFAUq&categoryId=AV5PobmqAPoDFAUq&categoryType=CODE T = int(input()) for test_case in range(1, T + 1): test = int(input()) print("#{}".format(test_case)) a = [[0 for j in range(test)] for i in range(test)] x, row, col, sw = 1, 0, -1, 0 while test > 0: for i in range(sw, test.. 2021. 1. 22.
[SW Expert Academy] 시각 덧셈 *문제의 저작권은 SW Expert에 있습니다. 문제 링크 : https://swexpertacademy.com/main/code/problem/problemDetail.do?contestProbId=AV5PttaaAZIDFAUq&categoryId=AV5PttaaAZIDFAUq&categoryType=CODE T = int(input()) for test_case in range(1, T + 1): hour1, minute1, hour2, minute2 = map(int, input().split(" ")) time = (hour1+hour2) * 60 + minute1 + minute2 print("#{} {} {}".format(test_case, (time // 60 if time // 60 < .. 2021. 1. 21.
[SW Expert Academy] 초심자의 회문 검사 *문제의 저작권은 SW Expert에 있습니다. 문제 링크 : https://swexpertacademy.com/main/code/problem/problemDetail.do?contestProbId=AV5PyTLqAf4DFAUq&categoryId=AV5PyTLqAf4DFAUq&categoryType=CODE T = int(input()) for test_case in range(1, T + 1): test = list(map(str, input().split())) test = ('').join(test) a = 0 for i in range(0,int(len(test)/2)) : a = (lambda x : 1 if x[i] == x[len(x)-1-i] else 0)(test) #if test[i.. 2021. 1. 21.
[SW Expert Academy] 파스칼의 삼각형 *문제의 저작권은 SW Expert에 있습니다. 문제 링크 : https://swexpertacademy.com/main/code/problem/problemDetail.do?contestProbId=AV5P0-h6Ak4DFAUq&categoryId=AV5P0-h6Ak4DFAUq&categoryType=CODE version1. 파스칼의 삼각형 공식 사용 T = int(input()) def combination(n, r): c = int(math.factorial(n) / (math.factorial(r) * math.factorial(n - r))) return str(c) for test_case in range(1, T + 1): result = int(input()) a = [] print("#.. 2021. 1. 21.
LIST