其他分享
首页 > 其他分享> > 201812-1 小明上学

201812-1 小明上学

作者:互联网

201812-1 小明上学


本题链接201812-1 小明上学

本博客给出本题截图

在这里插入图片描述

C++

#include <iostream>
#include <cstring>
#include <algorithm>

using namespace std;

int main()
{
    int r, y, g;
    cin >> r >> y >> g;
    int n;
    cin >> n;

    int res = 0;
    while (n -- )
    {
        int k, t;
        cin >> k >> t;
        if (!k) res += t;
        else if (k == 1) res += t;
        else if (k == 2) res += t + r;
    }
    cout << res << endl;
    return 0;
}

总结

水题,不解释

标签:小明,int,res,cin,201812,上学,include
来源: https://blog.csdn.net/qq_52156445/article/details/120272327