1 条题解

  • 0
    @ 2022-10-29 10:44:39
    #include <bits/stdc++.h>
    using namespace std;
    int main()
    {
        ios::sync_with_stdio(false);
        cin.tie(0);
        int a, b, c;
        cin >> a >> b >> c;
        cout << (a + b) * c;
        return 0;
    }
    
    • 1

    信息

    ID
    237
    时间
    1000ms
    内存
    128MiB
    难度
    1
    标签
    (无)
    递交数
    179
    已通过
    128
    上传者