Wrong Answer
Code
#include <iostream>
using namespace std;
int part(int n) {
if (n % 2 == 0) {
return n / 2;
} else {
return (n - 1) / 2;
}
}
int main() {
int t;
cin >> t;
while(t--){
int n;
cin >> n;
cout << part(n) << 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 17:03:42
- Judged At
- 2024-11-11 03:32:38
- Judged By
- Score
- 10
- Total Time
- 2ms
- Peak Memory
- 768.0 KiB