提交记录 9313


用户 题目 状态 得分 用时 内存 语言 代码长度
2311318021 1001. 测测你的排序 Compile Error 0 0 ns 0 KB C++ 353 B
提交时间 评测时间
2019-04-26 21:30:12 2020-08-01 01:36:02
#include<cstdio>
#include<iostream>
#include<algorithm>
using namespace std;
unsigned long long int a[100000001];
bool cmp(unsigned long long int a,unsigned long long int b)
{
	if(a<b)return a;
	else return b;
}
int main()
{
	for(int i=0;i<100000000;i++)scanf("%d",&a[i]);

	sort(a+0,a+100000000,cmp);
	for(int i=0;i<100000000;i++)printf("%d ",&a[i]);
}

CompilationN/AN/ACompile ErrorScore: N/A


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