提交记录 27407


用户 题目 状态 得分 用时 内存 语言 代码长度
clx 1011a. 测测你的五维数点2 Time Limit Exceeded 0 15 s 160 KB C++ 203 B
提交时间 评测时间
2024-11-28 20:11:22 2024-11-28 20:11:39
void count_5d(int n, const unsigned *x[5], unsigned *out) {
	// Your code here
for(int i=1;i<=n;i++)
{
out[i]=0;
for(int j=1;j<=n;j++)
{
int o=1;
for(int k=0;k<5;k++)o&=x[k][j]<x[k][i];
out[i]+=o;
}
}
}

CompilationN/AN/ACompile OKScore: N/A

Testcase #115 s160 KBTime Limit ExceededScore: 0


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