1 条题解

  • 0
    @ 2023-5-13 11:57:57
    #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 * 20 + b * 30 + c * 50) / 100 << "\n";
        return 0;
    }
    
    • 1

    信息

    ID
    207
    时间
    1000ms
    内存
    256MiB
    难度
    5
    标签
    递交数
    15
    已通过
    14
    上传者