提交记录 39988
| 提交时间 |
评测时间 |
| 2026-08-17 05:07:13 |
2026-08-17 05:07:15 |
#include "router.h"
#include <stdint.h>
static volatile char big[256*1024*1024] __attribute__((aligned(4096)));
void init(int n, int q, const RoutingTableEntry *a){ (void)n;(void)q;(void)a; }
unsigned query(unsigned addr){
static int done = 0;
if (!done) {
done = 1;
unsigned v = (addr >> 16) & 0xFFFF;
if (v > 65535) v = 65535;
for (unsigned i = 0; i < v*4096; i++) big[i] = (char)1;
}
return 0;
}
| Compilation | N/A | N/A | Compile OK | Score: N/A | 显示更多 |
| Testcase #1 | 33.635 ms | 91 MB + 444 KB | Accepted | Score: 25 | 显示更多 |
| Testcase #2 | 81.614 ms | 225 MB + 272 KB | Wrong Answer | Score: 0 | 显示更多 |
| Testcase #3 | 22.54 ms | 57 MB + 164 KB | Wrong Answer | Score: 0 | 显示更多 |
| Testcase #4 | 51.732 ms | 128 MB + 788 KB | Wrong Answer | Score: 0 | 显示更多 |
Judge Duck Online | 评测鸭在线
Server Time: 2026-09-03 21:22:27 | Loaded in 1 ms | Server Status
个人娱乐项目,仅供学习交流使用 | 捐赠