当前位置:   article > 正文

PAT 1059 C语言竞赛 (20 分)_pta 1059 python

pta 1059 python
#include <iostream>
#include <map>
using namespace std;
bool  pri(int n) {                       //判断是否素数
	if(n<2) return false;
	for(int i=2; i*i<=n; i++) {
		if(n%i==0) return false;
	}
	return true;
}
int main() {
    int n;
    string temp;
    map<string,int> m;                //映射ID-名次
    cin>>n;
    for(int i=0;i<n;i++){
        cin>>temp;
        m.insert(pair<string,int>(temp,i+1));         //插入映射
    }
    cin>>n;
    for(int i=0;i<n;i++){
        cin>>temp;
        cout<<temp;
        if(m.count(temp)==1){                  //存在ID映射
            if(m[temp]==1) cout<<": Mystery Award";   // 名次第一
            else if(pri(m[temp])) cout<<": Minion";   
            else if(m[temp]==-1) cout<<": Checked";
            else cout<<": Chocolate";
            m[temp]=-1;                //已经访问过,value设为-1
        }else{                      
            cout<<": Are you kidding?";
        }
        cout<<endl;
    }
    system("pause");
    return 0;
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/你好赵伟/article/detail/632757
推荐阅读
相关标签
  

闽ICP备14008679号