提交记录 16312
| 提交时间 |
评测时间 |
| 2021-06-25 13:56:16 |
2021-06-25 13:56:20 |
# include <bits/stdc++.h>
# define N 10010
std::priority_queue< unsigned,std::vector<unsigned>,std::greater<unsigned> > mt;
void sort(unsigned *a,int n) {
int i;
for(i=0;i<n;i++) mt.push(a[i]);
for(i=0;i<n;i++) a[i]=mt.top(), mt.pop();
}
| Compilation | N/A | N/A | Compile OK | Score: N/A | 显示更多 |
| Testcase #1 | 787.91 us | 180 KB | Accepted | Score: 100 | 显示更多 |
Judge Duck Online | 评测鸭在线
Server Time: 2026-03-19 10:20:29 | Loaded in 1 ms | Server Status
个人娱乐项目,仅供学习交流使用 | 捐赠