4 条题解

  • 6
    @ 2022-5-28 15:13:05
    using namespace std;
    int main(){
    	int a,b;
    	cin>>a>>b;
    	cout<<(4*a-b)/2<<endl<<(b-2*a)/2;
    	return 0;
    }
    

    套公式

    • 0
      @ 2023-5-26 14:02:00
      #include<iostream>
      using namespace std;
      int main(){
      	int x,y;
      	cin>>x>>y;
      	cout<<x-(y/2-x)<<endl;
      	cout<<y/2-x;
      	return 0;
      }
      

      Copy

      Copy

      • 0
        @ 2023-5-19 9:44:00
        #include<iostream>
        using namespace std;
        int main(){
        	int x,y;
        	cin>>x>>y;
        	cout<<x-(y/2-x)<<endl;
        	cout<<y/2-x;
        	return 0;
        }
        
        • @ 2023-5-19 9:45:05

          是对的😄 放心用

      • 0
        @ 2023-3-15 13:11:39
        #include<iostream>
        using namespace std;
        int main(){
        	int x,y;
        	cin>>x>>y;
        	cout<<x-(y/2-x)<<endl;
        	cout<<y/2-x;
        	return 0;
        }
        

        Copy

        • 1

        信息

        ID
        16
        时间
        1000ms
        内存
        256MiB
        难度
        4
        标签
        递交数
        511
        已通过
        240
        上传者