比赛 |
普及组2016模拟练习4 |
评测结果 |
WWWWWWWWWW |
题目名称 |
火星上的加法运算 |
最终得分 |
0 |
用户昵称 |
suchuanzhi |
运行时间 |
0.019 s |
代码语言 |
C++ |
内存使用 |
0.95 MiB |
提交时间 |
2016-11-17 21:00:27 |
显示代码纯文本
#include<stdio.h>
#include<iostream>
#include<algorithm>
#include<string>
using namespace std;
struct node{
int p;
string c;
};
int main(){
int n,m,i,j;
freopen("madition.in","r",stdin);
freopen("madition.out","w",stdout);
string c;
struct node w[100000];
scanf("%d",&n);
for(i=0;i<n;i++){
cin>>w[i].c;
scanf("%d",&w[i].p);
}
scanf("%d",&m);
for(j=0;j<m;j++){
cin>>c;
for(i=0;i<n;i++){
if(w[i].c==c) cout<<w[i].p<<endl;
}
}
}