Accepted
Code
#include <iostream>
using namespace std;
int main() {
int T;
cin >> T;
while (T--) {
int N;
cin >> N;
int ans=(N-1)/2;
cout << ans << 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 16:32:43
- Judged At
- 2024-10-03 13:26:45
- Judged By
- Score
- 100
- Total Time
- 214ms
- Peak Memory
- 1.305 MiB