Wrong Answer
Code
/**
* Author : Shafi
*
***/
#include <iostream>
#include "vector"
#include "algorithm"
using namespace std;
#define ll long long int
int main() {
// Write C++ code here
int tc;
cin>>tc;
while(tc--){
ll n;
cin>>n;
if(n%2 & 1) cout<<"1\n";
else{
if(n%4 == 0){
cout<<n/2<<endl;
}
else{
cout<<2<<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 15:34:15
- Judged At
- 2024-11-11 03:34:05
- Judged By
- Score
- 5
- Total Time
- 2ms
- Peak Memory
- 532.0 KiB