题解 * 1
2024-05-23 20:41:25
发布于:江苏
20阅读
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;
}
这里空空如也
有帮助,赞一个