题解
2023-08-17 15:48:22
发布于:广东
11阅读
0回复
0点赞
#include<bits/stdc++.h>
using namespace std;
int n,res=0;
int main()
{
cin >> n;
int i,j,k;
for(k=0;k<=n;k=k+3)
{
i=(4*k)/3-n;
j=2*n-(7*k)/3;
if(5*i+3*j+k/3==n&&i>=0&&j>=0)
res++;
}
cout << res << endl;
}
燃烧吧!CPU!
这里空空如也
有帮助,赞一个