일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 |
Tags
- input type password
- eslint-prettier
- 프로그래머스
- CRA
- prettier
- 퀵정렬
- password 안보임
- git
- expected linebreaks to be 'lf' but found 'crlf' linebreak-style
- HTTPS
- lazy-load
- 참조타입
- eslint
- git autocrlf
- k번째수
- expected linebreaks to be 'crlf' but found 'lf' linebreak-style
- CRLF
- REST API
- input 안보임
- 원시값
- 응답코드
- react
- git 명령어
- 가장큰수
- 개행문자
- vscode
- IP주소
- git 개행문자
- LF
- JadenCase
Archives
- Today
- Total
우파루파의 개발 기록
[백준] 5217번: 쌍의 합 본문
Python으로 작성 했습니다.
test_case=int(input(""))
for idx in range(test_case):
num = int(input(""))
crease_num = 1;
save_set=[]
while True:
if crease_num >= num / 2:
print(f"Pairs for {num}:{','.join(save_set)}")
break
minus = num - crease_num
if crease_num + minus == num:
save_set.append(f" {crease_num} {minus}")
crease_num += 1
'development > 알고리즘' 카테고리의 다른 글
[프로그래머스] 성격 유형 검사하기 (0) | 2022.08.21 |
---|---|
[프로그래머스] 시저 암호 (0) | 2022.08.21 |
[프로그래머스] 같은 숫자는 싫어 (0) | 2022.08.21 |
[프로그래머스] 없는 숫자 더하기 (0) | 2022.08.19 |
[프로그래머스] 약수의 개수와 합 (0) | 2022.08.19 |