题解:ABC319A - Legendary Players

题解:ABC319A - Legendary Players

·题目

链接:Atcoder。

链接:洛谷。

·难度

算法难度:C。

思维难度:C。

调码难度:C。

综合评价:入门。

·算法

模拟。

·思路

判断、输出。

·代价

O(1)。

·细节

打卡。

·代码

#include<bits/stdc++.h>
using namespace std;
string str="";
int main(){
    cin>>str;
    if(str=="tourist"){
        cout<<3858<<endl;
    }else if(str=="ksun48"){
        cout<<3679<<endl;
    }else if(str=="Benq"){
        cout<<3658<<endl;
    }else if(str=="Um_nik"){
        cout<<3648<<endl;
    }else if(str=="apiad"){
        cout<<3638<<endl;
    }else if(str=="Stonefeang"){
        cout<<3630<<endl;
    }else if(str=="ecnerwala"){
        cout<<3613<<endl;
    }else if(str=="mnbvmar"){
        cout<<3555<<endl;
    }else if(str=="newbiedmy"){
        cout<<3516<<endl;
    }else{
        cout<<3481<<endl;
    }
    //说实话我都懒得写题解
    return 0;
}

·注意

错的人去学语法。

你可能感兴趣的:(c++,算法,开发语言)