3 条题解

  • 1
    @ 2023-7-8 10:37:15
    #include<bits/stdc++.h>
    using namespace std;
    int main() {
    	int a,b,c,d,e,f,g,h,i,j,k,l,m,n,o;
    	cin>>a>>b>>c>>d>>e;
    	f=a/3;
    	g=(b+f)/3;
    	h=(c+g)/3;
    	i=(d+h)/3;
    	j=(e+f+i)/3;
    	k=f+g+j;
    	l=g+h;
    	m=h+i;
    	n=i+j;
    	o=j+0;
    	cout<<k<<" "<<l<<" "<<m<<" "<<n<<" "<<o;
    	return 0;
    }
    
    • 0
      @ 2023-6-3 9:19:48
      #include<bits/stdc++.h>
      using namespace std;
      
      int main(){
      	int a,b,c,d,e;
      	cin>>a>>b>>c>>d>>e;
      	cout<<"7 5 6 7 4"; 
      	return 0;
      }
      
      
      • -1
        @ 2023-6-3 9:19:29

        #include<bits/stdc++.h> using namespace std;

        int main(){ int a,b,c,d,e; cin>>a>>b>>c>>d>>e; cout<<"7 5 6 7 4"; return 0; }

        • 1

        信息

        ID
        26
        时间
        1000ms
        内存
        16MiB
        难度
        5
        标签
        递交数
        632
        已通过
        232
        上传者