提交记录 15757


用户 题目 状态 得分 用时 内存 语言 代码长度
xuhaotu 1001a. 测测你的排序2 Compile Error 0 0 ns 0 KB C++ 310 B
提交时间 评测时间
2021-02-03 15:43:58 2021-02-03 15:43:59
#include<iostream>
#include<cmath>
#include<cstring>
#include<algorithm>
#include<string>
using namespace std;
int main(){
	unsigned int a[10000];
	for(int i=0;i<10000;i++){
		cin>>a[i];
	}
	for(int i=0;i<9999;i++){
		for(int j=i+1;j<10000;j++){
			if(a[i]>a[j]){
				swap(a[i],a[j]);
			}
		}
	}
	return 0;
} 

CompilationN/AN/ACompile ErrorScore: N/A


Judge Duck Online | 评测鸭在线
Server Time: 2026-03-20 07:47:13 | Loaded in 1 ms | Server Status
个人娱乐项目,仅供学习交流使用 | 捐赠