Wrong Answer
Code
#include <iostream>
using namespace std;
int main(){
int T;
cin>>T;
for(int i=0;i<T;i++){
int N;
cin>>N;
if(N%2==0){
cout << N/2<<"\n";
}
else {
cout << 1<< "\n";
}
}
}
Information
- Submit By
- Type
- Submission
- Problem
- P1052 Yet Another Array Partition
- Contest
- Brain Booster #3
- Language
- C++17 (G++ 13.2.0)
- Submit At
- 2024-05-06 17:51:33
- Judged At
- 2024-11-11 03:31:51
- Judged By
- Score
- 10
- Total Time
- 2ms
- Peak Memory
- 488.0 KiB