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; i<n; i++){
for(int j=i; j<n; j++){
if(i+j == n){
count++;
}
}
}
cout << count << endl;
}
}
Information
- Submit By
- Type
- Submission
- Problem
- P1073 Pair Sum
- Contest
- Bangladesh 2.0
- Language
- C++11 (G++ 13.2.0)
- Submit At
- 2024-08-16 16:36:48
- Judged At
- 2024-10-03 13:26:37
- Judged By
- Score
- 0
- Total Time
- ≥1095ms
- Peak Memory
- ≥552.0 KiB