SWEA 183

SWEA[D3] (Python) 13038번 교환학생 풀이

Python으로 구현한 13038번 교환학생 문제 풀이입니다. https://swexpertacademy.com/main/code/problem/problemDetail.do?contestProbId=AXxNn6GaPW4DFASZ SW Expert Academy SW 프로그래밍 역량 강화에 도움이 되는 다양한 학습 컨텐츠를 확인하세요! swexpertacademy.com t = int(input()) for tc in range(1, t + 1) : n = int(input()) data = list(map(int, input().split())) result = 1e9 for i in range(7) : if data[i] == 1 : index = i temp_n = n temp_result = 0 ..

SWEA[D3] (Python) 13218번 조별과제 풀이

Python으로 구현한 13218번 조별과제 문제 풀이입니다. https://swexpertacademy.com/main/code/problem/problemDetail.do?problemLevel=3&contestProbId=AXzjvCCq-PwDFASs&categoryId=AXzjvCCq-PwDFASs&categoryType=CODE&problemTitle=&orderBy=FIRST_REG_DATETIME&selectCodeLang=PYTHON&select-1=3&pageSize=10&pageIndex=1 SW Expert Academy SW 프로그래밍 역량 강화에 도움이 되는 다양한 학습 컨텐츠를 확인하세요! swexpertacademy.com t = int(input()) for tc in ran..

SWEA[D3] (Python) 13229번 일요일 풀이

Python으로 구현한 13229번 일요일 문제 풀이입니다. https://swexpertacademy.com/main/code/problem/problemDetail.do?problemLevel=3&contestProbId=AX0SaDW6L2oDFASs&categoryId=AX0SaDW6L2oDFASs&categoryType=CODE&problemTitle=&orderBy=FIRST_REG_DATETIME&selectCodeLang=PYTHON&select-1=3&pageSize=10&pageIndex=1 SW Expert Academy SW 프로그래밍 역량 강화에 도움이 되는 다양한 학습 컨텐츠를 확인하세요! swexpertacademy.com t = int(input()) info = {'MON':..

SWEA[D3] (Python) 13428번 숫자 조작 풀이

Python으로 구현한 13428번 숫자 조작 문제 풀이입니다. https://swexpertacademy.com/main/code/problem/problemDetail.do?problemLevel=3&contestProbId=AX4EJPs68IkDFARe&categoryId=AX4EJPs68IkDFARe&categoryType=CODE&problemTitle=&orderBy=FIRST_REG_DATETIME&selectCodeLang=PYTHON&select-1=3&pageSize=10&pageIndex=1 SW Expert Academy SW 프로그래밍 역량 강화에 도움이 되는 다양한 학습 컨텐츠를 확인하세요! swexpertacademy.com from itertools import combina..

SWEA[D3] (Python) 13547번 팔씨름 풀이

Python으로 구현한 13547번 팔씨름 문제 풀이입니다. https://swexpertacademy.com/main/code/problem/problemDetail.do?problemLevel=3&contestProbId=AX6PP9G6p1sDFAS9&categoryId=AX6PP9G6p1sDFAS9&categoryType=CODE&problemTitle=&orderBy=FIRST_REG_DATETIME&selectCodeLang=PYTHON&select-1=3&pageSize=10&pageIndex=1 SW Expert Academy SW 프로그래밍 역량 강화에 도움이 되는 다양한 학습 컨텐츠를 확인하세요! swexpertacademy.com t = int(input()) for tc in rang..

SWEA[D3] (Python) 13732번 정사각형 판정 풀이

Python으로 구현한 13732번 정사각형 판정 문제 풀이입니다. https://swexpertacademy.com/main/code/problem/problemDetail.do?contestProbId=AX8BAN1qTwoDFARO SW Expert Academy SW 프로그래밍 역량 강화에 도움이 되는 다양한 학습 컨텐츠를 확인하세요! swexpertacademy.com t = int(input()) def check(board, cnt, n) : for i in range(n) : for j in range(n) : if board[i][j] == 1 : down = 0 right = 0 for k in range(i+1, n) : if board[k][j] == 1 : down +=1 else ..

SWEA[D3] (Python) 14178번 1차원 정원 풀이

Python으로 구현한 14178번 1차원 정원 문제 풀이입니다. https://swexpertacademy.com/main/code/problem/problemDetail.do?problemLevel=3&contestProbId=AX_N3oSqcyUDFARi&categoryId=AX_N3oSqcyUDFARi&categoryType=CODE&problemTitle=&orderBy=FIRST_REG_DATETIME&selectCodeLang=PYTHON&select-1=3&pageSize=10&pageIndex=1 SW Expert Academy SW 프로그래밍 역량 강화에 도움이 되는 다양한 학습 컨텐츠를 확인하세요! swexpertacademy.com t = int(input()) for tc in r..

SWEA[모의 SW 역량테스트] (Python) 5658번 보물상자 비밀번호 풀이

Python으로 구현한 5658번 보물상자 비밀번호 문제 풀이입니다. https://swexpertacademy.com/main/code/problem/problemDetail.do?contestProbId=AWXRUN9KfZ8DFAUo SW Expert Academy SW 프로그래밍 역량 강화에 도움이 되는 다양한 학습 컨텐츠를 확인하세요! swexpertacademy.com t = int(input()) for tc in range(1, t + 1) : n, k = map(int, input().split()) data = input() arr = [] for j in range(n // 4) : for i in range(0, n, n // 4) : arr.append(data[i:i+(n//4)]..

SWEA[D2] (Python) 1859번 백만 장자 프로젝트 풀이

Python으로 구현한 1859번 백만 장자 프로젝트 문제 풀이입니다. https://swexpertacademy.com/main/code/problem/problemDetail.do?problemLevel=2&contestProbId=AV5LrsUaDxcDFAXc&categoryId=AV5LrsUaDxcDFAXc&categoryType=CODE&problemTitle=&orderBy=FIRST_REG_DATETIME&selectCodeLang=PYTHON&select-1=2&pageSize=10&pageIndex=1 SW Expert Academy SW 프로그래밍 역량 강화에 도움이 되는 다양한 학습 컨텐츠를 확인하세요! swexpertacademy.com t = int(input()) for tc i..

SWEA[D2] (Python) 1926번 간단한 369게임 풀이

Python으로 구현한 1926번 간단한 369게임 문제 풀이입니다. https://swexpertacademy.com/main/code/problem/problemDetail.do?problemLevel=2&contestProbId=AV5PTeo6AHUDFAUq&categoryId=AV5PTeo6AHUDFAUq&categoryType=CODE&problemTitle=&orderBy=FIRST_REG_DATETIME&selectCodeLang=PYTHON&select-1=2&pageSize=10&pageIndex=1 SW Expert Academy SW 프로그래밍 역량 강화에 도움이 되는 다양한 학습 컨텐츠를 확인하세요! swexpertacademy.com n = int(input()) for i in ..