1 条题解

  • 0
    @ 2023-6-29 15:15:41
    #include<bits/stdc++.h>
    using namespace std;
    int main()
    {
    	for(int i=1;i<=100;i++)
    		for(int j=1;j<=100;j++)
    			for(int k=1;k<=100;k++)
    			{
    				if(i+j+k==100&&
    					k%3==0&&
    					i*5+j*3+k/3==100)
    				cout<<i<<" "<<j<<" "<<k<<"\n";
    			}
    	return 0;
    }
    
    
    • 1

    信息

    ID
    1295
    时间
    1000ms
    内存
    128MiB
    难度
    5
    标签
    (无)
    递交数
    100
    已通过
    36
    上传者