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;
int main(){
int T;
cin>> T;
while (T--)
{
int N;
cin >> N;
if(N==2 || N==3){
cout << 1 << endl;
}
else if(N>3 && N%2==0){
cout << (N/2) << endl;
}
else{
cout << (N/2)+1 << endl;
}
}
}
Information
- Submit By
- Type
- Submission
- Problem
- P1052 Yet Another Array Partition
- Contest
- Brain Booster #3
- Language
- C99 (GCC 13.2.0)
- Submit At
- 2024-05-06 15:44:50
- Judged At
- 2024-11-11 03:33:55
- Judged By
- Score
- 0
- Total Time
- 0ms
- Peak Memory
- 0 Bytes