记录编号 |
577473 |
评测结果 |
AAAAAAAAAA |
题目名称 |
NBA总冠军 |
最终得分 |
100 |
用户昵称 |
李星昊 |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
0.000 s |
提交时间 |
2022-11-04 20:23:49 |
内存使用 |
0.00 MiB |
显示代码纯文本
#include<cstdio>
#include<string>
#include<iostream>
#include<algorithm>
using namespace std;
struct q {
int a;
char b[200];
q()
{
a = 0;
}
bool operator < (const q &A)const
{
return a < A.a;
}
} Q[51];
int n;
int main()
{
freopen("nba.in", "r", stdin);
freopen("nba.out", "w", stdout);
scanf("%d", &n);
for (int i = 1; i <= n; i++) {
scanf("%[^0-9]%d", &Q[i].b, &Q[i].a);
Q[i].b[0] = ' ';
}
sort(Q + 1, Q + n + 1);
for (int i = 1; i <= n; i++)if (Q[i].a != Q[i + 1].a) {
cout << Q[i].a << ' ' << Q[i].b << endl;
}
return 0;
}