码迷,mamicode.com
首页 > 其他好文 > 详细

2021团体程序设计天梯赛 L1-6 吉老师的回归

时间:2021-04-27 15:16:28      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:and   out   namespace   程序   lse   cout   c++   mes   clu   

思路:

水题,略过

Tip:

#include <bits/stdc++.h>

using namespace std;


int main() {
    int n, t, num = 0;
    string now;
    cin >> n >> t;
    getchar();
    for (int i = 1; i <= n; i++) {
        string s;
        getline(cin, s);
        if (!(s.find("qiandao") != string::npos || s.find("easy") != string::npos)) {
            num++;
            if (num == t + 1) {
                now = s;
                break;
            }
        }
    }
    if (num < t + 1)
        cout << "Wo AK le" << endl;
    else
        cout << now << endl;
    return 0;
}

  

2021团体程序设计天梯赛 L1-6 吉老师的回归

标签:and   out   namespace   程序   lse   cout   c++   mes   clu   

原文地址:https://www.cnblogs.com/Whiteying/p/14707766.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!