250x250
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 29 | 30 |
Tags
- 실버
- 1101
- 가상환경
- 경사하강법
- 그리디 알고리즘
- 설정
- pyenv
- end to end
- streamlit
- 9020
- Mac
- 밑바닥부터 시작하는 딥러닝
- 재귀
- n과 m
- 백트래킹
- BOJ
- 파이썬
- N-Queen
- 4948
- 파이싼
- 백준
- Python
- 15649
- 기계학습
- 개발환경
- 1002
- 손실함수
- 신경망 학습
Archives
- Today
- Total
파이톨치
[백준] 1024 본문
728x90
# 작수일 떄는 나누었을 때 나머지가 0.5이면 오케이
# 홀수이면 나누었을 때 나머지가 없으면 오케이
cnt = 0
n, k = map(int, input().split())
for i in range(k, 101):
if i%2==1 and (n/i)-(n//i)==0 and n//i-i//2>=0:
# print(i);
for j in range(n//i-i//2, n//i+i//2+1):
print(j, end=" ")
cnt = 1;
break
if i%2==0 and (n/i - n//i)==0.5 and n//i-i//2+1 >= 0:
# print(i);
for j in range(n//i-i//2+1, n//i+i//2+1):
print(j, end=" ")
cnt = 1;
break
if i > n:
break
if cnt == 0:
print(-1)
728x90