문제 풀이/Codeforces
2021. 4. 18.
Codeforces Round #715 (Div.1, Div. 2)
A - Average Height Problem - A - Codeforces codeforces.com \(n\)길이의 수열 \(a\)가 주어진다. 이 수열의 수를 재배열해서, 연속된 두 원소의 평균이 정수가 되는 경우가 최대가 되도록 했을 때, 그 개수를 구해야 한다. 짝수끼리, 홀수끼리 모으면 된다. 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 #include using namespace std; typedef long long ll; typedef pair pii; typedef pair pll; ll gcd(ll a, ll b) { for (; b; a %= b, swap(a, b)); retur..