Compile Error
foo.c:1:10: fatal error: bits/stdc++.h: No such file or directory 1 | #include <bits/stdc++.h> | ^~~~~~~~~~~~~~~ compilation terminated.
Code
#include <bits/stdc++.h>
using namespace std;
#define all(v) v.begin(), v.end()
using LL = long long;
int main() {
cin.tie (nullptr) -> ios_base :: sync_with_stdio (false);
int tests;
cin >> tests;
while (tests--) {
int n;
cin >> n;
cout << --n / 2 << '\n';
}
return 0;
}
Information
- Submit By
- Type
- Submission
- Problem
- P1073 Pair Sum
- Language
- C99 (GCC 13.2.0)
- Submit At
- 2024-08-16 18:52:31
- Judged At
- 2024-11-11 03:10:33
- Judged By
- Score
- 0
- Total Time
- 0ms
- Peak Memory
- 0 Bytes