https://www.acmicpc.net/problem/28250
아이디어
https://aia1235.tistory.com/75
전체 코드
#include<iostream>
using namespace std;
int N = 0, num = 0;
long count_0 = 0, count_1 = 0;
int main()
{
cin.tie(0)->sync_with_stdio(0);
cin >> N;
for (int i = 0; i < N; i++){
cin >> num;
if(num == 0)
count_0 = count_0 + 1;
else if(num == 1)
count_1 = count_1 + 1;
}
cout << count_0 * count_1 * 2 + count_0 * (N - count_0 - count_1) + ((count_0 * (count_0 - 1)) / 2) << endl;
return 0;
}
'🧩 Problem Solving > [백준]' 카테고리의 다른 글
[백준] 28286 재채점을 기다리는 중 (python 파이썬) (0) | 2023.07.05 |
---|---|
[백준] 28298 더 흔한 타일 색칠 문제 (python 파이썬) (0) | 2023.07.04 |
[백준] 28250 이브, 프시케 그리고 푸른 MEX의 아내 (python 파이썬) (0) | 2023.07.03 |
[백준] 28017 게임을 클리어하자 (python 파이썬) (0) | 2023.07.01 |
[백준] 9205 맥주 마시면서 걸어가기 (python 파이썬) (0) | 2023.04.09 |