(기출x)[python] 10825 - 국영수
https://www.acmicpc.net/problem/ 정답률 52.136% 난이도 실4 python3로 제출할 때 input 받는 데에 오래걸려서 시간초과 뜸 -> sys사용하거나 pypy3로 제출 코드 설명 import sys input = sys.stdin.readline N = int(input()) stu = [] for i in range(N): name, kor, eng, math = map(str, input().split()) stu.append([name, int(kor), int(eng), int(math)]) stu.sort(key = lambda x: (-x[1], x[2], -x[3], x[0])) # 내림차순, 오름차순, 내림차순, 오름차순 for i in range(N):..
2022. 9. 2.
[프로그래머스] 블록 이동하기 - python
https://school.programmers.co.kr/learn/courses/30/lessons/60063?language=python3 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr 회전을 같이 생각하는 게 너무 까다로운 문제.. 코드 설명 from collections import deque dx = [-1, 1, 0, 0] dy = [0, 0, -1, 1] def get_next_pos(pos, board, N): pos1, pos2 = pos (pos1x, pos1y), (pos2x, pos2y) = pos1, pos2 npos = [] #..
2022. 9. 1.