[Codetree] 되돌아오기 2 Python
·
🔻PS/Codetree
https://www.codetree.ai/missions/5/problems/come-back-2/description 코드트리 | 코딩테스트 준비를 위한 알고리즘 정석국가대표가 만든 코딩 공부의 가이드북 코딩 왕초보부터 꿈의 직장 코테 합격까지, 국가대표가 엄선한 커리큘럼으로 준비해보세요.www.codetree.ai import sysinput = sys.stdin.readlinex = 0y = 0d = 0direct = {"N":0, "E": 1, "S":2, "W":3}dx = [1, 0, -1, 0]dy = [0, 1, 0, -1]cnt = 0cmd = list(input().rstrip())for c in cmd: if c == 'L': d = (d+3)%4 elif ..
[Codetree] 되돌아오기 Python
·
🔻PS/Codetree
https://www.codetree.ai/missions/5/problems/come-back/description 코드트리 | 코딩테스트 준비를 위한 알고리즘 정석국가대표가 만든 코딩 공부의 가이드북 코딩 왕초보부터 꿈의 직장 코테 합격까지, 국가대표가 엄선한 커리큘럼으로 준비해보세요.www.codetree.ai import sysinput = sys.stdin.readlinex = 0 y = 0direct = {"N": 0, "E": 1, "S": 2, "W": 3}dx = [1, 0, -1, 0]dy = [0, 1, 0, -1]n = int(input())cnt = 0for _ in range(n): di, move = input().rstrip().split(" ") move = in..
[Codetree] 빙빙 돌며 숫자 사각형 채우기 Python
·
🔻PS/Codetree
https://www.codetree.ai/missions/5/problems/snail-number-square/description 코드트리 | 코딩테스트 준비를 위한 알고리즘 정석국가대표가 만든 코딩 공부의 가이드북 코딩 왕초보부터 꿈의 직장 코테 합격까지, 국가대표가 엄선한 커리큘럼으로 준비해보세요.www.codetree.ai  import sysinput = sys.stdin.readline# 0 1 2 3 = 오 아 왼 위d = 0x = 0y = 0dy = [1, 0, -1, 0]dx = [0, 1, 0, -1]n, m = map(int, input().split(" "))graph = [[0 for _ in range(m)] for _ in range(n)]graph[x][y] = 1for ..
[Codetree] 작은 구슬의 이동 Python
·
🔻PS/Codetree
https://www.codetree.ai/missions/5/problems/small-marble-movement/description 코드트리 | 코딩테스트 준비를 위한 알고리즘 정석국가대표가 만든 코딩 공부의 가이드북 코딩 왕초보부터 꿈의 직장 코테 합격까지, 국가대표가 엄선한 커리큘럼으로 준비해보세요.www.codetree.ai import sysinput = sys.stdin.readlinen, time = map(int, input().split(" "))x, y, nd = input().rstrip().split(" ")x = int(x) - 1y = int(y) - 1direct = {"U": 0, "R":1, "D": 2, "L":3}# U D, R Ldx = [0, 1, 0, -1..
[Codetree] 1이 3개 이상 있는 위치 Python
·
🔻PS/Codetree
https://www.codetree.ai/missions/5/problems/place-more-than-3-ones/description 코드트리 | 코딩테스트 준비를 위한 알고리즘 정석국가대표가 만든 코딩 공부의 가이드북 코딩 왕초보부터 꿈의 직장 코테 합격까지, 국가대표가 엄선한 커리큘럼으로 준비해보세요.www.codetree.ai import sysinput = sys.stdin.readlinedx = [0, 0, 1, -1]dy = [1, -1, 0, 0]n = int(input())graph = []for _ in range(n): temp = list(map(int, input().rstrip().split(" "))) graph.append(temp)result = 0for i..
[Codetree] 문자에 따른 명령 2 Python
·
🔻PS/Codetree
https://www.codetree.ai/missions/5/problems/text-based-commands2/description 코드트리 | 코딩테스트 준비를 위한 알고리즘 정석국가대표가 만든 코딩 공부의 가이드북 코딩 왕초보부터 꿈의 직장 코테 합격까지, 국가대표가 엄선한 커리큘럼으로 준비해보세요.www.codetree.ai import sysinput = sys.stdin.readline# N, E, S, Wdx = [0, 1, 0, -1]dy = [1, 0, -1, 0]nx = 0ny = 0nd = 0order = list(input().rstrip())for o in order: if o == 'L': nd = (nd+3)%4 elif o == 'R': ..
[Codetree] 방향에 맞춰 이동 Python
·
🔻PS/Codetree
https://www.codetree.ai/missions/5/problems/move-in-direction/description 코드트리 | 코딩테스트 준비를 위한 알고리즘 정석국가대표가 만든 코딩 공부의 가이드북 코딩 왕초보부터 꿈의 직장 코테 합격까지, 국가대표가 엄선한 커리큘럼으로 준비해보세요.www.codetree.ai import sysinput = sys.stdin.readlinen = int(input())# n = (0, 1)# e = (1, 0)# s = (0, -1)# w = (-1, 0)dx = [0, 1, 0, -1]dy = [1, 0, -1, 0]direct = {"N": 0, "E": 1, "S": 2, "W": 3}x = 0y = 0for _ in range(n): d..
[Codetree] 1차원 젠가 Python
·
🔻PS/Codetree
https://www.codetree.ai/missions/2/problems/jenga-1d/description 코드트리 | 코딩테스트 준비를 위한 알고리즘 정석국가대표가 만든 코딩 공부의 가이드북 코딩 왕초보부터 꿈의 직장 코테 합격까지, 국가대표가 엄선한 커리큘럼으로 준비해보세요.www.codetree.ai import sysinput = sys.stdin.readlinen = int(input())arr = []for _ in range(n): arr.append(int(input()))for _ in range(2): s, e = map(int, input().split(" ")) del arr[s-1:e]print(len(arr))for a in arr: print(a)
[Codetree] 삼각형 컨베이어 벨트 Python
·
🔻PS/Codetree
https://www.codetree.ai/missions/2/problems/conveyor-belt-triangle/description 코드트리 | 코딩테스트 준비를 위한 알고리즘 정석국가대표가 만든 코딩 공부의 가이드북 코딩 왕초보부터 꿈의 직장 코테 합격까지, 국가대표가 엄선한 커리큘럼으로 준비해보세요.www.codetree.ai import sysfrom collections import dequeinput = sys.stdin.readlinen, time = map(int, input().split(" "))graph = []for _ in range(3): temp = list(map(int, input().rstrip().split(" "))) graph.append(temp)..
[Codetree] 컨베이어 벨트 Python
·
🔻PS/Codetree
https://www.codetree.ai/missions/2/problems/conveyor-belt/description 코드트리 | 코딩테스트 준비를 위한 알고리즘 정석국가대표가 만든 코딩 공부의 가이드북 코딩 왕초보부터 꿈의 직장 코테 합격까지, 국가대표가 엄선한 커리큘럼으로 준비해보세요.www.codetree.ai import sysfrom collections import dequeinput = sys.stdin.readlinen, t = map(int, input().rstrip().split(" "))graph = []for i in range(2): temp = list(map(int, input().rstrip().split(" "))) graph.append(temp)for..
_니지
'🔻PS/Codetree' 카테고리의 글 목록 (4 Page)