A. Codeforces Checking(打表枚举)

简介: A. Codeforces Checking(打表枚举)

题目链接

Problem - A - Codeforces


一些话


流程

用string来读入字符,免去%c的特殊处理

用string储存codeforces,遍历其元素与读入的字符比较

套路

条件与钞票(打表枚举)_栞那Kanna的博客-CSDN博客类似,都是给出若干常量,用其对输入的量进行处理

处理方法是用string或char数组直接储存题目给的量,然后循环枚举其中的元素


ac代码

#include <iostream>
using namespace std;
int main(){
    int n;
    cin >> n;
    string s;
    bool flag;
    string ss= "codeforces";
    for(int i = 0;i < n;i++){
        cin >> s;
        flag = false;
        for(int j = 0;j < 10;j++)
            if(s[0] == ss[j]) flag = true;//cout << s[0] << s[j] << endl;}
        if(flag) cout << "Yes" << endl;
        else cout << "No" << endl;
    }
    return 0;
}
目录
相关文章
|
算法 测试技术
每日一题:LeetCode-LCR 143.子结构判断
每日一题:LeetCode-LCR 143.子结构判断
|
安全
CTF竞赛 -- 关于整数溢出
CTF竞赛 -- 关于整数溢出
307 0
|
算法 测试技术 C++
蓝桥杯第八讲--枚举与模拟【例题】(一)
蓝桥杯第八讲--枚举与模拟【例题】
167 0
蓝桥杯第八讲--枚举与模拟【例题】(一)
蓝桥杯第八讲--枚举与模拟【例题】(二)
蓝桥杯第八讲--枚举与模拟【例题】
178 0
蓝桥杯第八讲--枚举与模拟【例题】(二)
|
缓存 Ruby
蓝桥杯第八讲--枚举与模拟【习题】(二)
蓝桥杯第八讲--枚举与模拟【习题】
160 0
蓝桥杯第八讲--枚举与模拟【习题】(二)
|
BI
2022年牛客多校第2场 J . Link with Arithmetic Progression (三分+枚举)
2022年牛客多校第2场 J . Link with Arithmetic Progression (三分+枚举)
118 0
|
Java Shell
Codeforces Round #746 (Div. 2) D - Hemose in ICPC ?(交互 二分 欧拉序)
Codeforces Round #746 (Div. 2) D - Hemose in ICPC ?(交互 二分 欧拉序)
161 0
|
机器学习/深度学习
Codeforces1499——C. Minimum Grid Path(思维+分奇偶+贪心)
Codeforces1499——C. Minimum Grid Path(思维+分奇偶+贪心)
105 0
|
Python
ZZULIOJ-1074,百钱买百鸡(Python)
ZZULIOJ-1074,百钱买百鸡(Python)
CodeForces 6A-Triangle(枚举/暴力)
CodeForces 6A-Triangle(枚举/暴力)