提交时间:2024-12-14 19:00:51
运行 ID: 58716
#include<bits/stdc++.h> using namespace std; int main() { int x,y,z; for(x=0;x<=20;x++) for(y=0;y<=33;y++) for(z=0;z<=100;z=z+3) if(x+y+z==100 && 5*x+3*y+z/3==100) cout<<x<<" "<<y<<" "<<z<<endl; return 0; }