1 Star 0 Fork 0

hsmath/PAT advanced

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
1116.cpp 980 Bytes
一键复制 编辑 原始数据 按行查看 历史
hsmath 提交于 2021-05-31 18:36 . 1116
/**
* @file 1116.cpp
* @author Shuang Hu <hsmath@ubuntu>
* @date Mon May 31 18:27:49 2021
*
* @brief PAT 1116:Let's C!
*
*
*/
#include<iostream>
#include<map>
#include<string>
#include<cmath>
using namespace std;
void checkprime(int c){
for(int i=2;i<=sqrt(c);i++){
if(c%i==0){
cout<<"Chocolate"<<endl;
return;
}
}
cout<<"Minion"<<endl;
return;
}
int main(){
int N;
cin>>N;
map<string,int> Rank;
map<string,bool> isvisited;
for(int i=1;i<=N;i++){
string s;
cin>>s;
Rank[s]=i;
isvisited[s]=false;
}
int checknum;
cin>>checknum;
for(int i=0;i<checknum;i++){
string s;
cin>>s;
if(isvisited[s]==true){
cout<<s<<": Checked"<<endl;
}else if(Rank.count(s)==0){
cout<<s<<": Are you kidding?"<<endl;
}else if(Rank[s]==1){
cout<<s<<": Mystery Award"<<endl;
isvisited[s]=true;
}else{
isvisited[s]=true;
int rk=Rank[s];
cout<<s<<": ";
checkprime(rk);
}
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/hsmath/pat-advanced.git
git@gitee.com:hsmath/pat-advanced.git
hsmath
pat-advanced
PAT advanced
master

搜索帮助