Wrong Answer
Code
/*
* @author:- mamudulsakib2019.
* DATE:-06/05/2024 ; TIME- 19:36 PM
* BANGLADESH , SYLHET.
*/
#include<bits/stdc++.h>
using namespace std;
#define ll long long
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
int t;cin >> t;
while(t--) {
int 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 15:20:41
- Judged At
- 2024-11-11 03:34:38
- Judged By
- Score
- 10
- Total Time
- 1ms
- Peak Memory
- 532.0 KiB