4 条题解

  • 1

    #include<iostream>
    using namespace std;
    int main()
    {
    long long s,r1,r2;
    cin>>r1>>s;
    r2=s*2-r1;
    cout<<r2;
    return 0;
    }

  • -2

    #include<iostream>
    #include<cmath>
    #include<iomanip>
    using namespace std;
    int main()
    {
    double s,r1;
    cin>>r1>>s;
    cout<<s*2-r1*1.0;
    return 0;
    }

  • -2

    #include<iostream>
    #include<cmath>
    #include<iomanip>
    using namespace std;
    int main()
    {
    double s,r1;
    cin>>r1>>s;
    cout<<s*2-r1*1.0;
    return 0;
    }
    平均数*2-r1=r2

  • -2
    @ 2021-10-31 20:27:29

    #include<iostream>
    using namespace std;
    int main()
    {
    long s,r1;
    cin>>r1>>s;
    cout<<s*2-r1;
    return 0;
    }

  • 1

信息

ID
1690
难度
1
分类
(无)
标签
递交数
269
已通过
169
通过率
63%
被复制
4
上传者