4615. 재미있는 오셀로 게임
·
swea
https://swexpertacademy.com/main/code/problem/problemDetail.do?contestProbId=AWQmA4uK8ygDFAXj&categoryId=AWQmA4uK8ygDFAXj&categoryType=CODE&problemTitle=%EC%98%A4%EC%85%80%EB%A1%9C&orderBy=FIRST_REG_DATETIME&selectCodeLang=ALL&select-1=&pageSize=10&pageIndex=1 SW Expert Academy SW 프로그래밍 역량 강화에 도움이 되는 다양한 학습 컨텐츠를 확인하세요! swexpertacademy.com T = int(input()) for tc in range(1, T + 1): N, M = map(in..
5356. 의석이의 세로로 말해요
·
swea
https://swexpertacademy.com/main/code/problem/problemDetail.do?contestProbId=AWVWgkP6sQ0DFAUO&categoryId=AWVWgkP6sQ0DFAUO&categoryType=CODE&problemTitle=%EC%9D%98%EC%84%9D&orderBy=FIRST_REG_DATETIME&selectCodeLang=ALL&select-1=&pageSize=10&pageIndex=1 SW Expert Academy SW 프로그래밍 역량 강화에 도움이 되는 다양한 학습 컨텐츠를 확인하세요! swexpertacademy.com T = int(input()) for tc in range(1,T+1): arr = [input() for _ in r..
6190. 정곤이의 단조 증가하는 수
·
swea
https://swexpertacademy.com/main/code/problem/problemDetail.do?contestProbId=AWcPjEuKAFgDFAU4 SW Expert Academy SW 프로그래밍 역량 강화에 도움이 되는 다양한 학습 컨텐츠를 확인하세요! swexpertacademy.com def check(a): k = str(a) for h in range(len(k) - 1): if k[h] > k[h + 1]: return False return True T = int(input()) for tc in range(1, T + 1): N = int(input()) nums = list(map(int, input().split())) result = 0 for i in range(..
3499. 퍼펙트 셔플
·
swea
https://swexpertacademy.com/main/code/problem/problemDetail.do?contestProbId=AWGsRbk6AQIDFAVW&categoryId=AWGsRbk6AQIDFAVW&categoryType=CODE&problemTitle=3499&orderBy=FIRST_REG_DATETIME&selectCodeLang=ALL&select-1=&pageSize=10&pageIndex=1 SW Expert Academy SW 프로그래밍 역량 강화에 도움이 되는 다양한 학습 컨텐츠를 확인하세요! swexpertacademy.com T = int(input()) for tc in range(1, T + 1): N = int(input()) name = list(input()..
4047. 영준이의 카드 카운팅
·
swea
https://swexpertacademy.com/main/code/problem/problemDetail.do?contestProbId=AWIsY84KEPMDFAWN&categoryId=AWIsY84KEPMDFAWN&categoryType=CODE&problemTitle=%EC%98%81%EC%A4%80&orderBy=FIRST_REG_DATETIME&selectCodeLang=ALL&select-1=&pageSize=10&pageIndex=1 SW Expert Academy SW 프로그래밍 역량 강화에 도움이 되는 다양한 학습 컨텐츠를 확인하세요! swexpertacademy.com T = int(input()) for tc in range(1,T+1): full = [13,13,13,13] # 순서..
9367. 점점 커지는 당근의 개수
·
swea
https://swexpertacademy.com/main/talk/solvingClub/problemView.do?solveclubId=AYmp5XoaNBQDFAUe&contestProbId=AW_nY2m6OLADFARY&probBoxId=AYob9h3an2EDFAU6&type=USER&problemBoxTitle=IM+%EB%8C%80%EB%B9%84&problemBoxCnt=11 SW Expert Academy SW 프로그래밍 역량 강화에 도움이 되는 다양한 학습 컨텐츠를 확인하세요! swexpertacademy.com T = int(input()) for tc in range(1, T + 1): N = int(input()) C = list(map(int, input().split())) max_..