Skip to content

Commit

Permalink
[Bronze IV] Title: 베라의 패션, Time: 0 ms, Memory: 2020 KB -BaekjoonHub
Browse files Browse the repository at this point in the history
  • Loading branch information
ffvv0123 committed Aug 23, 2024
1 parent 87417d2 commit 3e4ba1b
Show file tree
Hide file tree
Showing 2 changed files with 41 additions and 0 deletions.
32 changes: 32 additions & 0 deletions 백준/Bronze/15439. 베라의 패션/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
# [Bronze IV] 베라의 패션 - 15439

[문제 링크](https://www.acmicpc.net/problem/15439)

### 성능 요약

메모리: 2020 KB, 시간: 0 ms

### 분류

구현, 조합론, 수학

### 제출 일자

2024년 8월 24일 05:12:01

### 문제 설명

<p>베라는 상의 N 벌과 하의 N 벌이 있다. i 번째 상의와 i 번째 하의는 모두 색상 i를 가진다. N 개의 색상은 모두 서로 다르다.</p>

<p>상의와 하의가 서로 다른 색상인 조합은 총 몇 가지일까?</p>

### 입력

<p>입력은 아래와 같이 주어진다.</p>

<pre>N</pre>

### 출력

<p>상의와 하의가 서로 다른 색상인 조합의 가짓수를 출력한다.</p>

Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
#include <iostream>
using namespace std;

int main() {
int N;
cin >> N;

cout << N*N - N;
}

0 comments on commit 3e4ba1b

Please sign in to comment.