Stay Hungry Stay Foolish

SWEA

[SWEA] 15941. 평행사변형 (Python/D3)

dev스카이 2024. 10. 20. 14:56

[문제 링크] 👇

 

SW Expert Academy

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

swexpertacademy.com

 


 

풀이

평행사변형 넓이 = 밑변 x 높이

모든 변의 길이가 N이므로 N * N 을 해주면 된다.

 

Solution

test_case = int(input())
for tc in range(1, test_case + 1):
    n = int(input())
    print("#%d %d" % (tc, n * n))