Wrong Answer
Code
#include <bits/stdc++.h>
using namespace std;
int main(){
int T;
cin>> T;
while (T--)
{
long long int N;
cin >> N;
if(N%2==0){cout << N/2 << endl;}
else if(N==3){cout << 1 << endl;}
else{cout << 0 << endl;}
}
}
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 17:46:45
- Judged At
- 2024-11-11 03:31:53
- Judged By
- Score
- 10
- Total Time
- 2ms
- Peak Memory
- 536.0 KiB