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 | 31 |
Tags
- misc
- N0Named
- Database
- 수학
- wargame
- 써니나타스
- 정렬
- Text
- SuNiNaTas
- cryptography
- Network
- Digital Forensics
- 백준
- xcz.kr
- 사칙연산
- Incognito
- writeup
- 구현
- Python
- Forensics
- CTF
- Web
- Web Hacking
- 인코그니토
- MySQL
- C
- php
- 그리디 알고리즘
- HackCTF
- 문자열
Archives
- Today
- Total
보안을 그리다, 훈이
[Baekjoon/Python3] 1977번 완전제곱수 본문
[Baekjoon/Python3] 1977번 완전제곱수
import math as h
m = int(input())
n = int(input())
nums = []
for i in range(h.ceil(h.sqrt(m)), h.floor(h.sqrt(n) + 1)):
nums.append(pow(i, 2))
if len(nums) == 0:
print(-1)
else:
print(sum(nums), nums[0], sep='\n')
'Programming > Python & Data Structures' 카테고리의 다른 글
[Baekjoon/Python3] 2010번 플러그 (0) | 2020.12.03 |
---|---|
[Baekjoon/Python3] 1978번 소수 찾기 (0) | 2020.12.03 |
[Baekjoon/Python3] 1934번 최소공배수 (0) | 2020.12.03 |
[Baekjoon/Python3] 1924번 2007년 (0) | 2020.12.03 |
[Baekjoon/Python3] 1871번 좋은 자동차 번호판 (0) | 2020.12.03 |
Comments