Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
64710 laichihao 【基础题】买鸡(例题) C++ 无测评数据 0 MS 0 KB 236 2025-04-25 15:35:31

Tests(0/0):


#include<bits/stdc++.h> using namespace std; int main(){ for(int i=0;i<90;i++){ for(int j=0;j<90;j++){ for(int k=0;k<90;k++){ if(75*i+50*j+k==2500&&i+j+k==90) cout<<i<<" "<<j<<" "<<k<<endl;}}} return 0; }