Accepted
Code
#include <bits/stdc++.h>
using namespace std;
int main() {
int x,i;
cin>>x;
for(i=0;i<x;i++)
{
int a;
cin>>a;
if(a%2==0) cout<<a/2<<endl;
else cout<<(a/2)+1<<endl;
}
}
Information
- Submit By
- Type
- Submission
- Problem
- P1041 Odd number
- Contest
- TLE_Headquarters - round #1
- Language
- C++17 (G++ 13.2.0)
- Submit At
- 2024-03-27 16:39:00
- Judged At
- 2024-11-11 03:38:19
- Judged By
- Score
- 100
- Total Time
- 2ms
- Peak Memory
- 540.0 KiB