백준 15439 Vera and Outfits

Yesol Lee·2022년 5월 19일
0

알고리즘

목록 보기
5/31
post-custom-banner

백준 15439 Vera and Outfits

문제

n개 색상의 상의, 하의 n개를 조합하는 방법. 색깔 같은 경우 제외

코드

n = int(input())
print (n*n-n) # n*(n-1)
  • 이제 input값이 적을 때엔 input()을 쓰고, 많을 땐 sys.stdin.readline()을 사용하면 될 듯
  • 상의 개수 n * 하의 개수 n - 상하의가 같은 경우 n
profile
문서화를 좋아하는 개발자

0개의 댓글