Accepted
Code
// Online C++ compiler to run C++ program online
#include <bits/stdc++.h>
using namespace std;
int main() {
int t;
cin>>t;
while(t--){
long long count=0;
long long N;
cin>>N;
if(N%2==0){
cout<<N/2-1<<endl;
}
else
{
cout<<N/2<<endl;
}
}
return 0;
}
Information
- Submit By
- Type
- Submission
- Problem
- P1073 Pair Sum
- Contest
- Bangladesh 2.0
- Language
- C++17 (G++ 13.2.0)
- Submit At
- 2024-08-16 15:40:42
- Judged At
- 2024-10-03 13:30:37
- Judged By
- Score
- 100
- Total Time
- 229ms
- Peak Memory
- 1.414 MiB