Wrong Answer
Code
#include <bits/stdc++.h>
using namespace std;
int main() {
long long t;
cin >> t;
while(t--)
{
long long n;
cin>>n;
if(n%2==0)
{
cout<<n/2<<endl;
}
else cout<<1<<endl;
}
return 0;
}
Information
- Submit By
- Type
- Submission
- Problem
- P1052 Yet Another Array Partition
- Contest
- Brain Booster #3
- Language
- C++20 (G++ 13.2.0)
- Submit At
- 2024-05-06 16:51:17
- Judged At
- 2024-11-11 03:32:43
- Judged By
- Score
- 10
- Total Time
- 1ms
- Peak Memory
- 532.0 KiB