본문 바로가기
프로그래밍언어/Code_Practice

[SW Expert Academy] 원 안의 점

by 스꼬맹이브로 2023. 6. 29.
728x90
반응형
SMALL

*문제의 저작권은 SW Expert에 있습니다.

https://swexpertacademy.com/main/code/problem/problemDetail.do?contestProbId=AYcllbDqUVgDFASR 

 

SW Expert Academy

SW 프로그래밍 역량 강화에 도움이 되는 다양한 학습 컨텐츠를 확인하세요!

swexpertacademy.com

[문제] 반지름이 n인 원 안에 포함되는 격자점의 개수를 구하는 문제

T = int(input())

for i in range(1, T+1):
    n = int(input())
    cnt = 0
    for x in range(-n, n+1):
        for y in range(-n, n+1):
            if x ** 2 + y ** 2 <= n ** 2:
                cnt += 1
    print(f'#{i} {cnt}')

 

728x90
반응형
LIST