Accepted
Code
#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef long double ld;
typedef pair<ll,ll> PII;
const ll mx = 3e5+10;
int main() {
ios_base::sync_with_stdio(0);
cin.tie(nullptr);
cout.tie(nullptr);
int t;
cin>>t;
while(t--) {
ll n;
cin >> n;
if(n&1) {
cout<<n/2<<endl;
}
else{
ll half = n/2;
cout<<half-1<<endl;
}
}
}
Information
- Submit By
- Type
- Submission
- Problem
- P1073 Pair Sum
- Contest
- Bangladesh 2.0
- Language
- C++20 (G++ 13.2.0)
- Submit At
- 2024-08-16 15:34:40
- Judged At
- 2024-10-03 13:31:21
- Judged By
- Score
- 100
- Total Time
- 143ms
- Peak Memory
- 1.488 MiB