aboutsummaryrefslogtreecommitdiff
path: root/codechef/distinctPairSums.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'codechef/distinctPairSums.cpp')
-rw-r--r--codechef/distinctPairSums.cpp16
1 files changed, 0 insertions, 16 deletions
diff --git a/codechef/distinctPairSums.cpp b/codechef/distinctPairSums.cpp
deleted file mode 100644
index 5726bb4..0000000
--- a/codechef/distinctPairSums.cpp
+++ /dev/null
@@ -1,16 +0,0 @@
-#include <bits/stdc++.h>
-
-using namespace std;
-
-int main() {
- ios_base::sync_with_stdio(false);
- cin.tie(NULL);
- int tt;
- cin >> tt;
- while (tt--) {
- int l, r;
- cin >> l >> r;
- int foo = abs(r - l) + 1;
- cout << (l == r ? 1 : (foo * (foo + 1)) / 2) << '\n';
- }
-}