Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
126549 | 编程星球01 | 19从小到大进行排序 | C++ | Accepted | 2 MS | 664 KB | 527 | 2025-07-20 08:44:56 |
#include<iostream> // cin\cout\endl #include<cstdio> //scanf()\printf() #include<cstring> // strcpy()\strcat()\strcmp()\strlen()\memset() #include<cmath> //sqrt()\pow()\abs()\ceil()\floor()\max()\min() using namespace std; int main(){ int n,b; int a[100001]={0}; // 初始化 0 cin>>n; for(int i=0;i<n;i++){ cin>>b; a[b]++; } for(int j=0;j<=100000;j++){ if(a[j]!=0){ for(int l=a[j];l>=1;l--){ cout<<j<<" "; } } } return 0; }