KEEP GOING
[python] 코딩테스트 시간 초과 해결 방법 본문
반응형
1. import sys 사용하기
import sys
input_data = sys.stdin.readline().rstrip()
# 기존 인풋 방식
input_data = input()
2. python3 아닌 pypy로 제출하기
(메모리 효율성은 저하됨)
반응형
'python' 카테고리의 다른 글
[python] 로깅(logging) 라이브러리 사용법(setLevel, fileHandler, StreamHandler) (0) | 2022.10.13 |
---|---|
[python] Jupyter 단축키 모음 (0) | 2022.09.28 |
[python] 코딩 테스트 준비 kit (0) | 2022.04.28 |
[python] 소수 n째 자리까지 출력하기 (round(), %, format(), f-string) (1) | 2022.01.27 |
[python] 딕셔너리 defaultdict 사용 방법 (0) | 2021.12.29 |
Comments