Recent Posts
Notice
No Rules Rules
베라의 패션 (feat. 백준, 15439번) 본문
728x90
반응형
베라의 패션
https://www.acmicpc.net/problem/15439
// woohyeon.kim
// kim519620.tistory.com
#include <iostream>
using namespace std;
int main() {
ios::sync_with_stdio(false), cin.tie(NULL);
register int N, ans = 0;
cin >> N;
for(register int i = 1, j; i <= N; ++i)
for(j = 1; j <= N; ++j)
if(i != j)
++ans;
cout << ans;
return 0;
}
// *&)*@*
반응형
서로 다른 값의 i일때 다른 색상으로 조합될 수 있습니다.
728x90
반응형
'생활 > 코테' 카테고리의 다른 글
창문 닫기 (feat. 백준, 13909번) (0) | 2023.04.21 |
---|---|
불우이웃돕기 (feat. 백준, 1414번) (0) | 2023.04.20 |
영단어 암기는 괴로워 (feat. 백준, 20920번) (0) | 2023.04.20 |
도시 건설 (feat. 백준, 21924번) (0) | 2023.04.19 |
물대기 (feat. 백준, 1368번) (0) | 2023.04.19 |
Comments