Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
99566 王为治 双关键字排序 C++ 通过 100 422 MS 15960 KB 422 2023-08-23 10:24:49

Tests(5/5):


#include <bits/stdc++.h> using namespace std; int v[2005][2005]; int n,x,y; signed main() { cin >> n; memset(v,0,sizeof(v)); for(int i = 1; i <= n; i++) { //scanf("%d%d",&x,&y); cin >> x >> y; v[x][y]++; } for(int i = 1; i <= 1000; i++) { for(int j = 1; j <= 1000; j++) { while(v[i][j]) { v[i][j]--; cout << i << " " << j << endl; } } } return 0; }


测评信息: