题解
2023-06-27 19:39:05
发布于:上海
77阅读
0回复
0点赞
#include <bits/stdc++.h>
using namespace std;
int main(){
int n;
cin >> n;
if(n == 0 || n % 2 == 1)
cout << 0 << " " << 0 << endl;
else
cout << ceil(1.0 * n / 4) <<" "<< n / 2;
return 0;
}
这里空空如也
有帮助,赞一个