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

Wjong·2023년 1월 26일
0

swea

목록 보기
4/36

이게 왜 D3일까..?
모든변이 N인 평행사변형이 가장 넓이가 넓은 경우는 정사각형이다.

res=[]
for m in range(int(input())):
    res.append(int(input())**2)
for i in range(len(res)):
    print("#%d %s"%(i+1,res[i]))
profile
뉴비

0개의 댓글