Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
99622 | 赵德明 | 双关键字排序 | C++ | 运行出错 | 60 | 3 MS | 248 KB | 364 | 2023-08-23 13:40:30 |
#include<bits/stdc++.h> using namespace std; struct asd{ int a,b; bool operator < (const asd &o)const{ if(a!=o.a) return a<o.a; else return b<o.b; } }; asd n[1005]; int main(){ int a; cin>>a; for(int i=1;i<=a;i++){ cin>>n[i].a>>n[i].b; } sort(n+1,n+a+1); for(int i=1;i<=a;i++){ cout<<n[i].a<<" "<<n[i].b<<endl; } return 0; }