목록PS (2)
without haste but without rest
문제 설명 생략 MaxCounters coding task - Learn to Code - Codility Calculate the values of counters after applying all alternating operations: increase counter by 1; set value of all counters to current maximum. app.codility.com 생각보다 시간복잡도 처리에서 오래 걸려서 잘 남기지 않는 ps 포스팅을 남기게 되었다.. 우선 생각나는 대로 풀어보니 88% 점수를 받았고, largest 케이스에서 시간 초과가 났다. 88% 풀이 def solution(N, A): answer = [0] * N max_counter = N + 1 maximum ..
1. 입력 개수가 주어지지 않는 입력 # sys 라이브러리의 stdin 메서드 활용 import sys for a in sys.stdin: n = a.input() 2. 출력 print 함수 옵션 # sep -> 문자 사이의 공백 옵션 # end -> 줄바꿈 옵션 print('Hello World!', sep='', end='') 3. 정렬 출력시 방향 설정 # n자리 만큼에서 왼쪽 정렬 print('Hello World!'.ljust(n)) # n자리 만큼에서 오른쪽 정렬 print('Hello World!'.rjust(n)) # n자리 만큼에서 가운데 정렬 print('Hello World!'.center(n)) 4. 재귀 리미트 옵션 파이썬은 재귀 에러 해결 방법 import sys sys.setr..