提交记录 27292


用户 题目 状态 得分 用时 内存 语言 代码长度
andychen2012 1001. 测测你的排序 Time Limit Exceeded 0 5 s 390636 KB C++ 568 B
提交时间 评测时间
2024-10-29 07:59:45 2024-10-29 07:59:54
#include<cstdio>
#include<vector>
#include<algorithm>
using namespace std;
typedef long long ll;
inline ll read(){
	ll x=0;
	int f=0,ch=0;
	while(ch<48||ch>57) f=(ch=='-'),ch=getchar();
	while(ch>47&&ch<58) x=(x<<3)+(x<<1)+(ch&15),ch=getchar();
	return f?-x:x;
}
inline void write(ll x,char end='\n'){
	if(x==0){
		putchar('0');
		putchar(end);
		return;
	}
	if(x<0) putchar('-'),x=-x;
	short ch[20]={0},cnt=0;
	while(x){
		ch[cnt++]=(short)(x%10);
		x/=10;
	}
	while(cnt--) putchar(ch[cnt]+48);
	putchar(end);
}
void sort(unsigned *a, int n) {
	std::sort(a, a + n);
}

CompilationN/AN/ACompile OKScore: N/A

Testcase #15 s381 MB + 492 KBTime Limit ExceededScore: 0


Judge Duck Online | 评测鸭在线
Server Time: 2024-11-22 18:58:44 | Loaded in 1 ms | Server Status
个人娱乐项目,仅供学习交流使用 | 捐赠