Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <bits/stdc++.h>
- using namespace std;
- void mainSolve()
- {
- int n;
- cin >> n;
- int ans = (n % 2 == 0) ? n / 2 : -(n + 1) / 2;
- cout << ans << endl;
- }
- int main()
- {
- int t;
- cin >> t;
- while (t--)
- {
- mainSolve();
- }
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment