Skip to content

Instantly share code, notes, and snippets.

@ortsc

ortsc/dot.cpp Secret

Last active November 14, 2023 20:49
#include <bits/stdc++.h>
using namespace std;
int main() {
int t;
cin >> t;
while (t--) {
int n, k, x;
cin >> n >> k >> x;
if (min(n, x + 1) < k) {
cout << "-1\n";
continue;
}
if (x == k) x--;
cout << k*(k-1)/2 + x*(n-k) << "\n";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment