Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
58715 wangwei 【入门】百钱百鸡问题 C++ 解答错误 0 MS 244 KB 247 2024-12-14 18:58:16

Tests(0/1):


#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++) if(x+y+z==100 && 5*x+3*y+z/3==100) cout<<x<<" "<<y<<" "<<z<<endl; return 0; }


测评信息: