Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
113740 | 陈昊然 | 优化冒泡排序 | C++ | Accepted | 7 MS | 280 KB | 326 | 2025-03-16 14:10:14 |
#include<bits/stdc++.h> using namespace std; int n; int s[2001]; int main() { cin>>n; for(int i=0; i<n; i++) { cin>>s[i]; } for(int i=0; i<n-1; i++) { for(int j=0; j<n-1; j++) { if(s[j]<s[j+1]) { swap(s[j],s[j+1]); } } } for(int i=0; i<n; i++) { cout<<s[i]<<" "; } return 0; }