提交记录 20834


用户 题目 状态 得分 用时 内存 语言 代码长度
Liufu 1001. 测测你的排序 Runtime Error 0 352.455 ms 12 KB C++17 303 B
提交时间 评测时间
2024-01-22 14:23:06 2024-01-22 14:23:10
#include <algorithm>

void sort(unsigned *a, int n) {
	for(int i = 1;i < n;i++){
            for(int j = i-1;j <= 0;j--){
                if(a[j]>a[j+1]){
                   int temp = a[j];
                   a[j] = a[j+1];
                   a[j+1] = temp;
                }
            }
        }
}

CompilationN/AN/ACompile OKScore: N/A

Testcase #1352.455 ms12 KBRuntime ErrorScore: 0


Judge Duck Online | 评测鸭在线
Server Time: 2025-07-22 21:10:20 | Loaded in 0 ms | Server Status
个人娱乐项目,仅供学习交流使用 | 捐赠