202012-1 期末预测之安全指数

202012-1 期末预测之安全指数


本题链接202012-1 期末预测之安全指数

本博客给出本题截图
202012-1 期末预测之安全指数

C++

#include <iostream>
#include <algorithm>

using namespace std;

int main()
{
    int n;
    cin >> n;
    int res = 0;

    while (n -- )
    {
        int s, w;
        cin >> s >> w;
        res += s * w;
    }
    cout << max(res, 0) << endl;

    return 0;
}

总结

水题,不解释

上一篇:python 使用异常来中断/暂停线程


下一篇:CCF 202012-1 期末预测之安全指数 (水题)