Time Exceeded
Code
#include<bits/stdc++.h>
using namespace std;
int main(){
int t;
cin >> t;
while(t--){
int count = 0;
int n;
cin >> n;
for(int i=1,j=n-1; i<n/2, j>n/2; i++,j--){
if(i+j == n){
count++;
}
}
cout << count << 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 16:46:39
- Judged At
- 2024-10-03 13:26:01
- Judged By
- Score
- 70
- Total Time
- ≥1089ms
- Peak Memory
- ≥1004.0 KiB