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

Tests(0/1):


#include<bits/stdc++.h> using namespace std; int main() { int x,y,z; for(x=1;x<=20;x++) for(y=1;y<=33;y++) for(z=1;z<=100;z++) if(x+y+z==100 && 5*x+3*y+z/3==100) cout<<x<<" "<<y<<" "<<z<<endl; return 0; }


测评信息: