-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Bronze IV] Title: 베라의 패션, Time: 0 ms, Memory: 2020 KB -BaekjoonHub
- Loading branch information
Showing
2 changed files
with
41 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; | ||
} |