SWEA 17

2007. 패턴 마디의 길이

문제: 무단 배포 금지로 인해 사이트 주소로 남깁니다.https://swexpertacademy.com/main/code/problem/problemDetail.do?contestProbId=AV5P1kNKAl8DFAUq SW Expert AcademySW 프로그래밍 역량 강화에 도움이 되는 다양한 학습 컨텐츠를 확인하세요!swexpertacademy.com  정답 코드(예외 처리함):T = int(input())for test_case in range(1, T + 1): s = input() temp = '' flag = True for i in s: temp += i index = len(temp) while True: #..

SWEA 2024.07.15

1284. 수도 요금 경쟁

문제: 무단 배포 금지로 인해 사이트 주소로 남깁니다.https://swexpertacademy.com/main/code/problem/problemDetail.do?contestProbId=AV189xUaI8UCFAZN SW Expert AcademySW 프로그래밍 역량 강화에 도움이 되는 다양한 학습 컨텐츠를 확인하세요!swexpertacademy.com 정답 코드:T = int(input())for test_case in range(1, T + 1): #P: 1리터당 P원(A사) #Q: 기본요금(B사) #R: 기준치(B사) #S: 초과 리터당 요금(B사) #W: 종민이의 사용량 #P, Q, R, S, W arr = list(map(int, input().spli..

SWEA 2024.07.15

1945. 간단한 소인수분해

문제: 무단 배포 금지로 인해 사이트 주소로 남깁니다.https://swexpertacademy.com/main/code/problem/problemDetail.do?contestProbId=AV5Pl0Q6ANQDFAUq SW Expert AcademySW 프로그래밍 역량 강화에 도움이 되는 다양한 학습 컨텐츠를 확인하세요!swexpertacademy.com 정답 코드:T = int(input())for test_case in range(1, T + 1): N = int(input()) two = 0 three = 0 five = 0 seven = 0 eleven = 0 while N % 2 == 0: N //= 2 two += 1 wh..

SWEA 2024.07.15

1954 .달팽이 숫자

문제: 무단 배포 금지로 인해 사이트 주소로 남깁니다.https://swexpertacademy.com/main/code/problem/problemDetail.do?contestProbId=AV5PobmqAPoDFAUq SW Expert AcademySW 프로그래밍 역량 강화에 도움이 되는 다양한 학습 컨텐츠를 확인하세요!swexpertacademy.com 정답 코드:T = int(input())for test_case in range(1, T + 1): N = int(input()) # 1일 때 if N == 1: print(f"#{test_case}") print(1) continue # 2일 때 elif N == 2: p..

SWEA 2024.07.15

1959. 두 개의 숫자열

문제: 무단 배포 금지로 인해 사이트 주소로 남깁니다.https://swexpertacademy.com/main/code/problem/problemDetail.do?contestProbId=AV5PpoFaAS4DFAUq SW Expert AcademySW 프로그래밍 역량 강화에 도움이 되는 다양한 학습 컨텐츠를 확인하세요!swexpertacademy.com 정답 코드:T = int(input())for test_case in range(1, T + 1): N, M = map(int, input().split()) Ai = list(map(int, input().split())) Bj = list(map(int, input().split())) is_max = 0 if N > ..

SWEA 2024.07.15

1961. 숫자 배열 회전

문제: 무단 배포 금지로 인해 사이트 주소로 남깁니다.https://swexpertacademy.com/main/code/problem/problemDetail.do?contestProbId=AV5Pq-OKAVYDFAUq SW Expert AcademySW 프로그래밍 역량 강화에 도움이 되는 다양한 학습 컨텐츠를 확인하세요!swexpertacademy.com 정답 코드:import pprintT = int(input())for test_case in range(1, T + 1): N = int(input()) arr = [list(map(str, input().split())) for _ in range(N)] # 뒤집고, zip하면 90도 돌아감 arr_90 = list(zip(*..

SWEA 2024.07.15

1979. 어디에 단어가 들어갈 수 있을까

문제: 무단 배포 금지로 인해 사이트 주소로 남깁니다.https://swexpertacademy.com/main/code/problem/problemDetail.do?contestProbId=AV5PuPq6AaQDFAUq SW Expert AcademySW 프로그래밍 역량 강화에 도움이 되는 다양한 학습 컨텐츠를 확인하세요!swexpertacademy.com 정답 코드:T = int(input())# 여러개의 테스트 케이스가 주어지므로, 각각을 처리합니다.for test_case in range(1, T + 1): answer = 0 N, K = map(int, input().split()) arr = [list(map(int, input().split())) for _ in range(..

SWEA 2024.07.15